workflow: add something to auto-close stale PRs

Signed-off-by: Casey Callendrello <cdc@redhat.com>
This commit is contained in:
Casey Callendrello 2022-03-09 18:04:44 +01:00
parent b8a10bbe11
commit 57c1cb5058

12
.github/workflows/stale.yml vendored Normal file
View File

@ -0,0 +1,12 @@
name: 'Close stale issues and PRs'
on:
schedule:
- cron: '30 1 * * *'
jobs:
stale:
runs-on: ubuntu-latest
steps:
- uses: actions/stale@v4
with:
stale-pr-message: 'This PR has been untouched for too long without an update. It will be closed in 7 days.'