Skip to content

Commit

Permalink
chore: add repo pruner
Browse files Browse the repository at this point in the history
  • Loading branch information
arminbro committed Nov 11, 2024
1 parent 1a75042 commit 05324d7
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions .github/workflows/repo-pruner.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
name: 'Run Repo Pruner'
on:
schedule:
- cron: '0 0 * * 0' # Runs weekly
workflow_dispatch:

jobs:
repo-pruner:
runs-on: ubuntu-latest
steps:
- name: Run Repo Pruner
uses: arminbro/repo-pruner@v1.0.3
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
inactive_days: 30
base_branch: master

0 comments on commit 05324d7

Please sign in to comment.