Skip to content

Commit a676648

Browse files
authored
try excluding code scanning from dependabot
1 parent d88277a commit a676648

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

.github/workflows/mvnw.yml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,9 @@ jobs:
3030
restore-keys: |
3131
${{ runner.os }}-maven-
3232
33-
- name: Initialize CodeQL
33+
34+
- if: "!contains(github.ref, 'dependabot')"
35+
name: Initialize CodeQL
3436
uses: github/codeql-action/init@v2
3537
with:
3638
languages: java
@@ -40,5 +42,6 @@ jobs:
4042
- name: Check license file
4143
uses: dockstore/workflow-actions/.github/actions/check-license@main
4244

43-
- name: Perform CodeQL Analysis
45+
- if: "!contains(github.ref, 'dependabot')"
46+
name: Perform CodeQL Analysis
4447
uses: github/codeql-action/analyze@v2

0 commit comments

Comments
 (0)