Skip to content
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion .github/workflows/frontend-chromatic.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,12 @@ jobs:
chromatic:
name: Chromatic
runs-on: ubuntu-latest
if: github.event_name == 'push' || github.event.pull_request.draft == false
# Dependabot PRs use a separate secrets store, so they can't read
# CHROMATIC_PROJECT_TOKEN. main's post-merge push runs Chromatic
# with full secrets, so coverage isn't lost.
if: |
github.actor != 'dependabot[bot]'
&& (github.event_name == 'push' || github.event.pull_request.draft == false)

defaults:
run:
Expand Down
Loading