Skip to content

Commit

Permalink
workflow: add something to auto-close stale PRs
Browse files Browse the repository at this point in the history
Signed-off-by: Casey Callendrello <cdc@redhat.com>
  • Loading branch information
squeed committed Mar 9, 2022
1 parent b8a10bb commit 57c1cb5
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 57c1cb5

Please sign in to comment.