Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion .github/workflows/checkstyle-check.yml
Comment thread
sissbruecker marked this conversation as resolved.
Original file line number Diff line number Diff line change
@@ -1,14 +1,17 @@
name: Checkstyle Check

on:
pull_request:
pull_request_target:
types: [ opened, synchronize, reopened ]
branches: [ main ]

permissions:
contents: read
pull-requests: write

jobs:
checkstyle-check:
environment: ${{ github.event.pull_request.head.repo.full_name != github.repository && 'external-checks' || '' }}
runs-on: ubuntu-latest
steps:
- name: Checkout PR code
Expand Down
5 changes: 4 additions & 1 deletion .github/workflows/format-check.yml
Original file line number Diff line number Diff line change
@@ -1,14 +1,17 @@
name: Format Check

on:
pull_request:
pull_request_target:
types: [ opened, synchronize, reopened ]
branches: [ main ]

permissions:
contents: read
pull-requests: write

jobs:
format-check:
environment: ${{ github.event.pull_request.head.repo.full_name != github.repository && 'external-checks' || '' }}
runs-on: ubuntu-latest
steps:
- name: Checkout PR code
Expand Down
5 changes: 4 additions & 1 deletion .github/workflows/sonar-scan.yml
Original file line number Diff line number Diff line change
@@ -1,13 +1,16 @@
name: Sonar Scan

on:
pull_request:
pull_request_target:
types: [ opened, synchronize, reopened ]
branches: [ main ]
Comment thread
sissbruecker marked this conversation as resolved.

permissions:
contents: read

jobs:
sonar-scan:
environment: ${{ github.event.pull_request.head.repo.full_name != github.repository && 'external-checks' || '' }}
runs-on: ubuntu-latest
steps:
- name: Checkout PR code
Expand Down