chore: Make Resume manual to avoid costs #27
Workflow file for this run
This file contains 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: PR Close | |
on: | |
pull_request: | |
types: [closed] | |
concurrency: | |
# Cancel in progress for PR open and close | |
group: ${{ github.event.number }} | |
cancel-in-progress: false | |
permissions: | |
id-token: write # This is required for requesting the JWT | |
contents: write # This is required for actions/checkout | |
packages: write | |
pull-requests: write | |
jobs: | |
cleanup: | |
name: Cleanup | |
runs-on: ubuntu-24.04 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: TODO GHA for PR CLeanup on PR close | |
run: echo "TODO GHA for PR CLeanup on PR close" |