Skip to content

Commit ac577d8

Browse files
authored
Create dependabot.yml (#506)
1 parent e018961 commit ac577d8

File tree

1 file changed

+40
-0
lines changed

1 file changed

+40
-0
lines changed

.github/dependabot.yml

Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
# To get started with Dependabot version updates, you'll need to specify which
2+
# package ecosystems to update and where the package manifests are located.
3+
# Please see the documentation for all configuration options:
4+
# https://docs.github.com/code-security/dependabot/dependabot-version-updates/configuration-options-for-the-dependabot.yml-file
5+
6+
version: 2
7+
updates:
8+
# Configuration for Bundler
9+
- package-ecosystem: "bundler"
10+
directory: "/"
11+
schedule:
12+
interval: "weekly"
13+
open-pull-requests-limit: 10
14+
allow:
15+
- dependency-type: "direct"
16+
- dependency-type: "indirect"
17+
versioning-strategy: "auto"
18+
labels:
19+
- "dependencies"
20+
- "ruby"
21+
commit-message:
22+
prefix: "bundle"
23+
include: "scope"
24+
25+
# Configuration for pip
26+
- package-ecosystem: "pip"
27+
directory: "/"
28+
schedule:
29+
interval: "weekly"
30+
open-pull-requests-limit: 10
31+
allow:
32+
- dependency-type: "direct"
33+
- dependency-type: "indirect"
34+
versioning-strategy: "auto"
35+
labels:
36+
- "dependencies"
37+
- "python"
38+
commit-message:
39+
prefix: "pip"
40+
include: "scope"

0 commit comments

Comments
 (0)