ci: show the retries count on flaky tests (#21325)

Co-authored-by: 190n <ben@bun.sh>
Co-authored-by: taylor.fish <contact@taylor.fish>
This commit is contained in:
Meghan Denny
2025-07-23 18:11:18 -08:00
committed by GitHub
parent 75027e9616
commit ea12cb5801
2 changed files with 21 additions and 8 deletions

View File

@@ -2702,7 +2702,14 @@ export function reportAnnotationToBuildKite({ context, label, content, style = "
source: "buildkite",
level: "error",
});
reportAnnotationToBuildKite({ label: `${label}-error`, content: errorContent, attempt: attempt + 1 });
reportAnnotationToBuildKite({
context,
label: `${label}-error`,
content: errorContent,
style,
priority,
attempt: attempt + 1,
});
}
/**