Skip to content

Commit bb24eff

Browse files
committed
cherry-pick dependabot.yml from develop branch
1 parent 1dcd902 commit bb24eff

1 file changed

Lines changed: 15 additions & 3 deletions

File tree

.github/dependabot.yml

Lines changed: 15 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,29 @@
1+
# https://docs.github.com/en/code-security/dependabot/working-with-dependabot/dependabot-options-reference
12
version: 2
23
updates:
34
- package-ecosystem: "maven"
5+
# Look for `requirements.*` files in the `root` directory
46
directory: "/"
7+
# Check the registry for updates every week
58
schedule:
6-
interval: "daily"
7-
target-branch: "develop"
9+
interval: "weekly"
10+
# Add labels to generated PRs
811
labels:
912
- "dependencies"
13+
# Group minor updates and patch updates, except for spring-boot-starter-parent updates,
14+
# and create separate PRs for updates that do not match any grouping rule.
15+
groups:
16+
minor-or-patch:
17+
applies-to: version-updates
18+
update-types:
19+
- "minor"
20+
- "patch"
21+
exclude-patterns:
22+
- "*spring-boot-starter-parent*"
1023

1124
- package-ecosystem: "github-actions"
1225
directory: "/"
1326
schedule:
1427
interval: "weekly"
15-
target-branch: "develop"
1628
labels:
1729
- "dependencies"

0 commit comments

Comments
 (0)