We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d3b9a68 commit 4bfb945Copy full SHA for 4bfb945
.github/workflows/codeql-analysis.yml
@@ -13,7 +13,8 @@ jobs:
13
analyse:
14
name: Analyse
15
runs-on: ubuntu-latest
16
- if: "!contains(github.event.head_commit.message, '[ci skip]') && !contains(github.event.head_commit.message, '[skip ci]')"
+ # dependeabot has on push events only read-only access, but codeql requires write access
17
+ if: ${{ !(github.actor == 'dependabot[bot]' && contains(fromJSON('["push"]'), github.event_name)) }}
18
steps:
19
- uses: actions/checkout@v4
20
with:
@@ -30,4 +31,4 @@ jobs:
30
31
- name: Build
32
run: mvn -B compile
33
- name: Perform CodeQL Analysis
- uses: github/codeql-action/analyze@v3
34
+ uses: github/codeql-action/analyze@v3
0 commit comments