Skip to content

Commit e6907d8

Browse files
authored
Merge pull request #564 from sir-gon/develop
[CONFIG] [Github Actions] Avoid run on "push" for dependabot triggere…
2 parents d771733 + aa7edc8 commit e6907d8

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

.github/workflows/snyk-code.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,11 @@ name: Snyk Code analysis
1010
on: # yamllint disable-line rule:truthy
1111
pull_request:
1212
push:
13+
branches:
14+
- '**' # matches every branch
15+
- '!dependabot/**' # excludes master
16+
branches-ignore:
17+
- 'dependabot/**'
1318
workflow_dispatch:
1419

1520
jobs:

0 commit comments

Comments
 (0)