From 7422e87d52ab67b67ba8dbbab4b637fd5321721c Mon Sep 17 00:00:00 2001 From: Martin Helmich Date: Thu, 16 Nov 2023 15:41:03 +0100 Subject: [PATCH] The "stale" workflow does more harm than good --- .github/workflows/stale.yml | 28 ---------------------------- 1 file changed, 28 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 f14f38e..0000000 --- a/.github/workflows/stale.yml +++ /dev/null @@ -1,28 +0,0 @@ -name: Mark stale issues and pull requests - -on: - schedule: - - cron: "0 0 * * *" - -jobs: - stale: - - runs-on: ubuntu-latest - - steps: - - uses: actions/stale@v8 - with: - repo-token: ${{ secrets.githubToken }} - days-before-stale: 30 - - stale-issue-message: > - There has not been any activity to this issue in the last 30 days. - It will automatically be closed after 7 more days. Remove the `stale` label to prevent this. - stale-issue-label: 'stale' - exempt-issue-labels: 'confirmed,help-wanted' - - stale-pr-message: > - There has not been any activity to this pull request in the last 30 days. - It will automatically be closed after 7 more days. Remove the `stale` label to prevent this. - stale-pr-label: 'stale' - exempt-pr-labels: 'awaiting-approval,work-in-progress'