You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
LOGGER.log(Level.FINEST, "Comparing notified uri {0} against repository uri {1} in project {2}", newObject[]{uri, remoteURL, project.getFullDisplayName()});
403
+
}
400
404
if (looselyMatches(uri, remoteURL)) {
405
+
if (LOGGER.isLoggable(Level.FINER)) {
406
+
LOGGER.log(Level.FINER, "Repository uri {0} matches notified uri {1} in project {2}", newObject[]{remoteURL, uri, project.getFullDisplayName()});
407
+
}
401
408
repositoryMatches = true;
402
409
matchedURL = remoteURL;
403
410
break;
404
411
}
405
412
}
406
413
407
-
if (!repositoryMatches || git.getExtensions().get(IgnoreNotifyCommit.class)!=null) {
414
+
if (!repositoryMatches) {
415
+
if (LOGGER.isLoggable(Level.FINER)) {
416
+
LOGGER.log(Level.FINER, "No matching repository uri for notified uri {0} in project {1}", newObject[]{uri, project.getFullDisplayName()});
417
+
}
418
+
continue;
419
+
}
420
+
421
+
if (git.getExtensions().get(IgnoreNotifyCommit.class)!=null) {
422
+
if (LOGGER.isLoggable(Level.FINER)) {
423
+
LOGGER.log(Level.FINER, "Ignoring notified uri {0} match in project {1} due to ignore notify commit setting", newObject[]{uri, project.getFullDisplayName()});
LOGGER.log(Level.FINER, "No matching branch spec for modified branches {0} in project {1}", newObject[]{Arrays.toString(branches), project.getFullDisplayName()});
468
+
}
469
+
continue;
470
+
}
446
471
urlFound = true;
447
472
if (!(projectinstanceofParameterizedJobMixIn.ParameterizedJob<?,?> job && job.isDisabled())) {
448
473
//JENKINS-30178 Add default parameters defined in the job
0 commit comments