Skip to content

Commit

Permalink
Stale Bot Fix - Removal of automatic closing of stale issues and PRs (g…
Browse files Browse the repository at this point in the history
…oogle#416)

- Removal of automatic closing items of stale issues and PRs. 
- Change of stale label for PRs from 23 to 90 days
  • Loading branch information
eliasmbd authored Jan 4, 2024
1 parent eee97f7 commit e191880
Showing 1 changed file with 5 additions and 9 deletions.
14 changes: 5 additions & 9 deletions .github/workflows/stale.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name: 'Close stale issues and PRs'
on:
schedule:
- cron: '0 0 * * *'
- cron: '0 4 * * *'

permissions:
issues: write
Expand All @@ -11,15 +11,11 @@ jobs:
stale:
runs-on: ubuntu-latest
steps:
- uses: actions/stale@v4
- uses: actions/stale@v9.0.0
with:
stale-issue-message: 'This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions.'
close-issue-message: 'This issue has been closed due to inactivity. Issues can always be reopened after they have been closed.'
stale-issue-message: 'This issue has been automatically marked as stale because it has not had recent activity. It may be closed manually after one month of inactivity. Thank you for your contributions.'
stale-issue-label: 'stale'
days-before-issue-stale: 365
days-before-issue-close: 14
stale-pr-message: 'This pull request has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions.'
close-pr-message: 'This pull request has been closed due to inactivity. Pull requests can always be reopened after they have been closed. See the Specification Amendment Process.'
stale-pr-message: 'This pull request has been automatically marked as stale because it has not had recent activity. It may be closed manually after one month of inactivity. Thank you for your contributions.'
stale-pr-label: 'stale'
days-before-pr-stale: 23
days-before-pr-close: 7
days-before-pr-stale: 90

0 comments on commit e191880

Please sign in to comment.