Mark stale issues #322
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
# This workflow labels stale issues. | |
# | |
# For more information, see: | |
# https://github.com/actions/stale | |
name: Mark stale issues | |
on: | |
workflow_dispatch: | |
schedule: | |
- cron: '0 19 * * *' | |
jobs: | |
stale: | |
runs-on: ubuntu-latest | |
permissions: | |
issues: write | |
steps: | |
- uses: actions/stale@v9 | |
with: | |
repo-token: ${{ secrets.GITHUB_TOKEN }} | |
days-before-stale: 60 | |
days-before-close: -1 | |
days-before-pr-stale: -1 | |
days-before-pr-close: -1 | |
stale-issue-label: 'stale' | |
stale-issue-message: | | |
Hello there, | |
Thank you for opening this issue! We appreciate your interest in our project. | |
However, it seems that this issue hasn't had any activity for a while. To ensure that our issue tracker remains organized and efficient, we occasionally review and address stale issues. | |
If you believe this issue is still relevant and requires attention, please provide any additional context, updates, or details that might help us understand the problem better. | |
Feel free to continue the conversation here. | |
If the issue is no longer relevant, you can simply close it. If you're uncertain, you can always reopen it later. | |
Remember, our project thrives on community contributions, and your input matters. We're here to collaborate and improve. | |
Thank you for being part of this journey! | |