Skip to content

Commit

Permalink
Add checkout so that script file exists (#1670)
Browse files Browse the repository at this point in the history
  • Loading branch information
stuartleeks authored Apr 8, 2022
1 parent b1e9f54 commit 2389e84
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions .github/workflows/pr_comment_bot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -174,6 +174,12 @@ jobs:
environment: CICD
name: Destroy PR env
steps:
# Ensure we have the script files
- name: Checkout
uses: actions/checkout@v2
with:
persist-credentials: false

- name: Run deployment cleanup
env:
PR_NUMBER: ${{ github.event.issue.number }}
Expand All @@ -195,6 +201,12 @@ jobs:
environment: CICD
name: Destroy branch env
steps:
# Ensure we have the script files
- name: Checkout
uses: actions/checkout@v2
with:
persist-credentials: false

- name: Run deployment cleanup
env:
PR_NUMBER: ${{ github.event.issue.number }}
Expand Down

0 comments on commit 2389e84

Please sign in to comment.