Skip to content

Commit 04d8967

Browse files
authored
chore: configure Dependabot for GitHub Actions and Python
Added configuration for GitHub Actions and Python packages updates with weekly schedule.
1 parent ad81c3d commit 04d8967

File tree

1 file changed

+24
-0
lines changed

1 file changed

+24
-0
lines changed

.github/dependabot.yml

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
version: 2
2+
updates:
3+
- package-ecosystem: github-actions
4+
directory: /
5+
schedule:
6+
interval: weekly
7+
day: friday
8+
groups:
9+
github-actions:
10+
patterns: ["*"]
11+
commit-message:
12+
prefix: chore
13+
- package-ecosystem: pip
14+
directory: /
15+
schedule:
16+
interval: weekly
17+
day: friday
18+
allow:
19+
- dependency-type: development
20+
groups:
21+
python-packages:
22+
patterns: ["*"]
23+
commit-message:
24+
prefix: chore

0 commit comments

Comments
 (0)