Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
25 changes: 19 additions & 6 deletions .renovate/labels.json5
Original file line number Diff line number Diff line change
Expand Up @@ -44,17 +44,30 @@
addLabels: ["merge: auto"],
},
{
description: "Label trusted GitHub Actions auto-merge PRs (including 0.x)",
description: "Label all GitHub Actions minor/patch/pinDigest as auto-merge (covered by autoMerge.json5 regardless of 0.x)",
matchManagers: ["github-actions"],
matchPackageNames: ["/^actions\\//", "/^docker\\//", "/^github\\//"],
matchUpdateTypes: ["minor", "patch"],
matchUpdateTypes: ["pinDigest", "minor", "patch"],
addLabels: ["merge: auto"],
},
{
description: "Label GitHub Actions pinDigest PRs (auto-merged via SHA pinning)",
description: "Label major updates as requiring manual review/merge",
matchUpdateTypes: ["major"],
addLabels: ["merge: manual"],
},
{
description: "Label non-github-actions 0.x minor/patch as manual (breaking changes possible, not auto-merged)",
matchManagers: ["bundler", "cargo", "composer", "docker-compose", "dockerfile", "gomod", "gradle", "helm-values", "helmv3", "kubernetes", "maven", "mise", "npm", "nuget", "pip-compile", "pip_requirements", "pipenv", "poetry", "pre-commit", "setup-cfg", "terraform"],
matchUpdateTypes: ["minor", "patch"],
matchCurrentVersion: "/^0\\./",
addLabels: ["merge: manual"],
},
{
description: "Label non-trusted GitHub Actions 0.x minor/patch as manual (trusted ones are auto-merged)",
matchManagers: ["github-actions"],
matchUpdateTypes: ["pinDigest"],
addLabels: ["merge: auto"],
matchPackageNames: ["!/^actions\\//", "!/^docker\\//", "!/^github\\//"],
matchUpdateTypes: ["minor", "patch"],
matchCurrentVersion: "/^0\\./",
addLabels: ["merge: manual"],
},
],
}