Skip to content

Commit

Permalink
fix: change back the job name to on-hold (#409)
Browse files Browse the repository at this point in the history
  • Loading branch information
EricRibeiro authored May 9, 2023
1 parent 6d8d528 commit 3e43e75
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 4 deletions.
1 change: 1 addition & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ workflows:
filters: *filters
- orb-tools/review:
filters: *filters
exclude: RC010
- shellcheck/check:
shell: sh
filters: *filters
Expand Down
4 changes: 2 additions & 2 deletions src/examples/full_deployment_sample.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ usage:
# When we are on a tagged commit (example "v1.0.0"), we want to also place the workflow on-hold, pending manual approval for deployment.
# We will also make use of the Slack orb's "on-hold" job to notify us to this on-hold workflow, making it easy to respond.
# Add a context containing your Slack OAuth token and optionally, default slack channel
- slack/on_hold:
- slack/on-hold:
context: slack-secrets
requires:
- test
Expand All @@ -51,7 +51,7 @@ usage:
type: approval
requires:
- test
- slack/on_hold
- slack/on-hold
filters:
tags:
only: /^v.*/
Expand Down
4 changes: 2 additions & 2 deletions src/examples/on_hold_notification.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ usage:
jobs:
- my_test_job
# Send a slack notfication alerting the workflow will now be placed on-hold after this notification.
- slack/on_hold:
- slack/on-hold:
context: slack-secrets
requires:
- my_test_job
Expand All @@ -19,7 +19,7 @@ usage:
type: approval
requires:
- my_test_job
- slack/on_hold
- slack/on-hold
# This job will continue once the workflow has been manually approved.
- my_deploy_job:
requires:
Expand Down
File renamed without changes.

0 comments on commit 3e43e75

Please sign in to comment.