From 0a7e092efbe7aff7ba84bb62cc279e612f1e964d Mon Sep 17 00:00:00 2001 From: Alex Grozav Date: Tue, 18 Nov 2025 14:51:28 +0200 Subject: [PATCH] ci: Ignore release branches for chromatic ci workflow (no-changelog) (#21978) --- .github/workflows/chromatic.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/chromatic.yml b/.github/workflows/chromatic.yml index 04c4ed975a0..a99932c2f53 100644 --- a/.github/workflows/chromatic.yml +++ b/.github/workflows/chromatic.yml @@ -36,7 +36,8 @@ jobs: github.event_name == 'pull_request_review' && needs.changeset.outputs.has_changes == 'true' && github.event.review.state == 'approved' && - !contains(github.event.pull_request.labels.*.name, 'community') + !startsWith(github.event.pull_request.head.ref, 'release/') && + !startsWith(github.event.pull_request.head.ref, 'release-pr/') ) runs-on: blacksmith-2vcpu-ubuntu-2204 steps: