From f599cbae6c7397c4cb5ed6a55d02b89c81c5dce1 Mon Sep 17 00:00:00 2001 From: Aviv Keller Date: Fri, 18 Apr 2025 09:59:12 -0400 Subject: [PATCH] fix(chromatic): run on merge Signed-off-by: Aviv Keller --- .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 5004417c277a4..6a08406e8fae8 100644 --- a/.github/workflows/chromatic.yml +++ b/.github/workflows/chromatic.yml @@ -7,6 +7,7 @@ name: Chromatic on: + merge_group: push: branches: - main @@ -35,7 +36,7 @@ jobs: # introduce changes to the Storybook. Hence, we skip running these on Crowdin PRs and Dependabot PRs # sha reference has no stable git tag reference or URL. see https://github.com/chromaui/chromatic-cli/issues/797 if: | - github.event_name == 'push' || + github.event_name == 'push' || github.event_name == 'merge_group' || ( github.event_name == 'pull_request_target' && github.event.label.name == 'github_actions:pull-request' &&