ci: set semantic type as CI and include digests as CI operations

Replace "chore" with "ci" for renovate's semantic
type, and include digests with "pin" and
"pinDigest" as ci operations.

Closes #13644
This commit is contained in:
Max Dymond 2024-05-14 16:44:37 +01:00 committed by Daniel Stenberg
parent 27c9b375f6
commit a884885c21
No known key found for this signature in database
GPG Key ID: 5CC908FDB71E12C2

View File

@ -3,25 +3,44 @@
"extends": [
"config:best-practices"
],
"semanticCommitType": "ci",
"packageRules": [
{
"matchManagers": ["github-actions"],
"matchManagers": [
"github-actions"
],
"commitMessagePrefix": "gha: ",
"labels": ["CI"]
"labels": [
"CI"
]
},
{
"matchUpdateTypes": ["pin", "pinDigest"],
"matchUpdateTypes": [
"pin",
"pinDigest",
"digest"
],
"commitMessagePrefix": "ci: ",
"labels": ["CI"]
"labels": [
"CI"
]
},
{
"matchManagers": ["regex"],
"matchManagers": [
"regex"
],
"commitMessagePrefix": "ci: ",
"labels": ["CI"]
"labels": [
"CI"
]
},
{
"matchDepNames": ["debian"],
"matchFileNames": [".github/workflows/linux-old.yml"],
"matchDepNames": [
"debian"
],
"matchFileNames": [
".github/workflows/linux-old.yml"
],
"enabled": false
}
],