Skip to content

Commit

Permalink
chore: add stale action
Browse files Browse the repository at this point in the history
  • Loading branch information
jessecooper committed Nov 7, 2024
1 parent 53fa68c commit 712bfda
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions .github/workflows/stale.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
name: 'Close stale issues and PRs'
on:
schedule:
- cron: '30 1 * * *'

jobs:
stale:
runs-on: ubuntu-latest
steps:
- uses: actions/stale@v9
with:
stale-issue-message: 'This issue is stale because it has been open 90 days with no activity. Remove stale label or comment or this will be closed in 5 days.'
days-before-issue-stale: 90
days-before-issue-close: 5

0 comments on commit 712bfda

Please sign in to comment.