Skip to content

Commit 8bbb3e7

Browse files
committed
adding GH dependabot
1 parent 0438367 commit 8bbb3e7

1 file changed

Lines changed: 40 additions & 0 deletions

File tree

.github/dependabot.yml

Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
# Basic dependabot.yml file with minimum configuration for two package managers
2+
3+
version: 2
4+
updates:
5+
# Enable version updates for python
6+
- package-ecosystem: "pip"
7+
# Look for a `requirements` in the `root` directory
8+
directory: "..github/scripts/"
9+
# Check for updates once a week
10+
schedule:
11+
interval: "monthly"
12+
# Labels on pull requests for version updates only
13+
labels:
14+
- "ci"
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+
- "dbieber"
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:
32+
- "ci"
33+
pull-request-branch-name:
34+
# Separate sections of the branch name with a hyphen
35+
# for example, `dependabot-npm_and_yarn-next_js-acorn-6.4.1`
36+
separator: "-"
37+
# Allow up to 5 open pull requests for GitHub Actions
38+
open-pull-requests-limit: 5
39+
reviewers:
40+
- "dbieber"

0 commit comments

Comments
 (0)