From 0389a290524e2be00e0333e1cced2a75709ce725 Mon Sep 17 00:00:00 2001 From: Casey Callendrello Date: Thu, 25 May 2023 10:31:15 +0200 Subject: [PATCH] github: remove stale issue cleanup In retrospect, this was a bad idea. It's closing too many valid issues. Signed-off-by: Casey Callendrello --- .github/workflows/stale.yml | 13 ------------- 1 file changed, 13 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 385eca346..000000000 --- a/.github/workflows/stale.yml +++ /dev/null @@ -1,13 +0,0 @@ -name: 'Close stale issues and PRs' -on: - schedule: - - cron: '30 1 * * *' - -jobs: - stale: - runs-on: ubuntu-latest - steps: - - uses: actions/stale@v8 - with: - stale-pr-message: 'This PR has been untouched for too long without an update. It will be closed in 7 days.' - exempt-issue-labels: 'keep'