Skip to content

Commit 7fc0b69

Browse files
authored
1634: create dependabot yaml file for automatic grouped updates (tl-its-umich-edu#1652)
* tl-its-umich-edu#1634: create Dependabot file for automatic dependency updates * fix frontend directory
1 parent cd78dab commit 7fc0b69

File tree

1 file changed

+31
-0
lines changed

1 file changed

+31
-0
lines changed

.github/dependabot.yml

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
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+
# Maintain dependencies for python
9+
- package-ecosystem: "pip" # See documentation for possible values
10+
directory: "/" # Location of package manifests
11+
schedule:
12+
interval: "weekly"
13+
allow:
14+
- dependency-type: "direct"
15+
ignore:
16+
- dependency-name: "*"
17+
update-types: ["version-update:semver-major"]
18+
groups:
19+
all-python-dependencies:
20+
patterns: ["*"]
21+
# Maintain dependencies for npm
22+
- package-ecosystem: "npm"
23+
directory: "/"
24+
schedule:
25+
interval: "weekly"
26+
groups:
27+
all-npm-dependencies:
28+
patterns: ["*"]
29+
ignore:
30+
- dependency-name: "*"
31+
update-types: ["version-update:semver-major"]

0 commit comments

Comments
 (0)