mirror of
https://github.com/luau-lang/rfcs.git
synced 2025-04-01 17:10:58 +01:00
Add stale workflow for PRs (#8)
This commit is contained in:
parent
cdaab6518c
commit
e14a058fe7
1 changed files with 14 additions and 0 deletions
14
.github/workflows/stale.yml
vendored
Normal file
14
.github/workflows/stale.yml
vendored
Normal 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
|
Loading…
Add table
Reference in a new issue