You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
How about if sorting by "CI status" would sort by "time since build failed"? Then clicking that header once would show you all non-failing builds at the top, followed by things that only recently became needs-rebase or failing.
This might need some small database changes, because I'm not sure that we're tracking this info currently for failing builds. We only do so for needs-rebase builds currently afaik.
The text was updated successfully, but these errors were encountered:
This adds a new column to the `CfbotBranch` model: `failing_since`. This
tracks when a patch first started to fail the CI or started requiring a
rebase. This value its primary use is to allow people to sort by the
"CI status" column in the patch list. This allows people to quickly see
what patches are healthy, which require the author to take action, and
which might benefit from a reviewer pinging the author that the patch
has been broken for a while. Non-failing builds are sorted on their CI
build creation time, so patches that are currently running CI are shown
at the top, followed by patches for which CI succeeded most recently.
The values of needs_rebase_since and failing_since are also shown on
hover and on the patch pages.
Fixes#42
Uh oh!
There was an error while loading. Please reload this page.
From a discussion on discord:
This might need some small database changes, because I'm not sure that we're tracking this info currently for failing builds. We only do so for needs-rebase builds currently afaik.
The text was updated successfully, but these errors were encountered: