Skip to content

Commit c28aaea

Browse files
committed
(ELI-466) adding act guard for base deploy
1 parent a82e77a commit c28aaea

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

.github/workflows/base-deploy.yml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,13 @@ on:
1919
secrets: {}
2020

2121
jobs:
22+
act_guard:
23+
steps:
24+
- name: Dry run guard
25+
if: env.DRY_RUN == 'true'
26+
run: |
27+
echo "DRY RUN: would deploy ${INPUT_environment} ref ${INPUT_ref} release_type ${INPUT_release_type}"
28+
exit 0
2229
metadata:
2330
name: "Set CI/CD metadata"
2431
runs-on: ubuntu-latest

0 commit comments

Comments
 (0)