Skip to content

Commit

Permalink
ci: reconfigure renovate
Browse files Browse the repository at this point in the history
- set prefix for github actions updates to be gha:
- set prefix for other renovate actions to be ci:
- disable debian updates in linux-old.yml
  • Loading branch information
cmeister2 committed May 14, 2024
1 parent 4eb4d66 commit 443d29c
Showing 1 changed file with 23 additions and 2 deletions.
25 changes: 23 additions & 2 deletions renovate.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,29 @@
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": [
"config:best-practices",
"group:allNonMajor"
"config:best-practices"
],
"packageRules": [
{
"matchManagers": ["github-actions"],
"commitMessagePrefix": "gha: ",
"labels": ["CI"]
},
{
"matchUpdateTypes": ["pin", "pinDigest"],
"commitMessagePrefix": "ci: ",
"labels": ["CI"]
},
{
"matchManagers": ["regex"],
"commitMessagePrefix": "ci: ",
"labels": ["CI"]
},
{
"matchDepNames": ["debian"],
"matchFileNames": [".github/workflows/linux-old.yml"],
"enabled": false
}
],
"customManagers": [
{
Expand Down

0 comments on commit 443d29c

Please sign in to comment.