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
version: 2
updates:
# Rust dependencies
- package-ecosystem: "cargo"
directory: "/"
schedule:
interval: "weekly"
day: "monday"
open-pull-requests-limit: 10
commit-message:
# Use a Conventional Commits type accepted by commitlint / the
# semantic-PR check. "deps" is not a valid type, so dependency updates
# are classified as "build" (per the project's commit-type convention).
prefix: "build(deps)"
labels:
- "dependencies"
- "rust"
groups:
rust-minor:
patterns:
- "*"
update-types:
- "minor"
- "patch"
# GitHub Actions
- package-ecosystem: "github-actions"
directory: "/"
schedule:
interval: "weekly"
day: "monday"
open-pull-requests-limit: 5
commit-message:
# Same rationale as the cargo ecosystem above: "build" is a valid
# Conventional Commits type, "deps" is not.
prefix: "build(deps)"
labels:
- "dependencies"
- "github-actions"
groups:
actions:
patterns:
- "*"