Close Stale Issues #28
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: Close Stale Issues | |
on: | |
schedule: | |
- cron: 30 1 * * * | |
permissions: | |
contents: read | |
jobs: | |
stale: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/[email protected] | |
with: | |
stale-issue-message: This issue is stale because it has been open 2 months with no activity. Remove the stale label or comment, otherwise this will be closed in 5 days. | |
stale-pr-message: This PR is stale because it has been open 1 month with no activity. Remove stale label or comment to revive it. | |
stale-issue-label: stale | |
exempt-issue-labels: "Type: bug" | |
days-before-issue-stale: 60 | |
days-before-pr-stale: 30 | |
days-before-close: -1 | |
days-before-pr-close: -1 |