We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 078d5a5 commit 61f0139Copy full SHA for 61f0139
.github/workflows/pr-closed.yaml
@@ -27,9 +27,12 @@ jobs:
27
aws-region: us-east-2
28
29
- name: Delete Stacks
30
+ env:
31
+ PR_NUMBER: ${{ github.event.pull_request.number }}
32
+ AWS_REGION: us-east-2
33
run: |
34
+ echo "Deleting stack: lambda-dispatch-app-stack-pr-${PR_NUMBER}"
35
# Delete all stacks for this PR
- PR_NUMBER=${{ github.event.pull_request.number }}
36
aws cloudformation delete-stack --stack-name "lambda-dispatch-app-stack-pr-${PR_NUMBER}"
37
# Wait for deletion to complete
38
aws cloudformation wait stack-delete-complete --stack-name "lambda-dispatch-app-stack-pr-${PR_NUMBER}"
0 commit comments