Skip to content

Commit 1a6bda3

Browse files
authored
Add Dependabot for Pip & GitHub Actions (#2066)
1 parent fcd882f commit 1a6bda3

File tree

1 file changed

+41
-0
lines changed

1 file changed

+41
-0
lines changed

.github/dependabot.yml

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

0 commit comments

Comments
 (0)