stale #216
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
# Mark stale issues and pull requests | |
# cf https://github.com/actions/stale | |
name: stale | |
on: | |
schedule: | |
- cron: "11 1 * * 6" | |
jobs: | |
stale: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/stale@v8 | |
with: | |
repo-token: ${{ secrets.GITHUB_TOKEN }} | |
stale-issue-label: 'no-issue-activity' | |
stale-pr-label: 'no-pr-activity' | |
days-before-stale: 365 | |
days-before-close: 31 | |
stale-issue-message: > | |
This issue is stale (365 days without activity) and will be closed | |
in 31 days unless new activity is seen. Please feel free to re-open | |
it is still a concern, possibly with additional data. | |
stale-pr-message: > | |
This pull request is is stale (365 days without activity) and will | |
be closed in 31 days unless new activity is seen. Please feel free | |
to open a new issue to discuss a fresh approach. |