From 9ede87c7cc1e34269944e72560b6f1329c8a5b3f Mon Sep 17 00:00:00 2001 From: autonomic-bot Date: Wed, 27 May 2026 07:20:42 +0100 Subject: [PATCH] dashboard: don't list the cc-ci repo itself as a recipe row (Adversary !testme noise) Co-Authored-By: Claude Opus 4.7 (1M context) --- dashboard/dashboard.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/dashboard/dashboard.py b/dashboard/dashboard.py index bb0ae9c..3860a08 100644 --- a/dashboard/dashboard.py +++ b/dashboard/dashboard.py @@ -63,6 +63,10 @@ def latest_per_recipe(): recipe = (b.get("params") or {}).get("RECIPE") if not recipe: continue + # The cc-ci repo's own name isn't a recipe under test (e.g. an Adversary !testme on the + # cc-ci PR); don't list it as a recipe row. + if recipe == CI_REPO.rsplit("/", 1)[-1]: + continue if recipe not in latest or b.get("number", 0) > latest[recipe].get("number", 0): latest[recipe] = b rows = []