Close stale issues #1381
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: | |
workflow_dispatch: | |
schedule: | |
- cron: "30 1 * * *" | |
jobs: | |
stale: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/stale@v9 | |
with: | |
repo-token: ${{ secrets.GITHUB_TOKEN }} | |
days-before-stale: 60 | |
days-before-close: 7 | |
ascending: true | |
only-labels: 'needs more info' | |
stale-issue-label: stale | |
stale-issue-message: > | |
This issue has not had recent activity and has been marked as stale — by me, a robot. | |
Simply reply to keep it open and send me away. If you do nothing, I will close it in | |
a week. I have no feelings, so whatever you do is fine by me. |