Close stale issues #38516
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: 'Close stale issues' | |
on: | |
schedule: | |
- cron: '0 * * * *' | |
jobs: | |
stale: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/stale@v6 | |
with: | |
repo-token: ${{secrets.YARNBOT_TOKEN}} | |
stale-issue-message: | | |
Hi! π | |
It seems like this issue as been marked as probably resolved, or missing important information blocking its progression. As a result, it'll be closed in a few days unless a maintainer explicitly vouches for it. | |
remove-stale-when-updated: true | |
days-before-stale: 30 | |
days-before-close: 5 | |
only-labels: 'waiting for feedback' | |
stale-issue-label: 'stale' |