Skip to content

Commit 0c06f11

Browse files
authored
Merge pull request #246 from sir-gon/develop
[CONFIG] [Github Actions] Avoid run on "push" for dependabot triggere…
2 parents 1fb394a + 5c148a4 commit 0c06f11

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

.github/workflows/snyk-code.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,11 @@
33
name: Snyk Code (Java gradle-jdk17)
44

55
on: # yamllint disable-line rule:truthy
6-
push:
76
pull_request:
7+
push:
8+
branches:
9+
- '**' # matches every branch
10+
- '!dependabot/**' # excludes master
811
workflow_dispatch:
912

1013
jobs:

0 commit comments

Comments
 (0)