From 6ba50bee804417668dae11a01c8195c457f78a52 Mon Sep 17 00:00:00 2001 From: scitex-agent-container Date: Mon, 31 Aug 2026 21:47:46 +0000 Subject: [PATCH] ci(cla): add the push trigger scitex-io's caller has The reusable-workflow migration (PR #367) carried over the on: block's issue_comment/pull_request_target entries but dropped push, so the reusable's owner-bypass job (marks CLAssistant=success on a direct push by the allowlisted owner, since a push has no PR to sign against) never runs here. scitex-io's caller -- the file this migration was told to mirror -- triggers on push to [main, develop] plus v* tags; bring this repo's caller to parity. --- .github/workflows/cla.yml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/.github/workflows/cla.yml b/.github/workflows/cla.yml index f3f0f624a..20ac5ced2 100644 --- a/.github/workflows/cla.yml +++ b/.github/workflows/cla.yml @@ -47,6 +47,14 @@ on: types: [created] pull_request_target: types: [opened, closed, synchronize] + # Missing until now — scitex-io (the mirrored reference) has it. Without a + # `push` trigger the reusable's `owner-bypass` job (marks CLAssistant=success + # on the owner's direct push, since a direct push has no PR to sign against) + # never runs here, and a `git push` to main/develop by the repo owner sits + # with no CLAssistant status at all rather than an owner-bypass success. + push: + branches: [main, develop] + tags: ['v*'] permissions: actions: write