Skip to content

Output more information. Will have to merge and delete this branch to… #5

Output more information. Will have to merge and delete this branch to…

Output more information. Will have to merge and delete this branch to… #5

Workflow file for this run

name: Teardown all QA environments for PR
on:
pull_request_target:
types: [ locked, closed ]
jobs:
teardown_all_PR_qa_branches:
runs-on: ubuntu-latest
steps:
- name: Checkout repo
uses: actions/checkout@v3
with:
token: ${{ secrets.MIRROR_GITHUB_PAT }}
ref: main
- name: Delete all QA branches for this PR
run: ./.github/scripts/delete_qa_branch_for_pr.sh "[1-4]" ${{ github.event.number }}
shell: bash