Skip to content

Commit 8dfab7f

Browse files
committed
Add develop branch to dependabot
1 parent dc8d3f8 commit 8dfab7f

1 file changed

Lines changed: 16 additions & 2 deletions

File tree

.github/dependabot.yml

Lines changed: 16 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,16 +5,30 @@
55

66
version: 2
77
updates:
8-
# Enable daily updates for GitHub Actions
8+
# Enable daily updates for GitHub Actions (main)
99
- package-ecosystem: "github-actions"
1010
directory: "/" # Dependabot knows to look in .github/workflows for GitHub Actions
1111
schedule:
1212
interval: "daily"
1313
target-branch: "main"
1414

15-
# Enable daily updates for Docker
15+
# Enable daily updates for GitHub Actions (develop)
16+
- package-ecosystem: "github-actions"
17+
directory: "/" # Dependabot knows to look in .github/workflows for GitHub Actions
18+
schedule:
19+
interval: "daily"
20+
target-branch: "develop"
21+
22+
# Enable daily updates for Docker (main)
1623
- package-ecosystem: "docker"
1724
directory: "/.docker" # Location of Dockerfile
1825
schedule:
1926
interval: "daily"
2027
target-branch: "main"
28+
29+
# Enable daily updates for Docker (develop)
30+
- package-ecosystem: "docker"
31+
directory: "/.docker" # Location of Dockerfile
32+
schedule:
33+
interval: "daily"
34+
target-branch: "develop"

0 commit comments

Comments
 (0)