Skip to content

Cw owasp patch 1

Cw owasp patch 1 #53

name: Delete artifact branch when pull requests are closed
on:
pull_request:
types: [closed]
jobs:
hardening:
name: Harden runner
uses: ./.github/workflows/hardening.yaml
delete-branch:
name: Delete artifact branch
needs: hardening
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@0ad4b8fadaa221de15dcec353f45205ec38ea70b # v4.1.4
- name: Delete artifact target branch
id: delete-artifact-target-branch
env:
TARGET_BRANCH: ${{ github.event.pull_request.head.ref }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
git push origin :"tmp-$TARGET_BRANCH-artifacts" || echo "Could not delete tmp-$TARGET_BRANCH-artifacts"