From 94f0ec3e2c3b1435330c87b602e66128dafc01af Mon Sep 17 00:00:00 2001 From: Vishal Choudhary Date: Sun, 16 Jun 2024 10:54:24 +0530 Subject: [PATCH] feat: add workflow to cleanup stale branches (#10463) * feat: add workflow to cleanup stale branches Signed-off-by: Vishal Choudhary * feat: testing Signed-off-by: Vishal Choudhary * feat: more testing Signed-off-by: Vishal Choudhary * feat: add sha Signed-off-by: Vishal Choudhary * feat: remove debug Signed-off-by: Vishal Choudhary --------- Signed-off-by: Vishal Choudhary Co-authored-by: shuting --- .github/workflows/clean-stale-branches.yaml | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 .github/workflows/clean-stale-branches.yaml 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