[cv][git-cl] treat autogenerated CV comments just like CQ.

R=ehmaldonado

Change-Id: If06db13e41a07786aa5a244e95aa3911d9367d6d
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/tools/depot_tools/+/3010275
Auto-Submit: Andrii Shyshkalov <tandrii@google.com>
Commit-Queue: Josip Sokcevic <sokcevic@google.com>
Reviewed-by: Josip Sokcevic <sokcevic@google.com>
diff --git a/git_cl.py b/git_cl.py
index ff66b68..349f35e 100755
--- a/git_cl.py
+++ b/git_cl.py
@@ -1804,8 +1804,9 @@
     messages = sorted(data.get('messages', []), key=lambda m: m.get('date'))
     while messages:
       m = messages.pop()
-      if m.get('tag', '').startswith('autogenerated:cq:'):
-        # Ignore replies from CQ.
+      if (m.get('tag', '').startswith('autogenerated:cq') or
+          m.get('tag', '').startswith('autogenerated:cv')):
+        # Ignore replies from LUCI CV/CQ.
         continue
       if m.get('author', {}).get('_account_id') == owner:
         # Most recent message was by owner.