From 70e9f3d8599f5236e07e09987ff8f8dfd7ee4326 Mon Sep 17 00:00:00 2001 From: Norman Stetter <85173861+norman-zon@users.noreply.github.com> Date: Tue, 5 Mar 2024 10:55:25 +0100 Subject: [PATCH] fix: use fix prefix for action.yml To trigger a release with release-please when the action itself is updated use the "fix" prefix for ./action.yml --- renovate.json | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/renovate.json b/renovate.json index f42341a..acd5862 100644 --- a/renovate.json +++ b/renovate.json @@ -18,6 +18,12 @@ "semanticCommitType": "fix", "groupName": "github-actions", "automerge": true + }, + { + "description": "Use fix prefix for action.yml updates, so release-please recognizes them as patch updates", + "matchFileNames": ["action.yml"], + "matchManagers": ["github-actions"], + "commitMessagePrefix": "fix" } ] }