Skip to content

Commit

Permalink
Merge pull request #717 from squeed/auto-close-stale
Browse files Browse the repository at this point in the history
workflow: add something to auto-close stale PRs
  • Loading branch information
squeed authored Mar 16, 2022
2 parents b8a10bb + 57c1cb5 commit 292f188
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions .github/workflows/stale.yml
Original file line number Diff line number Diff line change
@@ -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.'

0 comments on commit 292f188

Please sign in to comment.