We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents a4bef9d + acee9f3 commit 6c14c89Copy full SHA for 6c14c89
1 file changed
.github/workflows/deploy-all.yml
@@ -6,6 +6,12 @@ name: Deploy All Demo Apps
6
7
on:
8
workflow_dispatch:
9
+ inputs:
10
+ teardown_scan_demo:
11
+ description: 'Also tear down the scan demo app (rg-a11y-scan-demo)'
12
+ required: false
13
+ type: boolean
14
+ default: false
15
16
env:
17
LOCATION: canadacentral
@@ -210,6 +216,7 @@ jobs:
210
216
fi
211
217
212
218
- name: Delete rg-a11y-scan-demo
219
+ if: ${{ inputs.teardown_scan_demo }}
213
220
run: |
214
221
if az group exists --name rg-a11y-scan-demo | grep -q true; then
215
222
echo "Deleting resource group: rg-a11y-scan-demo"
0 commit comments