diff --git a/.github/workflows/stale.yml b/.github/workflows/stale.yml new file mode 100644 index 0000000..6f380fa --- /dev/null +++ b/.github/workflows/stale.yml @@ -0,0 +1,16 @@ +# 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 + 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 7 days.