Stale RFCs #189
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
# https://github.com/actions/stale#usage | |
name: Stale RFCs | |
on: | |
schedule: | |
- cron: '30 1 * * *' | |
jobs: | |
stale: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/stale@v8 | |
with: | |
days-before-issue-stale: 1095 # 365 * 3 | |
days-before-issue-close: 30 | |
stale-issue-message: > | |
This RFC is stale because it has been open for 1095 days with no activity. | |
Contribute a fix or comment on the issue, or it will be closed in 30 days. |