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

View File

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