dashboard: don't list the cc-ci repo itself as a recipe row (Adversary !testme noise)
All checks were successful
continuous-integration/drone/push Build is passing

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
This commit is contained in:
2026-05-27 07:20:42 +01:00
parent 60d917646b
commit 9ede87c7cc

View File

@ -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 = []