From b9ada7f50bea3f2f74c8dfeb582a86fbe29d9f4c Mon Sep 17 00:00:00 2001 From: Anso Date: Sun, 3 May 2026 00:07:32 -0400 Subject: [PATCH] fix(ci): disable CLA Assistant PR auto-lock so release-please can comment (#890) The contributor-assistant action defaults to locking merged PRs to "safeguard CLA signatures", but signatures are stored in signatures/version1/cla.json and need no extra protection. The auto-lock fires within seconds of merge and blocks release-please from posting its "included in vX.Y.Z" comment on the merged release PR, failing the release-please workflow on every release (0.67.1, 0.68.0). --- .github/workflows/cla.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/cla.yml b/.github/workflows/cla.yml index d8a6876d..be21f529 100644 --- a/.github/workflows/cla.yml +++ b/.github/workflows/cla.yml @@ -27,3 +27,7 @@ jobs: path-to-document: 'https://github.com/studio-saelix/sencho/blob/main/CLA.md' branch: 'main' allowlist: 'AnsoCode,dependabot[bot],greenkeeper[bot],github-actions[bot],release-please[bot],sencho-quartermaster[bot]' + # Default true locks merged PR conversations, which blocks + # release-please from commenting "included in vX.Y.Z" on the + # release PR. Signatures live in signatures/version1/cla.json. + lock-pullrequest-aftermerge: false