mirror of
https://github.com/luau-lang/rfcs.git
synced 2025-04-03 01:50:59 +01:00
14 lines
354 B
YAML
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
|