From: Max Dymond Date: Tue, 14 May 2024 15:44:37 +0000 (+0100) Subject: ci: set semantic type as CI and include digests as CI operations X-Git-Tag: curl-8_8_0~45 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=a884885c21e123933ce9d511154d527e5d2377e7;p=thirdparty%2Fcurl.git 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 --- diff --git a/renovate.json b/renovate.json index a87daa56e4..71e9433399 100644 --- a/renovate.json +++ b/renovate.json @@ -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 } ],