diff options
author | Profpatsch <mail@profpatsch.de> | 2024-05-13T15·54+0200 |
---|---|---|
committer | Profpatsch <mail@profpatsch.de> | 2024-06-03T19·35+0000 |
commit | 9559ef56e3935618d63bc7b96136ec06db7e9bec (patch) | |
tree | 2fd9184b8e49f5f07c83fc89b0fb7388af524b39 /ops/machines | |
parent | 1b39d5868adb93175202353b910789f323e63ce1 (diff) |
feat(fun/clbot,ops/machines/whitby): filter tvix-dev clbot r/8212
In #tvix-dev, we want to display only CLs that relate to tvix and related projects. So use a pretty dumb allow-list for which CLs to display in that channel. Change-Id: I3ef50b64e3d7fbc27a6690be6a10f1b55c04cd6e Reviewed-on: https://cl.tvl.fyi/c/depot/+/11658 Reviewed-by: flokli <flokli@flokli.de> Reviewed-by: lukegb <lukegb@tvl.fyi> Tested-by: BuildkiteCI
Diffstat (limited to 'ops/machines')
-rw-r--r-- | ops/machines/whitby/default.nix | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/ops/machines/whitby/default.nix b/ops/machines/whitby/default.nix index 41391c8c0b87..4c2fd0f2f533 100644 --- a/ops/machines/whitby/default.nix +++ b/ops/machines/whitby/default.nix @@ -347,7 +347,12 @@ in # Start the Gerrit->IRC bot services.depot.clbot = { enable = true; - channels = [ "#tvix-dev" "#tvl" ]; + channels = { + "#tvl" = { }; + "#tvix-dev" = { + only_display = "tvix,nix-compat,third_party,third-party,3p"; + }; + }; # See //fun/clbot for details. flags = { |