Skip to content

Commit 6a3b7f6

Browse files
authored
fix: correct dependabot config file (#1629)
Given the GitHub Actions "ecosystem", Dependabot will: - Check for new deps in workflow files, weekly on Saturday (unchanged) - Create a grouped PR with all the deps (as opposed to atomic PRs) - Use the correct path to workflow files (which was misconfigured)
1 parent b19e4f8 commit 6a3b7f6

1 file changed

Lines changed: 13 additions & 8 deletions

File tree

.github/dependabot.yml

Lines changed: 13 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,15 @@
11
version: 2
2+
23
updates:
3-
- package-ecosystem: github-actions
4-
directory: "/"
5-
schedule:
6-
interval: weekly
7-
day: saturday
8-
time: "10:00"
9-
open-pull-requests-limit: 10
10-
target-branch: dev
4+
- package-ecosystem: github-actions
5+
schedule:
6+
interval: weekly
7+
day: saturday
8+
time: "10:00"
9+
groups:
10+
gha-deps:
11+
patterns:
12+
- "*"
13+
target-branch: dev
14+
directories:
15+
- "/.github/workflows"

0 commit comments

Comments
 (0)