Close issues with no response #1631
This file contains hidden or 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 issues with no response | |
| on: | |
| schedule: | |
| - cron: '30 20 * * *' | |
| workflow_dispatch: | |
| jobs: | |
| mark: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/stale@5bef64f19d7facfb25b37b414482c7164d639639 # v9 | |
| with: | |
| repo-token: ${{ secrets.GITHUB_TOKEN }} | |
| only-labels: 'more-info-needed' | |
| stale-issue-label: stale | |
| close-issue-message: > | |
| This issue has been automatically closed because there has been no response | |
| to our request for more information from the original author. With only the | |
| information that is currently in the issue, we don't have enough information | |
| to take action. Please reach out if you have or find the answers we need so | |
| that we can investigate further. | |
| days-before-stale: 60 | |
| days-before-close: 5 | |
| days-before-pr-stale: -1 # Never mark PRs stale | |
| days-before-pr-close: -1 # Never close PRs | |
| remove-stale-when-updated: true | |
| # debug-only: true |