We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
run_chromatic
1 parent daec525 commit b386b98Copy full SHA for b386b98
.github/workflows/dcr-chromatic.yml
@@ -11,12 +11,8 @@ jobs:
11
name: Chromatic
12
runs-on: ubuntu-latest
13
# Run Chromatic only if `run_chromatic` label has been applied or we're
14
- # pushing to `main`. Skip if this is a Dependabot PR as this is handled
15
- # by the subsequent job.
16
- if: |
17
- (contains(github.event.pull_request.labels.*.name, 'run_chromatic') || github.ref == 'refs/heads/main') &&
18
- (!contains(github.event.pull_request.labels.*.name, 'dependencies') &&
19
- github.event.pull_request.user.login != 'dependabot')
+ # pushing to `main`.
+ if: contains(github.event.pull_request.labels.*.name, 'run_chromatic') || github.ref == 'refs/heads/main'
20
steps:
21
- name: Checkout - On Pull Request
22
uses: actions/checkout@v4
0 commit comments