Skip to content

Delete old branches

Delete old branches #7

name: Delete old branches
on:
schedule:
- cron: "0 0 * * *"
workflow_dispatch:
jobs:
cleanup_old_branches:
runs-on: ubuntu-latest
if: github.repository == 'wolfi-dev/os'
permissions:
id-token: write # To gitsign and federate
steps:
- uses: chainguard-dev/octo-sts-action@6177b4481c00308b3839969c3eca88c96a91775f # v1.0.0
id: octo-sts
with:
scope: ${{ github.repository }}
identity: delete-branches
- uses: wolfi-dev/actions/install-wolfictl@main
- name: Delete Branches
run: |
wolfictl gh gc branch https://github.com/wolfi-dev/os --match "wolfictl-"
env:
GITHUB_TOKEN: ${{ steps.octo-sts.outputs.token }}