-
Notifications
You must be signed in to change notification settings - Fork 366
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
Option to ignore new comments on stale issues #470
Comments
I think it's what you need #390. |
I don't think that would address this issue. The problem I'm running into is that even when the stale label is left applied, issues are not being closed. |
Having looked through #390, I don't think it will address this issue. It almost does, but not quite. In our case, we do not want Stale to remove the stale label (the changes in #390 assume |
Helping to close actions#441, actions#470, actions#435? Closes actions#390 due to no activity
Helping to close actions#441, actions#470, actions#435? Closes actions#390 due to no activity BREAKING CHANGES: the options related to remove-stale-when-updated will only check the updates, not the comment. It is only impactint the configurations using the value at false
Helping to close actions#441, actions#470, actions#435? Closes actions#390 due to no activity BREAKING CHANGES: the options related to remove-stale-when-updated will only check the updates, not the comment. It is only impactint the configurations using the value at false
Helping to close actions#441, actions#470, actions#435? Closes actions#390 due to no activity BREAKING CHANGES: the options related to remove-stale-when-updated will only check the updates, not the comment. It is only impactint the configurations using the value at false
* feat(options): add new options to avoid stale based on comments Helping to close #441, #470, #435? Closes #390 due to no activity BREAKING CHANGES: the options related to remove-stale-when-updated will only check the updates, not the comment. It is only impactint the configurations using the value at false * style(readme): fix table syntax due to rebase * docs(readme): add permissions only for the new options
Helping to close actions#441, actions#470, actions#435? Closes actions#390 due to no activity BREAKING CHANGES: the options related to remove-stale-when-updated will only check the updates, not the comment. It is only impactint the configurations using the value at false
Helping to close actions#441, actions#470, actions#435? Closes actions#390 due to no activity BREAKING CHANGES: the options related to remove-stale-when-updated will only check the updates, not the comment. It is only impactint the configurations using the value at false
This issue is stale because it has been open 30 days with no activity. Remove stale label or comment or this will be closed in 5 days |
up |
Helping to close actions#441, actions#470, actions#435? Closes actions#390 due to no activity BREAKING CHANGES: the options related to remove-stale-when-updated will only check the updates, not the comment. It is only impactint the configurations using the value at false
This issue is stale because it has been open 30 days with no activity. Remove stale label or comment or this will be closed in 5 days |
up |
The irony, it burns. 😆 |
This issue is stale because it has been open 30 days with no activity. Remove stale label or comment or this will be closed in 5 days |
up |
This issue is stale because it has been open 30 days with no activity. Remove stale label or comment or this will be closed in 5 days |
up |
This issue is stale because it has been open 30 days with no activity. Remove stale label or comment or this will be closed in 5 days |
The problem
Often when an issue is marked stale, it prompts the OP to post "bump" comments to avoid having the issue marked as stale (undermining Stale's entire purpose). We can set
remove-stale-when-updated
to false to prevent the automatic removal of the stale label, however Stale will not (as far as I can tell) proceed with closing an issue that has received at least one comment since the stale label was applied.(Our workflow is for a maintainer to review new comments on stale issues, and to manually remove the stale label as appropriate.)
Below is an example:
I believe the relevant logic is here: Because
hasComments
is true, the issue won't be closed.The solution
At a glance, I see two potential solutions:
remove-stale-when-updated
whether to close issues with both a stale label and comments: If false, assume that we should close a stale issue even if it has a comment.ignore-stale-comments
) to explicitly control this behavior.The text was updated successfully, but these errors were encountered: