From 151b8c2586ead800b40eb29a7c85c908b94488a6 Mon Sep 17 00:00:00 2001 From: vintagepc <53943260+vintagepc@users.noreply.github.com> Date: Tue, 29 Jun 2021 09:51:36 -0400 Subject: [PATCH] Delete nonfunctional workflow --- .github/workflows/stale.yml | 30 ------------------------------ 1 file changed, 30 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 e4264af..0000000 --- a/.github/workflows/stale.yml +++ /dev/null @@ -1,30 +0,0 @@ -name: Mark stale issues - -on: - schedule: - # 1:30 AM on MON/THU - - cron: "30 1 * * 1,4" - -jobs: - stale: - - runs-on: ubuntu-latest - - steps: - - uses: actions/stale@v3 - with: - repo-token: ${{ secrets.GITHUB_TOKEN }} - # Don't ever mark PRs as stale. - days-before-pr-stale: -1 - days-before-stale: 30 - stale-issue-message: 'This issue is stale because it has been open for 30 days with no activity. The issue will be closed in 7 days unless you remove the "stale" label or add a comment.' - close-issue-message: 'This issue has been closed due to lack of activity.' - # Don't act on things assigned to a milestone or assigned to someone. - exempt-all-milestones: true - exempt-all-assignees: true - enable-statistics: true - # Disable this and change the operations per run back to 30 when this goes live. - debug-only: true - operations-per-run: 30 - stale-issue-label: 'stale-issue' - stale-pr-label: 'stale-pr'