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
@@ -123,7 +124,7 @@ Format of the action JSON files:
123
124
124
125
includeUnsupportedFlag=flagSet.Bool("include-unsupported", false, "When specified, also repos from unsupported codehosts are processed. Those can be created once the integration is done.")
125
126
126
-
apiFlags=newAPIFlags(flagSet)
127
+
apiFlags=api.NewFlags(flagSet)
127
128
)
128
129
129
130
handler:=func(args []string) error {
@@ -212,6 +213,7 @@ Format of the action JSON files:
fileFlag=flagSet.String("f", "-", "The action file. If not given or '-' standard input is used. (Required)")
37
38
includeUnsupportedFlag=flagSet.Bool("include-unsupported", false, "When specified, also repos from unsupported codehosts are processed. Those can be created once the integration is done.")
39
+
apiFlags=api.NewFlags(flagSet)
38
40
)
39
41
40
42
handler:=func(args []string) error {
@@ -71,6 +73,7 @@ Examples:
71
73
}
72
74
73
75
ctx:=context.Background()
76
+
client:=cfg.apiClient(apiFlags, flagSet.Output())
74
77
75
78
if*verbose {
76
79
log.Printf("# scopeQuery in action definition: %s\n", action.ScopeQuery)
0 commit comments