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
# Dependabot configuration for ouch.
# https://docs.github.com/en/code-security/dependabot/dependabot-version-updates/configuration-options-for-the-dependabot.yml-file
version: 2
updates:
- package-ecosystem: "cargo"
directory: "/"
schedule:
interval: "weekly"
day: "monday"
open-pull-requests-limit: 10
labels:
- "dependencies"
commit-message:
prefix: "deps"
cooldown:
default-days: 7
groups:
# Patch and minor bumps land together to reduce PR churn.
# Major bumps still get one PR each so they get a proper review.
cargo-patch-and-minor:
update-types:
- "patch"
- "minor"
- package-ecosystem: "github-actions"
directory: "/"
schedule:
interval: "weekly"
day: "monday"
open-pull-requests-limit: 5
labels:
- "dependencies"
- "ci"
commit-message:
prefix: "ci"
cooldown:
default-days: 7
groups:
# We are less likely to be affected by breaking changes in GitHub Actions
# So Major bumps are accepted to reduce the amount of pull requests
github-actions:
patterns: