]> git.ipfire.org Git - thirdparty/curl.git/commitdiff
ci: set semantic type as CI and include digests as CI operations
authorMax Dymond <cmeister2@gmail.com>
Tue, 14 May 2024 15:44:37 +0000 (16:44 +0100)
committerDaniel Stenberg <daniel@haxx.se>
Wed, 15 May 2024 09:12:12 +0000 (11:12 +0200)
Replace "chore" with "ci" for renovate's semantic
type, and include digests with "pin" and
"pinDigest" as ci operations.

Closes #13644

renovate.json

index a87daa56e4d85b3ceac583be2e16177ae8a0c475..71e94333999ea04524335ea057e8e4a1351175a5 100644 (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
     }
   ],