Add stale workflow for PRs (#8)

This commit is contained in:
Lily Brown 2023-11-08 09:30:19 -08:00 committed by GitHub
parent cdaab6518c
commit e14a058fe7
Signed by: DevComp
GPG key ID: 4AEE18F83AFDEB23

14
.github/workflows/stale.yml vendored Normal file
View file

@ -0,0 +1,14 @@
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