-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathconfig.yml
34 lines (32 loc) · 902 Bytes
/
config.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
version: 2.1
setup: true
orbs:
orb-tools: circleci/[email protected]
shellcheck: circleci/[email protected]
filters: &filters
tags:
only: /.*/
workflows:
lint-pack:
jobs:
- orb-tools/lint:
filters: *filters
- orb-tools/pack:
filters: *filters
- orb-tools/review:
filters: *filters
exclude: "RC008"
- shellcheck/check:
filters: *filters
- orb-tools/publish:
orb-name: promiseofcake/workflow-queue
vcs-type: << pipeline.project.type >>
requires:
[orb-tools/lint, orb-tools/review, orb-tools/pack, shellcheck/check]
context: orb-publishing
filters: *filters
- orb-tools/continue:
pipeline-number: << pipeline.number >>
vcs-type: << pipeline.project.type >>
requires: [orb-tools/publish]
filters: *filters