We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 3a7917c + ad9e355 commit 5851870Copy full SHA for 5851870
completers/gh_completer/cmd/action/run.go
@@ -84,6 +84,7 @@ func ActionRunFields() carapace.Action {
84
"status",
85
"conclusion",
86
"event",
87
+ "number",
88
"databaseId",
89
"workflowDatabaseId",
90
"workflowName",
completers/gh_completer/cmd/run_view.go
@@ -32,7 +32,10 @@ func init() {
32
}
33
return carapace.ActionValues()
34
}),
35
- "json": action.ActionRunFields(),
+ "json": carapace.Batch(
36
+ action.ActionRunFields(),
37
+ carapace.ActionValues("jobs"),
38
+ ).ToA(),
39
})
40
41
carapace.Gen(run_viewCmd).PositionalCompletion(
0 commit comments