From acc313c5d9daa23e439677d2af5ae2e2915f153e Mon Sep 17 00:00:00 2001 From: Pedro Guerra <5890852+PedroGuerraPT@users.noreply.github.com> Date: Thu, 12 Mar 2026 17:30:14 +0000 Subject: [PATCH 1/2] fix: improve empty state message for ci run list --- pkg/cmd/ci/run.go | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/pkg/cmd/ci/run.go b/pkg/cmd/ci/run.go index 503421ed..a4a9322a 100644 --- a/pkg/cmd/ci/run.go +++ b/pkg/cmd/ci/run.go @@ -518,7 +518,11 @@ func NewCmdRunList() *cobra.Command { } if len(runs) == 0 { - fmt.Println("No runs found.") + if len(statuses) == 0 { + fmt.Println("No queued or active runs found. Use --status to view other runs.") + } else { + fmt.Println("No runs found.") + } return nil } From ee0600a8dfa92dbdc220827a32dca1758d88b3b5 Mon Sep 17 00:00:00 2001 From: Pedro Guerra <5890852+PedroGuerraPT@users.noreply.github.com> Date: Thu, 12 Mar 2026 17:59:57 +0000 Subject: [PATCH 2/2] Update message for no matching runs found --- pkg/cmd/ci/run.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/cmd/ci/run.go b/pkg/cmd/ci/run.go index a4a9322a..816f2fb7 100644 --- a/pkg/cmd/ci/run.go +++ b/pkg/cmd/ci/run.go @@ -521,7 +521,7 @@ func NewCmdRunList() *cobra.Command { if len(statuses) == 0 { fmt.Println("No queued or active runs found. Use --status to view other runs.") } else { - fmt.Println("No runs found.") + fmt.Println("No matching runs found.") } return nil }