-
Notifications
You must be signed in to change notification settings - Fork 28
Expand file tree
/
Copy pathdependabot.yml
More file actions
52 lines (51 loc) · 1.52 KB
/
dependabot.yml
File metadata and controls
52 lines (51 loc) · 1.52 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
# Please see the documentation for all configuration options:
# https://docs.github.com/code-security/dependabot/dependabot-version-updates/configuration-options-for-the-dependabot.yml-file
version: 2
updates:
- package-ecosystem: "npm"
directories:
- "/"
- "/.github/actions/auth"
- "/.github/actions/find"
- "/.github/actions/file"
- "/.github/actions/fix"
groups:
# Open PRs for each major version and security update
# Open an aggregate PR for all minor and patch version updates
npm-minor-and-patch:
applies-to: version-updates
patterns:
- "*"
update-types:
- "minor"
- "patch"
schedule:
interval: "weekly"
- package-ecosystem: "github-actions"
directories:
- "/"
- "/.github/actions/gh-cache/cache"
- "/.github/actions/gh-cache/delete"
- "/.github/actions/gh-cache/restore"
- "/.github/actions/gh-cache/save"
groups:
# Open an aggregate PR for all GitHub Actions updates
github-actions:
patterns:
- "*"
schedule:
interval: "weekly"
- package-ecosystem: "bundler"
directory: "/sites/site-with-errors"
groups:
# Open PRs for each major version and security update
# Open an aggregate PR for all minor and patch version updates
bundler-minor-and-patch:
applies-to: version-updates
patterns:
- "*"
update-types:
- "minor"
- "patch"
schedule:
interval: "weekly"