File tree 2 files changed +21
-9
lines changed
2 files changed +21
-9
lines changed Original file line number Diff line number Diff line change @@ -22,6 +22,13 @@ func NewCmdAdd(f *factory.Factory) *cobra.Command {
22
22
return cmd
23
23
}
24
24
25
+ func ConfigureWithCredentials (f * factory.Factory , org , token string ) error {
26
+ if err := f .Config .SelectOrganization (org ); err != nil {
27
+ return err
28
+ }
29
+ return f .Config .SetTokenForOrg (org , token )
30
+ }
31
+
25
32
func ConfigureRun (f * factory.Factory ) error {
26
33
var org , token string
27
34
nonEmpty := func (s string ) error {
@@ -43,12 +50,5 @@ func ConfigureRun(f *factory.Factory) error {
43
50
return err
44
51
}
45
52
46
- err = f .Config .SelectOrganization (org )
47
- if err != nil {
48
- return err
49
- }
50
-
51
- err = f .Config .SetTokenForOrg (org , token )
52
-
53
- return err
53
+ return ConfigureWithCredentials (f , org , token )
54
54
}
Original file line number Diff line number Diff line change @@ -9,7 +9,11 @@ import (
9
9
)
10
10
11
11
func NewCmdConfigure (f * factory.Factory ) * cobra.Command {
12
- var force bool
12
+ var (
13
+ force bool
14
+ org string
15
+ token string
16
+ )
13
17
14
18
cmd := & cobra.Command {
15
19
Use : "configure" ,
@@ -22,11 +26,19 @@ func NewCmdConfigure(f *factory.Factory) *cobra.Command {
22
26
return errors .New ("API token already configured. You must use --force." )
23
27
}
24
28
29
+ // If flags are provided, use them directly
30
+ if org != "" && token != "" {
31
+ return addCmd .ConfigureWithCredentials (f , org , token )
32
+ }
33
+
34
+ // Otherwise fall back to interactive mode
25
35
return addCmd .ConfigureRun (f )
26
36
},
27
37
}
28
38
29
39
cmd .Flags ().BoolVar (& force , "force" , false , "Force setting a new token" )
40
+ cmd .Flags ().StringVar (& org , "org" , "" , "Organization slug" )
41
+ cmd .Flags ().StringVar (& token , "token" , "" , "API token" )
30
42
31
43
cmd .AddCommand (addCmd .NewCmdAdd (f ))
32
44
You can’t perform that action at this time.
0 commit comments