diff options
author | Vincent Ambo <mail@tazj.in> | 2023-11-05T09·46+0300 |
---|---|---|
committer | tazjin <tazjin@tvl.su> | 2023-11-05T10·39+0000 |
commit | 47e34b2c36b24145d7141468a510e18f991ed175 (patch) | |
tree | ce89244f5020009fff6313a16ed5704161d50d8e | |
parent | c1a4c236eff69c4660036d290c4e2cf1380922c0 (diff) |
fix(monorepo-gerrit): fix linking to bugs & CLs in commits r/6945
In some Gerrit version upgrade the syntax of this config element seems to have changed. There's now one less level of escaping, and it no longer produces raw HTML but rather a link. Fixes b/319. Change-Id: I8d86d23e91cb003e950d9a6723bb0a5ee5d80bb0 Reviewed-on: https://cl.tvl.fyi/c/depot/+/9952 Reviewed-by: flokli <flokli@flokli.de> Tested-by: BuildkiteCI
-rw-r--r-- | ops/modules/monorepo-gerrit.nix | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/ops/modules/monorepo-gerrit.nix b/ops/modules/monorepo-gerrit.nix index 059dee57940b..2f7adab3fc27 100644 --- a/ops/modules/monorepo-gerrit.nix +++ b/ops/modules/monorepo-gerrit.nix @@ -87,14 +87,14 @@ in # Auto-link panettone bug links commentlink.panettone = { - match = "b/(\\\\d+)"; - html = "<a href=\"https://b.tvl.fyi/issues/$1\">b/$1</a>"; + match = "b/(\\d+)"; + link = "https://b.tvl.fyi/issues/$1"; }; # Auto-link other CLs commentlink.gerrit = { - match = "cl/(\\\\d+)"; - html = "<a href=\"https://cl.tvl.fyi/$1\">cl/$1</a>"; + match = "cl/(\\d+)"; + link = "https://cl.tvl.fyi/$1"; }; # Configures integration with Keycloak, which then integrates with a |