We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1a07a04 commit d258f2bCopy full SHA for d258f2b
.github/workflows/sonar.yml
@@ -12,7 +12,7 @@ on:
12
- 'docs/**'
13
- 'adr/**'
14
branches: [ main ]
15
- pull_request:
+ pull_request_target:
16
paths-ignore:
17
18
@@ -21,9 +21,12 @@ on:
21
jobs:
22
test:
23
runs-on: ubuntu-latest
24
- if: ${{ github.actor != 'dependabot[bot]' && (( github.event_name == 'push' ) || ( github.event_name == 'pull_request' && github.event.pull_request.head.repo.owner.login == 'operator-framework' )) }}
+ if: ${{ github.actor != 'dependabot[bot]' }}
25
steps:
26
- uses: actions/checkout@v6
27
+ with:
28
+ ref: ${{ github.event.pull_request.head.sha }}
29
+ fetch-depth: 0
30
- name: Set up Java and Maven
31
uses: actions/setup-java@v5
32
with:
0 commit comments