feat(site): display build logs on workspace transitioning statuses (#8397)

This commit is contained in:
Bruno Quaresma
2023-07-10 17:47:39 -03:00
committed by GitHub
parent b7641b219e
commit d896b74fa2
20 changed files with 426 additions and 133 deletions

View File

@ -1763,6 +1763,7 @@ const (
// oidc.
ExperimentConvertToOIDC Experiment = "convert-to-oidc"
ExperimentWorkspaceBuildLogsUI Experiment = "workspace_build_logs_ui"
// Add new experiments here!
// ExperimentExample Experiment = "example"
)
@ -1771,7 +1772,9 @@ const (
// users to opt-in to via --experimental='*'.
// Experiments that are not ready for consumption by all users should
// not be included here and will be essentially hidden.
var ExperimentsAll = Experiments{}
var ExperimentsAll = Experiments{
ExperimentWorkspaceBuildLogsUI,
}
// Experiments is a list of experiments that are enabled for the deployment.
// Multiple experiments may be enabled at the same time.