We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0da3cee commit 6c00398Copy full SHA for 6c00398
1 file changed
.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:
0 commit comments