build(deps): bump actions/setup-node from 4 to 6 #3560
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: Pull Request - Delete Docker | |
| on: | |
| pull_request: | |
| types: [closed] | |
| # TODO import a reusable one | |
| jobs: | |
| publish: | |
| name: Pull Request - Delete Docker | |
| if: github.repository == 'kestra-io/kestra' # prevent running on forks | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: dataaxiom/ghcr-cleanup-action@v1 | |
| with: | |
| package: kestra-pr | |
| delete-tags: ${{ github.event.pull_request.number }} |