Skip to content

Commit 1a81e7b

Browse files
authored
Merge pull request #131 from arminbro/dev
chore: add repo pruner
2 parents 1a75042 + 05324d7 commit 1a81e7b

File tree

1 file changed

+17
-0
lines changed

1 file changed

+17
-0
lines changed

.github/workflows/repo-pruner.yml

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
name: 'Run Repo Pruner'
2+
on:
3+
schedule:
4+
- cron: '0 0 * * 0' # Runs weekly
5+
workflow_dispatch:
6+
7+
jobs:
8+
repo-pruner:
9+
runs-on: ubuntu-latest
10+
steps:
11+
- name: Run Repo Pruner
12+
uses: arminbro/repo-pruner@v1.0.3
13+
env:
14+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
15+
with:
16+
inactive_days: 30
17+
base_branch: master

0 commit comments

Comments
 (0)