Skip to content

Commit 484b4f6

Browse files
authored
Merge pull request #257 from Borda/ci/dependabot
enable dependabot for pip & GH actions
2 parents 4cb99b4 + e9a6d5c commit 484b4f6

File tree

1 file changed

+31
-0
lines changed

1 file changed

+31
-0
lines changed

.github/dependabot.yml

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
# Basic dependabot.yml file with
2+
# minimum configuration for two package managers
3+
4+
version: 2
5+
updates:
6+
# Enable version updates for python
7+
- package-ecosystem: "pip"
8+
# Look for a `requirements` in the `root` directory
9+
directory: "/"
10+
# Check for updates once a month
11+
schedule:
12+
interval: "monthly"
13+
groups:
14+
pip:
15+
patterns:
16+
- "*"
17+
# Labels on pull requests for version updates only
18+
labels: ["maintenance"]
19+
20+
# Enable version updates for GitHub Actions
21+
- package-ecosystem: "github-actions"
22+
directory: "/"
23+
# Check for updates once a monthly
24+
schedule:
25+
interval: "monthly"
26+
groups:
27+
actions:
28+
patterns:
29+
- "*"
30+
# Labels on pull requests for version updates only
31+
labels: ["maintenance"]

0 commit comments

Comments
 (0)