rfcs/.github/workflows/stale.yml
2023-11-08 09:30:19 -08:00

14 lines
354 B
YAML

name: 'Close stale PRs'
on:
schedule:
- cron: '0 0 * * *'
jobs:
stale:
runs-on: ubuntu-latest
steps:
- uses: actions/stale@v8
with:
stale-pr-message: 'This RFC has been stale for 30 days. It will be closed in 30 days if no further activity occurs.'
days-before-stale: 30
days-before-close: 30