Skip to content

Commit 4e82bfd

Browse files
authored
fix: multi-runner-build-workflow release-please excludes (#1572)
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.
1 parent 4e5ef4c commit 4e82bfd

1 file changed

Lines changed: 12 additions & 1 deletion

File tree

release-please-config.json

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,19 @@
2525
".github/workflows": {
2626
"component": "multi-runner-build-workflow",
2727
"exclude-paths": [
28+
".github/workflows/build-actions-runner.yaml",
29+
".github/workflows/build-mdq.yml",
30+
".github/workflows/build-outline-role-sync.yml",
31+
".github/workflows/flux-diff.yml",
32+
".github/workflows/org-pr-require-conventional-commit.yml",
33+
".github/workflows/org-zizmor.yml",
2834
".github/workflows/release-please.yml",
29-
".github/workflows/zizmor.yaml"
35+
".github/workflows/scripts.yml",
36+
".github/workflows/shared-pr-require-conventional-commit.yml",
37+
".github/workflows/shared-required-approval.yml",
38+
".github/workflows/shared-zizmor.yml",
39+
".github/workflows/terragrunt.yml",
40+
".github/workflows/test-use-mise.yml"
3041
]
3142
}
3243
},

0 commit comments

Comments
 (0)