From 9435ca6edc926616df00817a38bb62459635df03 Mon Sep 17 00:00:00 2001 From: Chris H Date: Sat, 9 Nov 2024 22:41:22 -0500 Subject: [PATCH] Create remove-stale-branches.yml --- .github/workflows/remove-stale-branches.yml | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 .github/workflows/remove-stale-branches.yml diff --git a/.github/workflows/remove-stale-branches.yml b/.github/workflows/remove-stale-branches.yml new file mode 100644 index 00000000000..8f06accdb9d --- /dev/null +++ b/.github/workflows/remove-stale-branches.yml @@ -0,0 +1,12 @@ +on: + schedule: + - cron: "0 0 * * *" # Everday at midnight + +jobs: + remove-stale-branches: + name: Remove Stale Branches + runs-on: ubuntu-latest + steps: + - uses: fpicalausa/remove-stale-branches@v1.6.0 + with: + dry-run: true # Check out the console output before setting this to false