Stale #3
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: "0 5 * * 1" | |
| permissions: | |
| issues: write | |
| pull-requests: write | |
| jobs: | |
| stale: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/stale@v10 | |
| with: | |
| stale-issue-message: >- | |
| This issue has been marked as stale because it has had no recent activity. | |
| If it is still relevant, reply with an update and it will stay open. | |
| stale-pr-message: >- | |
| This pull request has been marked as stale because it has had no recent activity. | |
| If work is still in progress, leave an update and it will stay open. | |
| days-before-stale: 30 | |
| days-before-close: 14 | |
| stale-issue-label: stale | |
| stale-pr-label: stale |