From 3e2dee28b0c466022068371a27af993fd8242ee1 Mon Sep 17 00:00:00 2001 From: bo0tzz Date: Wed, 6 May 2026 18:47:53 +0200 Subject: [PATCH] fix: scope multi-runner-build-workflow release path to its workflow file Previously the package tracked the entire .github/workflows directory and excluded only release-please.yml and zizmor.yaml. As more unrelated workflows were added (build-*, flux-diff, terragrunt, org-*, shared-*, test-use-mise) they could trigger spurious version bumps of the multi-runner-build-workflow component, and the zizmor.yaml exclude became stale after that file was renamed to shared-zizmor.yml. Expand the exclude list to cover every workflow file other than multi-runner-build.yml itself. --- release-please-config.json | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/release-please-config.json b/release-please-config.json index d51c52f2a..bf20e9a61 100644 --- a/release-please-config.json +++ b/release-please-config.json @@ -25,8 +25,19 @@ ".github/workflows": { "component": "multi-runner-build-workflow", "exclude-paths": [ + ".github/workflows/build-actions-runner.yaml", + ".github/workflows/build-mdq.yml", + ".github/workflows/build-outline-role-sync.yml", + ".github/workflows/flux-diff.yml", + ".github/workflows/org-pr-require-conventional-commit.yml", + ".github/workflows/org-zizmor.yml", ".github/workflows/release-please.yml", - ".github/workflows/zizmor.yaml" + ".github/workflows/scripts.yml", + ".github/workflows/shared-pr-require-conventional-commit.yml", + ".github/workflows/shared-required-approval.yml", + ".github/workflows/shared-zizmor.yml", + ".github/workflows/terragrunt.yml", + ".github/workflows/test-use-mise.yml" ] } },