about summary refs log tree commit diff
path: root/ops/gerrit-tvl
diff options
context:
space:
mode:
Diffstat (limited to 'ops/gerrit-tvl')
-rw-r--r--ops/gerrit-tvl/static/tvl.js5
1 files changed, 2 insertions, 3 deletions
diff --git a/ops/gerrit-tvl/static/tvl.js b/ops/gerrit-tvl/static/tvl.js
index 470eb79d66..2f8db90945 100644
--- a/ops/gerrit-tvl/static/tvl.js
+++ b/ops/gerrit-tvl/static/tvl.js
@@ -41,8 +41,8 @@ const tvlChecksProvider = {
     }
 
     const params = {
-      // besadii uses the patchset ref as the branch name.
-      branch: `refs/changes/${changeNumber.toString().slice(-2)}/${changeNumber}/${patchsetNumber}`,
+      // besadii groups different patchsets of the same CL under this fake ref
+      branch: `cl/${changeNumber.toString()}`,
     };
     const url = `https://api.buildkite.com/v2/organizations/tvl/pipelines/depot/builds?${encodeParams(params)}`;
     const resp = await fetch(url, {
@@ -115,7 +115,6 @@ const tvlChecksProvider = {
           checkRun.results = [result];
         }
 
-        console.log(checkRun);
         runs.push(checkRun);
       }
     }