From d57743bfd59949db726c27d15a2795f006fba34f Mon Sep 17 00:00:00 2001 From: Thomas E Lackey Date: Tue, 28 Nov 2023 19:06:10 +0000 Subject: [PATCH] 119: Disable "stale" workflow. (#120) Remove the workflow that automatically marks PRs and issues as stale. Reviewed-on: https://git.vdb.to/cerc-io/laconicd/pulls/120 Reviewed-by: David Boreham Co-authored-by: Thomas E Lackey Co-committed-by: Thomas E Lackey --- .github/workflows/stale.yml | 21 --------------------- 1 file changed, 21 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 629e2eee..00000000 --- a/.github/workflows/stale.yml +++ /dev/null @@ -1,21 +0,0 @@ -name: "Close stale issues & pull requests" -on: - schedule: - - cron: "0 0 * * *" - -jobs: - stale: - runs-on: ubuntu-latest - steps: - - uses: actions/stale@v6 - with: - repo-token: ${{ secrets.GITHUB_TOKEN }} - stale-pr-message: "This pull request has been automatically marked as stale because it has not had - recent activity. It will be closed in 7 days-before-close if no further activity occurs." - stale-issue-message: "This issue is stale because it has been open 45 days with no activity. Remove `Status: Stale` label or comment or this will be closed in 7 days." - days-before-stale: 45 - days-before-close: 7 - exempt-issue-labels: "Status: Blocked, Type: Bug, pinned, automerge" - exempt-pr-labels: "Status: Blocked, Type: Bug, pinned, automerge" - stale-pr-label: "Status: Stale" - stale-issue-label: "Status: Stale"