Close Stale Issues #124
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 warns and then closes issues and PRs that have had no activity for a specified amount of time. | |
# | |
# You can adjust the behavior by modifying this file. | |
# For more information, see: | |
# https://github.com/actions/stale | |
name: Close Stale Issues | |
on: | |
workflow_dispatch: | |
schedule: | |
- cron: '0 0 * * *' | |
jobs: | |
stale: | |
runs-on: ubuntu-latest | |
permissions: | |
issues: write | |
pull-requests: write | |
steps: | |
- uses: actions/stale@v3 | |
with: | |
repo-token: ${{ secrets.GITHUB_TOKEN }} | |
days-before-stale: 56 | |
days-before-close: 14 | |
exempt-issue-labels: 'security,enhancement,bug,in progress' | |
stale-issue-label: 'stale' | |
stale-issue-message: | | |
Hello and thank you for your contribution! | |
AzuraCast is a big project maintained by a very small team, so we occasionally depend on automated tools to help us manage the high volume of issues we get. | |
Our automated system has marked this issue as "stale" because it hasn't had any recent activity. If this issue is still happening, all you have to do to keep the issue open is to comment. | |
If you haven't received a response from our team yet, it may be because we are unsure of what is causing your specific issue, or we need more information (like logs or details of your installation) to continue. The more information you can provide us, the better support we can provide in return. | |
We apologize for any inconvenience caused by this system. Thank you for your patience and understanding. | |
close-issue-label: 'wontfix' | |
close-issue-message: | | |
Thank you for your contribution. | |
We still haven't heard anything back in a while, so our automated system is closing this issue due to inactivity. | |
If you're still experiencing this issue, you can re-open it at any time. | |
We apologize for any inconvenience. Thank you for your patience and understanding. |