Index: PRESUBMIT.py |
diff --git a/PRESUBMIT.py b/PRESUBMIT.py |
index d62249a6059ce5aea4c6c210fdd97bd285b3d1ca..ae5a2183162c81026e8e382e6792b75fe362cc8c 100644 |
--- a/PRESUBMIT.py |
+++ b/PRESUBMIT.py |
@@ -254,6 +254,11 @@ def _CheckLGTMsForPublicAPI(input_api, output_api): |
# It is a revert CL, ignore the public api owners check. |
return results |
+ if re.search(r'^COMMIT=false$', issue_properties['description'], re.M): |
+ # Ignore public api owners check for COMMIT=false CLs since they are not |
+ # going to be committed. |
+ return results |
+ |
match = re.search(r'^TBR=(.*)$', issue_properties['description'], re.M) |
if match: |
tbr_entries = match.group(1).strip().split(',') |