Skip to content

ci: PLT-313: Add yarn e2e test output atrifact #1772

ci: PLT-313: Add yarn e2e test output atrifact

ci: PLT-313: Add yarn e2e test output atrifact #1772

name: "Delete PR branch"
on:
pull_request_target:
types:
- closed
jobs:
delete-branch:
if: github.event.pull_request.merged == true
runs-on: ubuntu-latest
steps:
- uses: hmarr/[email protected]
- name: Delete branch
uses: actions/github-script@v7
if: startsWith(github.event.pull_request.head.ref, 'fb-')
env:
HEAD_REF: ${{ github.event.pull_request.head.ref }}
with:
script: |
const { repo, owner } = context.repo;
const head_ref = process.env.HEAD_REF;
await github.rest.git.deleteRef({
owner,
repo,
ref: `heads/${head_ref}`,
});
console.log(`Branch ${head_ref} is deleted`)