Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Close stale PRs after 60 days of inactivity #3222

Closed
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/stalled.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@ jobs:
with:
repo-token: ${{ steps.github_app_token.outputs.token }}
stale-pr-label: 'stalled'
stale-pr-message: 'This PR is stalled because it has been open for 30 days with no activity.'
stale-pr-message: 'This PR is stalled because it has been open for 30 days with no activity. It will be automatically closed after 60 days of inactivity.'
days-before-pr-stale: 30
days-before-issue-stale: -1
days-before-pr-close: -1

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Just being curious, was this not even enabled before? Why it was -1 here?

days-before-pr-close: 60
days-before-issue-close: -1
Loading