Remove stale bot

“Stale Issue Bots” are the scourge of GitHub. A disease that has affected so many projects I use or contribute to.

It blows my mind that some people have made it their life’s work to go around adding these bots to as many repos as possible. Said people seem to like looking at blank issues sections, “out of sight out of mind” for unresolved issues. Let’s sweep it under the carpet and pretending it doesn't exist.

But high percentage of issues are open because they haven't been dealt with!
pull/3422/head
Matt Sephton 2024-08-24 18:41:38 +01:00 committed by GitHub
parent 83898d616f
commit fb683bb0b1
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 0 additions and 24 deletions

View File

@ -1,24 +0,0 @@
name: 'Close stale issues and PRs'
permissions:
issues: write
pull-requests: write
on:
schedule:
- cron: '30 1 * * *'
jobs:
stale:
runs-on: ubuntu-latest
steps:
- uses: actions/stale@v5
with:
stale-pr-message: 'This PR is stale because it has been open 30 days with no activity. Remove stale label or comment or this will be closed in 5 days.'
close-pr-message: 'This PR was closed because it has been stalled for 5 days with no activity.'
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 5 days.'
close-issue-message: 'This issue was closed because it has been stalled for 5 days with no activity.'
days-before-stale: 30
days-before-close: 5
exempt-issue-labels: 'feature ☘,enhancement ⚙,bug 🐞'
exempt-pr-labels: 'need-help,wip'
operations-per-run: 100