Skip to content

Commit 3b8f518

Browse files
authored
Add workflow to remove stale branches daily
1 parent c51137d commit 3b8f518

1 file changed

Lines changed: 12 additions & 0 deletions

File tree

.github/workflows/main.yml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
on:
2+
schedule:
3+
- cron: "0 0 * * *" # Everday at midnight
4+
5+
jobs:
6+
remove-stale-branches:
7+
name: Remove Stale Branches
8+
runs-on: ubuntu-latest
9+
steps:
10+
- uses: fpicalausa/remove-stale-branches@v2.4.0
11+
with:
12+
dry-run: true # Check out the console output before setting this to false

0 commit comments

Comments
 (0)