Merge pull request #717 from squeed/auto-close-stale

workflow: add something to auto-close stale PRs
This commit is contained in:
Casey Callendrello
2022-03-16 16:58:48 +01:00
committed by GitHub

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.'