ci: Ignore release branches for chromatic ci workflow (no-changelog) (#21978)

This commit is contained in:
Alex Grozav 2025-11-18 14:51:28 +02:00 committed by GitHub
parent 29527d0579
commit 0a7e092efb
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -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: