From 704b31dce4662435343ee7a9c004ae0c81da903e Mon Sep 17 00:00:00 2001 From: Raoul Millais Date: Fri, 3 Apr 2020 10:49:20 +0100 Subject: [PATCH] chore: turn off stale workflow - We want issues to hang around and the notifications inaccurately tell us that the issue will be closed when it won't --- .github/workflows/stale.yml | 22 ---------------------- 1 file changed, 22 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 c15bf6f9..00000000 --- a/.github/workflows/stale.yml +++ /dev/null @@ -1,22 +0,0 @@ -name: Mark stale issues and pull requests - -on: - schedule: - - cron: "0 0 * * *" - -jobs: - stale: - - runs-on: ubuntu-latest - - steps: - - uses: actions/stale@v1 - with: - repo-token: ${{ secrets.GITHUB_TOKEN }} - stale-issue-message: 'Dying issue, will be closed soon' - stale-pr-message: 'Dying PR, will be closed soon' - stale-issue-label: 'dying' - stale-pr-label: 'dying' - days-before-stale: 35 - exempt-issue-label: 'backlog' - exempt-pr-label: 'awaiting approval'