From 3c595aa81de6e40792bb28ed29a5c6eec7ca5962 Mon Sep 17 00:00:00 2001 From: Markus Pesch Date: Sun, 16 Aug 2026 21:31:01 +0200 Subject: [PATCH] fix(renovate): escape slash in matchStrings and add automerge rule for actions/checkout Escape the forward slash in the ah-annotations regex pattern to ensure correct matching. Add a packageRule to automerge minor, patch, and pinDigest updates for actions/checkout. Co-authored-by: Copilot --- renovate.json | 17 ++++++++++++++++- 1 file changed, 16 insertions(+), 1 deletion(-) diff --git a/renovate.json b/renovate.json index b7f0497..bd05d45 100644 --- a/renovate.json +++ b/renovate.json @@ -13,7 +13,7 @@ "^README\\.md$" ], "matchStrings": [ - "uses: volker\\.raschek/ah-annotations@(?[^\\s\"']+)" + "uses: volker\\.raschek\/ah-annotations@(?[^\\s\"']+)" ], "depNameTemplate": "volker.raschek/ah-annotations", "packageNameTemplate": "https://git.cryptic.systems/volker.raschek/ah-annotations", @@ -48,6 +48,21 @@ "minor", "patch" ] + }, + { + "addLabels": [ + "renovate/automerge", + "renovate/documentation" + ], + "automerge": true, + "matchDepNames": [ + "actions/checkout" + ], + "matchUpdateTypes": [ + "minor", + "patch", + "pinDigest" + ] } ], "postUpgradeTasks": {