Close stale issues and PRs #365
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 stale issues and PRs | |
| on: | |
| schedule: | |
| - cron: 0 10 * * * | |
| jobs: | |
| stale: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/stale@v10 | |
| with: | |
| days-before-stale: 30 | |
| stale-pr-message: This PR has been inactive for 30 days and will be marked as stale. | |
| stale-issue-message: This issue has been inactive for 30 days and will be marked as stale. | |
| close-issue-message: Closed for inactivity. | |
| close-pr-message: Closed for inactivity. | |
| stale-issue-label: stale | |
| stale-pr-label: stale | |
| exempt-issue-labels: pinned | |
| exempt-pr-labels: pinned |