Skip to content

Commit 8c2cb46

Browse files
committed
enable dependabot for pip & GH actions
1 parent 4cb99b4 commit 8c2cb46

File tree

1 file changed

+39
-0
lines changed

1 file changed

+39
-0
lines changed

.github/dependabot.yml

Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
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 week
11+
schedule:
12+
interval: "weekly"
13+
# Labels on pull requests for version updates only
14+
labels: ["maintenance"]
15+
pull-request-branch-name:
16+
# Separate sections of the branch name with a hyphen
17+
# for example, `dependabot-npm_and_yarn-next_js-acorn-6.4.1`
18+
separator: "-"
19+
# Allow up to 5 open pull requests for pip dependencies
20+
open-pull-requests-limit: 5
21+
reviewers:
22+
- "hugovk"
23+
24+
# Enable version updates for GitHub Actions
25+
- package-ecosystem: "github-actions"
26+
directory: "/"
27+
# Check for updates once a week
28+
schedule:
29+
interval: "monthly"
30+
# Labels on pull requests for version updates only
31+
labels: ["maintenance"]
32+
pull-request-branch-name:
33+
# Separate sections of the branch name with a hyphen
34+
# for example, `dependabot-npm_and_yarn-next_js-acorn-6.4.1`
35+
separator: "-"
36+
# Allow up to 5 open pull requests for GitHub Actions
37+
open-pull-requests-limit: 5
38+
reviewers:
39+
- "hugovk"

0 commit comments

Comments
 (0)