Skip to content

Commit

Permalink
fix: add tag filters (#198)
Browse files Browse the repository at this point in the history
  • Loading branch information
KyleTryon authored May 8, 2023
1 parent 000e774 commit 0160226
Showing 1 changed file with 13 additions and 4 deletions.
17 changes: 13 additions & 4 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,21 @@ orbs:
orb-tools-alpha: circleci/orb-tools@dev:alpha
shellcheck: circleci/[email protected]

filters: &filters
tags:
only: /.*/

workflows:
lint-pack:
jobs:
- orb-tools-alpha/lint
- orb-tools-alpha/pack
- orb-tools-alpha/review
- shellcheck/check
- orb-tools-alpha/lint:
filters: *filters
- orb-tools-alpha/pack:
filters: *filters
- orb-tools-alpha/review:
filters: *filters
- shellcheck/check:
filters: *filters
- orb-tools-alpha/continue:
pipeline_number: << pipeline.number >>
vcs_type: << pipeline.project.type >>
Expand All @@ -25,3 +33,4 @@ workflows:
orb-tools-alpha/pack,
shellcheck/check,
]
filters: *filters

0 comments on commit 0160226

Please sign in to comment.