Stale #2
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: Stale | |
| on: | |
| schedule: | |
| - cron: "30 1 * * *" | |
| workflow_dispatch: | |
| permissions: | |
| contents: read | |
| jobs: | |
| stale: | |
| runs-on: ubuntu-latest | |
| permissions: | |
| issues: write | |
| pull-requests: write | |
| steps: | |
| - uses: actions/stale@v9 | |
| with: | |
| stale-issue-label: ":sleeping: stale" | |
| stale-issue-message: > | |
| This issue has been inactive for 60 days and is now marked as stale. | |
| If this issue is still relevant, please leave a comment to keep it open. | |
| Otherwise, it will be closed in 7 days. | |
| stale-pr-label: ":sleeping: stale" | |
| stale-pr-message: > | |
| This pull request has been inactive for 60 days and is now marked as stale. | |
| If this PR is still relevant, please leave a comment to keep it open. | |
| Otherwise, it will be closed in 7 days. | |
| days-before-stale: 60 | |
| days-before-close: 7 | |
| remove-stale-when-updated: true | |
| repo-token: ${{ secrets.GITHUB_TOKEN }} |