chore: remove the workflow to close stale issues and pull requests (#371)

This commit is contained in:
Shunsuke Suzuki 2022-04-22 19:00:28 +09:00 committed by GitHub
parent a8517ea302
commit b3bcdde93a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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`.