Skip to content

Commit 66cc32a

Browse files
author
FlorentinTh
committed
ci(workflows): disable trigger of workflows for dependabot alerts
1 parent ff85c1e commit 66cc32a

File tree

4 files changed

+15
-3
lines changed

4 files changed

+15
-3
lines changed

.github/dependabot.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,5 +5,8 @@ updates:
55
directory: "/"
66
schedule:
77
interval: "daily"
8+
allow:
9+
- dependency-name: "*"
10+
dependency-type: "production"
811
assignees:
912
- "FlorentinTh"

.github/workflows/build.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
11
name: build
22

3-
on: push
3+
on:
4+
push:
5+
branches:
6+
- master
47

58
jobs:
69
build:

.github/workflows/check-deps-security.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
11
name: snyk
22

3-
on: push
3+
on:
4+
push:
5+
branches:
6+
- master
47

58
jobs:
69
check-deps-security:

.github/workflows/docker.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
11
name: docker
22

3-
on: push
3+
on:
4+
push:
5+
branches:
6+
- master
47

58
jobs:
69
docker-build:

0 commit comments

Comments
 (0)