From fb683bb0b1123cadc01745be7cd549a7e54e2327 Mon Sep 17 00:00:00 2001 From: Matt Sephton Date: Sat, 24 Aug 2024 18:41:38 +0100 Subject: [PATCH] Remove stale bot MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit “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! --- .github/workflows/stale.yml | 24 ------------------------ 1 file changed, 24 deletions(-) delete mode 100644 .github/workflows/stale.yml diff --git a/.github/workflows/stale.yml b/.github/workflows/stale.yml deleted file mode 100644 index 60c6ae5e..00000000 --- a/.github/workflows/stale.yml +++ /dev/null @@ -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 \ No newline at end of file