Skip to content

Commit

Permalink
Create close-stale-prs.yml (#33)
Browse files Browse the repository at this point in the history
  • Loading branch information
dbasunag authored Mar 27, 2024
1 parent 50e6dd6 commit 0209afe
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions .github/workflows/close-stale-prs.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
name: 'Close stale issues and PRs'
on:
schedule:
- cron: '30 1 * * *'

jobs:
stale:
runs-on: ubuntu-latest
steps:
- uses: actions/stale@v9
with:
stale-pr-message: 'This PR is stale because it has been open 45 days with no activity. Remove stale label or comment or this will be closed in 15 days.'
close-pr-message: 'This PR was closed becuase it has been stalled for 60 days with no activity.'
days-before-pr-stale: 45
days-before-pr-close: 15

0 comments on commit 0209afe

Please sign in to comment.