build(deps): bump node from 25.6.1 to 25.7.0 #731
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 - Cleanup Tags and Releases | |
| on: | |
| delete: | |
| pull_request: | |
| types: [closed] | |
| workflow_dispatch: | |
| inputs: | |
| regex: | |
| description: "Regex to search by" | |
| required: false | |
| pr_number: | |
| description: "PR Number to search by" | |
| required: false | |
| permissions: | |
| contents: write | |
| jobs: | |
| test: | |
| name: Cleanup Tags and Releases | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Remove unused releases and tags | |
| uses: bitflight-devops/github-action-cleanup-releases-and-tags@v1 | |
| env: | |
| GITHUB_TOKEN: ${{ github.token }} | |
| with: | |
| regex: ${{ github.event.inputs.regex }} | |
| pr_number: ${{ github.event.inputs.pr_number }} |