Remove Branches #24
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: Remove Branches | |
| on: | |
| schedule: | |
| - cron: '0 3 * * *' | |
| timezone: 'America/Los_Angeles' | |
| jobs: | |
| remove_branch: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Install uv | |
| run: | | |
| curl -LsSf https://astral.sh/uv/install.sh | sudo env UV_INSTALL_DIR="/usr/local/bin" sh | |
| - name: Remove Branches | |
| run: | | |
| uvx --from github-rest-api@latest remove_branch \ | |
| --repo ${{ github.repository }} \ | |
| --pattern '^(?!main$)' \ | |
| --token ${{ secrets.ACTIONS_TOKEN }} |