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
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:
@ -63,6 +63,10 @@ def latest_per_recipe():
|
|||||||
recipe = (b.get("params") or {}).get("RECIPE")
|
recipe = (b.get("params") or {}).get("RECIPE")
|
||||||
if not recipe:
|
if not recipe:
|
||||||
continue
|
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):
|
if recipe not in latest or b.get("number", 0) > latest[recipe].get("number", 0):
|
||||||
latest[recipe] = b
|
latest[recipe] = b
|
||||||
rows = []
|
rows = []
|
||||||
|
|||||||
Reference in New Issue
Block a user