Title: [295599] trunk/Tools/CISupport/ews-build/steps.py
Revision
295599
Author
jbed...@apple.com
Date
2022-06-16 11:06:45 -0700 (Thu, 16 Jun 2022)

Log Message

[Merge-Queue] Validate reviewers in commit message (Follow-up)
https://bugs.webkit.org/show_bug.cgi?id=240718
<rdar://problem/93665771>

Unreviewed infrastructure fix.

* Tools/CISupport/ews-build/steps.py:
(ValidateCommitMessage.run): Allow for unreviewed changes.

Modified Paths

Diff

Modified: trunk/Tools/CISupport/ews-build/steps.py (295598 => 295599)


--- trunk/Tools/CISupport/ews-build/steps.py	2022-06-16 17:32:25 UTC (rev 295598)
+++ trunk/Tools/CISupport/ews-build/steps.py	2022-06-16 18:06:45 UTC (rev 295599)
@@ -4970,7 +4970,7 @@
             "git log {} ^{} | grep -q '\\({}\\)' || echo 'No reviewer information in commit message'".format(
                 head_ref, base_ref,
                 '\\|'.join(self.REVIEWED_STRINGS),
-            ), "git log {} ^{} | grep '\\({}\\)'".format(
+            ), "git log {} ^{} | grep '\\({}\\)' || true".format(
                 head_ref, base_ref,
                 '\\|'.join(self.REVIEWED_STRINGS[:-1]),
             ),
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to