From b3bcdde93a96ef89568dbed3a732a3f9438b9953 Mon Sep 17 00:00:00 2001 From: Shunsuke Suzuki Date: Fri, 22 Apr 2022 19:00:28 +0900 Subject: [PATCH] chore: remove the workflow to close stale issues and pull requests (#371) --- .github/workflows/stale.yaml | 26 -------------------------- 1 file changed, 26 deletions(-) delete mode 100644 .github/workflows/stale.yaml diff --git a/.github/workflows/stale.yaml b/.github/workflows/stale.yaml deleted file mode 100644 index ff52c9e9..00000000 --- a/.github/workflows/stale.yaml +++ /dev/null @@ -1,26 +0,0 @@ -name: 'Close stale issues and PRs' -on: - schedule: - - cron: '0 10 * * *' - -jobs: - stale: - runs-on: ubuntu-latest - steps: - - uses: actions/stale@v4 - with: - repo-token: ${{ secrets.GITHUB_TOKEN }} - days-before-stale: 60 - days-before-close: 7 - stale-issue-label: stale - stale-pr-label: stale - exempt-pr-labels: security,pinned - exempt-issue-labels: security,pinned - stale-issue-message: | - This issue is stale because it has been open 60 days with no activity. - Remove `stale` label or comment or this will be closed in 7 days. - If you don't want this issue to be closed, please set the label `pinned`. - stale-pr-message: | - This pull request is stale because it has been open 60 days with no activity. - Remove `stale` label or comment or this will be closed in 7 days. - If you don't want this pull request to be closed, please set the label `pinned`.