Skip to content

Commit

Permalink
fix(workflows): update Chromatic workflow to ignore chore branches
Browse files Browse the repository at this point in the history
  • Loading branch information
Schlomoh committed Nov 23, 2024
1 parent 576c6a2 commit 4f937a7
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions .github/workflows/chromatic-vctrl-viewer.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,12 @@
name: Publish vctrl/viewer Storybook to Chromatic

#exclude dependabot and renovate branches
on: push
on:
push:
branches-ignore:
- 'dependabot/**'
- 'renovate/**'
- 'chore/**'

concurrency:
group: ${{ github.workflow }}-${{ github.ref }}-chromatic
Expand Down Expand Up @@ -46,4 +51,4 @@ jobs:
exitZeroOnChanges: true
exitOnceUploaded: true
onlyChanged: true
skip: '@(renovate/**|dependabot/**)'
skip: '@(renovate/**|dependabot/**|chore/)'

0 comments on commit 4f937a7

Please sign in to comment.