Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 12 additions & 5 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -194,7 +194,9 @@ jobs:
workflows:
setup:
when:
equal: ['main', << pipeline.parameters.workflow >>]
and:
- equal: ['main', << pipeline.parameters.workflow >>]
- equal: ['disabled', 'enabled'] # Always false - CircleCI disabled
jobs:
- generate-config
- init:
Expand Down Expand Up @@ -341,21 +343,26 @@ workflows:

release-create-branch:
when:
equal: ['release-create-branch', << pipeline.parameters.workflow >>]
and:
- equal: ['release-create-branch', << pipeline.parameters.workflow >>]
- equal: ['disabled', 'enabled'] # Always false - CircleCI disabled
jobs:
- generate-release-branch

auto-approve-foundation-deploy:
when:
equal:
['auto-approve-foundation-deploy', << pipeline.parameters.workflow >>]
and:
- equal: ['auto-approve-foundation-deploy', << pipeline.parameters.workflow >>]
- equal: ['disabled', 'enabled'] # Always false - CircleCI disabled
jobs:
- approve-foundation-deployment-holds:
context: [slack-secrets, circle-daily-deploy-secrets]

mobile-prod-build:
when:
equal: ['mobile-prod-build', << pipeline.parameters.workflow >>]
and:
- equal: ['mobile-prod-build', << pipeline.parameters.workflow >>]
- equal: ['disabled', 'enabled'] # Always false - CircleCI disabled
jobs:
- generate-config
- init:
Expand Down
Loading