We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7d9e7f0 commit f28ec2dCopy full SHA for f28ec2d
lib/pr_checker.js
@@ -196,7 +196,7 @@ class PRChecker {
196
if (timeLeftSingle < 0) {
197
return true;
198
}
199
- timeLeftMulti = timeLeftMulti < 0 ? 0 : timeLeftMulti;
+ timeLeftMulti = timeLeftMulti < 0 || isFastTracked ? 0 : timeLeftMulti;
200
cli.error(`This PR needs to wait ${timeLeftSingle} more hours to land ` +
201
`(or ${timeLeftMulti} hours if there is one more approval)`);
202
return false;
0 commit comments