File tree 3 files changed +5
-4
lines changed
3 files changed +5
-4
lines changed Original file line number Diff line number Diff line change @@ -18,7 +18,7 @@ OPTIONS:
18
18
--project value GitLab project (example: 'gitlab-org/gitlab') [$GITLAB_PROJECT, $CI_PROJECT_PATH]
19
19
--id value The pull/merge ID to process, if not provided as a CLI flag [$CI_MERGE_REQUEST_IID]
20
20
--commit value The git commit sha [$CI_COMMIT_SHA]
21
- --update-pipeline Update the CI pipeline status with progress (default: true) [$SCM_ENGINE_SKIP_PIPELINE ]
21
+ --update-pipeline Update the CI pipeline status with progress (default: true) [$SCM_ENGINE_UPDATE_PIPELINE ]
22
22
--help, -h show help
23
23
24
24
GLOBAL OPTIONS:
Original file line number Diff line number Diff line change 26
26
OPTIONS:
27
27
--webhook-secret value Used to validate received payloads. Sent with the request in the X-Gitlab-Token HTTP header [$SCM_ENGINE_WEBHOOK_SECRET]
28
28
--listen value IP + Port that the HTTP server should listen on (default: "0.0.0.0:3000") [$SCM_ENGINE_LISTEN]
29
- --update-pipeline Update the CI pipeline status with progress (default: true) [$SCM_ENGINE_SKIP_PIPELINE ]
29
+ --update-pipeline Update the CI pipeline status with progress (default: true) [$SCM_ENGINE_UPDATE_PIPELINE ]
30
30
--help, -h show help
31
31
32
32
GLOBAL OPTIONS:
Original file line number Diff line number Diff line change @@ -72,6 +72,7 @@ func main() {
72
72
& cli.BoolFlag {
73
73
Name : cmd .FlagDryRun ,
74
74
Usage : "Dry run, don't actually _do_ actions, just print them" ,
75
+ Value : false ,
75
76
},
76
77
},
77
78
Commands : []* cli.Command {
@@ -110,7 +111,7 @@ func main() {
110
111
Usage : "Update the CI pipeline status with progress" ,
111
112
Value : true ,
112
113
EnvVars : []string {
113
- "SCM_ENGINE_SKIP_PIPELINE " ,
114
+ "SCM_ENGINE_UPDATE_PIPELINE " ,
114
115
},
115
116
},
116
117
},
@@ -140,7 +141,7 @@ func main() {
140
141
Usage : "Update the CI pipeline status with progress" ,
141
142
Value : true ,
142
143
EnvVars : []string {
143
- "SCM_ENGINE_SKIP_PIPELINE " ,
144
+ "SCM_ENGINE_UPDATE_PIPELINE " ,
144
145
},
145
146
},
146
147
},
You can’t perform that action at this time.
0 commit comments