This commit is contained in:
James 2020-10-17 11:46:56 +01:00
parent 928557dafe
commit b02fdf8220

View File

@ -45,7 +45,7 @@ $callback = function($issue) use ($staleLabel, $keepLabel) {
} }
//if activity sice added (60sec grace) then remove label //if activity sice added (60sec grace) then remove label
if($updatedTime>($staleTime-60)){ if($updatedTime>($staleTime+60)){
$issue->removeLabel($staleLabel); $issue->removeLabel($staleLabel);
return; return;
} }