ci: ignore develop commits

This commit is contained in:
Acid Chicken (硫酸鶏) 2023-04-07 23:27:22 +09:00
parent eb30976ae6
commit 79f198e4f1
No known key found for this signature in database
GPG key ID: 3E87B98A3F6BAB99

View file

@ -53,7 +53,7 @@ jobs:
CHROMATIC_PROJECT_TOKEN: ${{ secrets.CHROMATIC_PROJECT_TOKEN }} CHROMATIC_PROJECT_TOKEN: ${{ secrets.CHROMATIC_PROJECT_TOKEN }}
- name: Notify that Chromatic will skip testing - name: Notify that Chromatic will skip testing
uses: actions/github-script@v6.4.0 uses: actions/github-script@v6.4.0
if: github.ref != 'refs/heads/master' && steps.chromatic.outputs.skip == 'true' if: github.ref != 'refs/heads/master' && github.ref != 'refs/heads/develop' && steps.chromatic.outputs.skip == 'true'
with: with:
github-token: ${{ secrets.GITHUB_TOKEN }} github-token: ${{ secrets.GITHUB_TOKEN }}
script: | script: |