chore(deps): update kramdown-rfc requirement from 1.7.30 to 1.7.35 #14
Workflow file for this run
This file contains hidden or 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: Cleanup PR Spec Preview | |
| on: | |
| pull_request_target: | |
| types: [closed] | |
| permissions: | |
| contents: write | |
| jobs: | |
| cleanup: | |
| name: Delete preview release | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Delete preview release and tag | |
| env: | |
| GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| REPO: ${{ github.repository }} | |
| TAG: pr-${{ github.event.pull_request.number }}-spec-preview | |
| run: | | |
| # This workflow intentionally avoids checking out or executing PR code. | |
| # It only deletes the derived preview release for the closed PR. | |
| gh release delete "$TAG" --repo "$REPO" --yes --cleanup-tag || true |