Skip to content

Bump styfle/cancel-workflow-action from 0.11.0 to 0.12.0 #1

Bump styfle/cancel-workflow-action from 0.11.0 to 0.12.0

Bump styfle/cancel-workflow-action from 0.11.0 to 0.12.0 #1

Workflow file for this run

name: delete-preview
# Only run this when the main branch changes
on:
pull_request_target:
types: closed
jobs:
delete:
runs-on: ubuntu-latest
defaults:
run:
shell: bash -l {0}
steps:
- name: Checkout gh-pages branch
uses: actions/checkout@v4
with:
ref: gh-pages
- name: Delete preview files
run: |
rm -rf _preview/${{ github.event.pull_request.number }}
- name: Commit the changes
uses: stefanzweifel/git-auto-commit-action@v3
with:
branch: gh-pages
commit_message: Delete preview for pull request \#${{ github.event.pull_request.number }}