P-1111 Adding integration-tests in DA #8
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Delete branch after PR merge | |
on: | |
pull_request_target: | |
types: | |
- closed | |
jobs: | |
delete_branch_optionally: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- name: delete_branch | |
run: | | |
git push origin --delete "${{ github.head_ref }}" | |
echo "remote branch ${{ github.head_ref }} deleted" |