Skip to content

This is a test to see if the PR preview comments work #2

This is a test to see if the PR preview comments work

This is a test to see if the PR preview comments work #2

Workflow file for this run

name: delete-preview
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@v5
with:
branch: gh-pages
commit_message: Delete preview for pull request \#${{ github.event.pull_request.number }}