Skip to content

Commit

Permalink
chore: add stale issue action
Browse files Browse the repository at this point in the history
  • Loading branch information
boojack committed Jan 18, 2024
1 parent 2a4ebf5 commit 2242710
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions .github/workflows/stale.yml
@@ -0,0 +1,19 @@
name: Close Stale Issues

on:
schedule:
- cron: "0 0 * * *"

jobs:
stale:
runs-on: ubuntu-latest
permissions:
issues: write

steps:
- uses: actions/stale@v9.0.0
with:
stale-issue-message: "This issue is stale because it has been open 14 days with no activity."
close-issue-message: "This issue was closed because it has been stalled for 28 days with no activity."
days-before-issue-stale: 14
days-before-issue-close: 14

0 comments on commit 2242710

Please sign in to comment.