Skip to content

Commit

Permalink
Merge pull request #100 from TheRealArthurDent/feat/reduce-noise
Browse files Browse the repository at this point in the history
feat: auto-merge minor github-actions changes without a PR to reduce noise
  • Loading branch information
TheRealArthurDent authored Sep 26, 2024
2 parents 3badb64 + 461892a commit 553ca46
Showing 1 changed file with 37 additions and 2 deletions.
39 changes: 37 additions & 2 deletions renovate.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,38 @@
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json"
}
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"reviewers": [
"TheRealArthurDent"
],
"packageRules": [
{
"description": "Auto merge all minor and patch updates to github-actions. Do it without a PR to reduce noise.",
"groupName": "github-actions",
"matchManagers": [
"github-actions"
],
"matchUpdateTypes": [
"minor",
"patch",
"pin",
"digest"
],
"automerge": true,
"addLabels": [
"auto-merge"
],
"automergeType": "branch"
},
{
"description": "Create PRs for major changes to github-actions itself.",
"groupName": "github-actions MAJOR",
"commitMessagePrefix": "[MAJOR] ",
"matchManagers": [
"github-actions"
],
"matchUpdateTypes": [
"major"
],
"automerge": false
}
]
}

0 comments on commit 553ca46

Please sign in to comment.