File tree Expand file tree Collapse file tree 2 files changed +4
-0
lines changed Expand file tree Collapse file tree 2 files changed +4
-0
lines changed Original file line number Diff line number Diff line change @@ -32,6 +32,7 @@ func Run(argv []string) error {
32
32
Aliases : []string {"c" },
33
33
Usage : "Path to configuration file" ,
34
34
Destination : & configPath ,
35
+ EnvVars : []string {"HATCHERY_CONFIG" },
35
36
Required : true ,
36
37
},
37
38
}, logger .Flags (), sentry .Flags ()),
Original file line number Diff line number Diff line change @@ -33,18 +33,21 @@ func cmdExec(rt *runtime) *cli.Command {
33
33
Name : "id" ,
34
34
Aliases : []string {"i" },
35
35
Usage : "Action ID" ,
36
+ EnvVars : []string {"HATCHERY_EXEC_ID" },
36
37
Destination : & actionIDs ,
37
38
},
38
39
& cli.BoolFlag {
39
40
Name : "all" ,
40
41
Aliases : []string {"a" },
41
42
Usage : "Execute all actions" ,
43
+ EnvVars : []string {"HATCHERY_EXEC_ALL" },
42
44
Destination : & allAction ,
43
45
},
44
46
& cli.BoolFlag {
45
47
Name : "dry-run" ,
46
48
Aliases : []string {"d" },
47
49
Usage : "Dry run" ,
50
+ EnvVars : []string {"HATCHERY_EXEC_DRY_RUN" },
48
51
Destination : & dryRun ,
49
52
},
50
53
},
You can’t perform that action at this time.
0 commit comments