Skip to content

Commit

Permalink
Merge pull request #477 from mjaakko/close_stale_issues
Browse files Browse the repository at this point in the history
Close bug reports needing more info if not updated in a month
  • Loading branch information
mjaakko authored Feb 1, 2025
2 parents c0417ea + 02ba4b3 commit 7d66eb0
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions .github/workflows/stale.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
name: 'Close stale issues'
on:
schedule:
- cron: '32 4 * * *'

jobs:
stale:
runs-on: ubuntu-latest
steps:
- uses: actions/stale@v9
with:
only-issue-labels: "bug,more-info-needed"
stale-issue-message: 'This issue is stale because it has been open 30 days with no activity. Remove stale label or comment or this will be closed in 7 days.'
close-issue-message: 'This issue was closed because it has been stalled for 7 days with no activity.'
days-before-issue-stale: 30
days-before-issue-close: 7
days-before-pr-stale: -1

0 comments on commit 7d66eb0

Please sign in to comment.