Compare weekly CI report metrics - #11890
Merged
Merged
Conversation
stephanos
commented
Sep 1, 2026
Comment on lines
-132
to
-134
| fmt.Sprintf("*Total Runs:*\n%d", report.TotalRuns), | ||
| fmt.Sprintf("*Failed Runs:*\n%d", report.FailedRuns), | ||
| fmt.Sprintf("*Successful Runs:*\n%d", report.SuccessfulRuns), |
Contributor
Author
There was a problem hiding this comment.
Note: dropping Successful Runs and Total Runs - doesn't add anything when you already have Success Rate and Failed Runs
stephanos
commented
Sep 1, 2026
| } | ||
|
|
||
| // FormatReportForDebug formats the success report for console output | ||
| func FormatReportForDebug(report *DigestReport) string { |
Contributor
Author
There was a problem hiding this comment.
Removed this as it's not very useful IMO.
Contributor
|
Claude finished @stephanos's task in 3m 4s —— View job Reviewed 5 files, 5 findings. |
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
stephanos
commented
Sep 1, 2026
| fmt.Sprintf("*Successful Runs:*\n%d", report.SuccessfulRuns), | ||
| fmt.Sprintf("*Average Duration:*\n%s", formatDuration(report.AverageDuration)), | ||
| fmt.Sprintf("*Median Duration:*\n%s", formatDuration(report.MedianDuration)), | ||
| fmt.Sprintf("*Success Rate:*\n%.1f%% (%s)", report.SuccessRate, |
Contributor
Author
There was a problem hiding this comment.
This is the main change!
chaptersix
approved these changes
Sep 3, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This changes the weekly CI report to show deltas to help clearly see if sth improved or got worse.