Skip to content

Commit

Permalink
Merge pull request #7737 from drew2a/feature/stale-actions
Browse files Browse the repository at this point in the history
Introduce Workflow to Manage Stale Issues
  • Loading branch information
drew2a committed Jan 3, 2024
2 parents be94fc1 + 44cee2f commit 8c2f12c
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 and PRs'
on:
schedule:
- cron: '30 1 * * *'

jobs:
stale:
runs-on: ubuntu-latest
steps:
- uses: actions/stale@v8
with:
stale-issue-message: 'This issue has not seen activity for 60 days. It is now marked as stale. Please provide additional information or this issue may be closed in the future. We value your contribution and would love to hear more!'
stale-issue-label: 'status: stale'
only-labels: "status: can't reproduce"
days-before-stale: 60
days-before-close: -1

0 comments on commit 8c2f12c

Please sign in to comment.