diff --git a/.github/workflows/clean-stale-branches.yaml b/.github/workflows/clean-stale-branches.yaml new file mode 100644 index 0000000000..c93db5324a --- /dev/null +++ b/.github/workflows/clean-stale-branches.yaml @@ -0,0 +1,20 @@ +name: Cleanup Stale Branches + +on: + workflow_dispatch: + schedule: + - cron: '0 0 * * *' # This schedule runs the workflow at midnight every day + +jobs: + cleanup-stale-branches: + runs-on: ubuntu-latest + steps: + - name: Cleanup Stale Branches + uses: cbrgm/cleanup-stale-branches-action@af96333d4b82de4b00ea2305610a0e3a3da82392 # v1.1.16 + with: + token: ${{ secrets.GITHUB_TOKEN }} + repository: ${{ github.repository }} + allowed-prefixes: "dependabot/,temp-cherry-pick-,cherry-pick-" + last-commit-age-days: 7 + dry-run: false + rate-limit: true