Mark & close stale questions #83
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: 'Mark & close stale questions' | |
on: | |
schedule: | |
- cron: '42 2 * * *' | |
jobs: | |
stale: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/stale@v9 | |
with: | |
# PRs never get stale | |
days-before-stale: 3 | |
days-before-close: 2 | |
days-before-pr-stale: -1 | |
stale-issue-label: 'stale' | |
only-labels: 'question' | |
stale-issue-message: '' | |
close-issue-message: 'This issue has been automatically closed due to inactivity. Feel free to comment in order to reopen or ask again in our Telegram support group at https://t.me/pythontelegrambotgroup.' |