From 8cf8fca86fc21c19264b813d635bf9a3883e1369 Mon Sep 17 00:00:00 2001 From: Isaac Virshup Date: Thu, 29 Aug 2024 20:29:04 +0000 Subject: [PATCH] Get rid of stale bot --- .github/workflows/close-stale-prs.yml | 23 ----------------------- 1 file changed, 23 deletions(-) delete mode 100644 .github/workflows/close-stale-prs.yml diff --git a/.github/workflows/close-stale-prs.yml b/.github/workflows/close-stale-prs.yml deleted file mode 100644 index cd9ba0384..000000000 --- a/.github/workflows/close-stale-prs.yml +++ /dev/null @@ -1,23 +0,0 @@ -name: Close inactive pull requests -on: - schedule: - - cron: "30 1 * * *" - -jobs: - close-issues: - runs-on: [self-hosted, Linux, X64] - permissions: - issues: write - pull-requests: write - steps: - - uses: actions/stale@v8 - with: - days-before-issue-stale: -1 # Do not mark any issues as stale - days-before-pr-stale: 28 - days-before-pr-close: 3 - stale-pr-message: "This PR has not seen any activity in the past 4 weeks; if no one comments or reviews it in the next 3 days, this PR will be closed." - close-pr-message: "This PR was closed because it has been inactive for 31 days, 3 days since being marked as stale. Please re-open if you still need this to be addressed." - stale-pr-label: "stale" - close-pr-label: "autoclosed" - exempt-draft-pr: true - repo-token: ${{ secrets.GITHUB_TOKEN }}