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
version: 2
updates:
# Keep Cargo dependencies up to date.
- package-ecosystem: cargo
directory: /
schedule:
interval: weekly
day: monday
time: "06:00"
timezone: America/Sao_Paulo
# Open PRs against master (the sole long-lived branch).
target-branch: master
# Group all patch and minor bumps into a single PR to reduce noise; each
# major-version bump gets its own PR so it can be reviewed in isolation.
groups:
patch-and-minor:
update-types:
- minor
- patch
# Limit concurrent open dependency PRs to keep the queue manageable.
open-pull-requests-limit: 10
# Prefix PR titles so they are easy to filter in the GitHub UI.
commit-message:
prefix: "deps"
include: scope
labels:
- dependencies
- rust
# Keep GitHub Actions up to date.
- package-ecosystem: github-actions
directory: /
schedule:
interval: weekly
day: monday
time: "06:00"
timezone: America/Sao_Paulo
target-branch: master
open-pull-requests-limit: 5
commit-message:
prefix: "ci"
include: scope
labels:
- dependencies
- github-actions