-
Notifications
You must be signed in to change notification settings - Fork 28
Expand file tree
/
Copy pathrenovate.json5
More file actions
48 lines (46 loc) · 1.7 KB
/
Copy pathrenovate.json5
File metadata and controls
48 lines (46 loc) · 1.7 KB
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
47
48
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": [
"local>projectbluefin/renovate-config:org-inherited-config"
],
// Renovate targets main. All PRs must target main — the CI gate
// (on-pr-opened-or-updated) blocks any PR not targeting main.
// Note: track-bst-sources.yml manages BuildStream refs directly and
// intentionally targets main — it is not Renovate-managed.
"baseBranchPatterns": ["main"],
"branchPrefix": "renovate/",
// Limit Renovate to GitHub Actions and workflow image refs.
// BuildStream sources are tracked separately by track-bst-sources.yml.
"enabledManagers": ["github-actions"],
"packageRules": [
{
"description": "Automerge digest/pin/patch/minor when CI passes",
"matchUpdateTypes": ["digest", "pin", "patch", "minor"],
"automerge": true,
"automergeType": "pr",
"automergeStrategy": "squash"
},
{
"description": "Group all projectbluefin/actions SHA updates into one atomic PR",
"matchManagers": ["github-actions"],
"matchDepNames": ["/projectbluefin\/actions/"],
"groupName": "projectbluefin/actions",
"automerge": true,
"automergeType": "pr",
"automergeStrategy": "squash",
"labels": ["chore/deps", "automerge"]
},
{
"description": "Pin all GitHub Actions to full SHA digests",
"matchManagers": ["github-actions"],
"matchDepTypes": ["action"],
"pinDigests": true
},
{
// projectbluefin/bonedigger has no versioned releases; @main is intentional.
// See .github/workflows/bonedigger.yml and docs/skills/ci-tooling.md.
"matchPackageNames": ["projectbluefin/bonedigger"],
"enabled": false
}
]
}