Remove stale when updated without comment (#717)
The existing logic for `remove-stale-when-updated` only considers presence of comments, ignoring the value of `issueHasUpdate`. This commits fixes it so it follows the documented behaviour for that setting. Fixes #715
This commit is contained in:
parent
6b7f9717b7
commit
29e800e1c8
|
@ -741,9 +741,9 @@ class IssuesProcessor {
|
||||||
}
|
}
|
||||||
// Should we un-stale this issue?
|
// Should we un-stale this issue?
|
||||||
if (shouldRemoveStaleWhenUpdated &&
|
if (shouldRemoveStaleWhenUpdated &&
|
||||||
issueHasComments &&
|
(issueHasUpdate || issueHasComments) &&
|
||||||
!issue.markedStaleThisRun) {
|
!issue.markedStaleThisRun) {
|
||||||
issueLogger.info(`Remove the stale label since the $$type has a comment and the workflow should remove the stale label when updated`);
|
issueLogger.info(`Remove the stale label since the $$type has been updated and the workflow should remove the stale label when updated`);
|
||||||
yield this._removeStaleLabel(issue, staleLabel);
|
yield this._removeStaleLabel(issue, staleLabel);
|
||||||
// Are there labels to remove or add when an issue is no longer stale?
|
// Are there labels to remove or add when an issue is no longer stale?
|
||||||
yield this._removeLabelsWhenUnstale(issue, labelsToRemoveWhenUnstale);
|
yield this._removeLabelsWhenUnstale(issue, labelsToRemoveWhenUnstale);
|
||||||
|
|
|
@ -674,11 +674,11 @@ export class IssuesProcessor {
|
||||||
// Should we un-stale this issue?
|
// Should we un-stale this issue?
|
||||||
if (
|
if (
|
||||||
shouldRemoveStaleWhenUpdated &&
|
shouldRemoveStaleWhenUpdated &&
|
||||||
issueHasComments &&
|
(issueHasUpdate || issueHasComments) &&
|
||||||
!issue.markedStaleThisRun
|
!issue.markedStaleThisRun
|
||||||
) {
|
) {
|
||||||
issueLogger.info(
|
issueLogger.info(
|
||||||
`Remove the stale label since the $$type has a comment and the workflow should remove the stale label when updated`
|
`Remove the stale label since the $$type has been updated and the workflow should remove the stale label when updated`
|
||||||
);
|
);
|
||||||
await this._removeStaleLabel(issue, staleLabel);
|
await this._removeStaleLabel(issue, staleLabel);
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue