We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 1a75042 + 05324d7 commit 1a81e7bCopy full SHA for 1a81e7b
1 file changed
.github/workflows/repo-pruner.yml
@@ -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