@@ -20,7 +20,7 @@ type Configuration struct {
20
20
CliName string // override with MOB_CLI_NAME
21
21
RemoteName string // override with MOB_REMOTE_NAME
22
22
WipCommitMessage string // override with MOB_WIP_COMMIT_MESSAGE
23
- StartCISkipCommitMessage string // override with MOB_START_COMMIT_MESSAGE
23
+ StartCommitMessage string // override with MOB_START_COMMIT_MESSAGE
24
24
GitHooksEnabled bool // override with MOB_GIT_HOOKS_ENABLED
25
25
RequireCommitMessage bool // override with MOB_REQUIRE_COMMIT_MESSAGE
26
26
VoiceCommand string // override with MOB_VOICE_COMMAND
@@ -74,7 +74,7 @@ func Config(c Configuration) {
74
74
say .Say ("MOB_CLI_NAME" + "=" + quote (c .CliName ))
75
75
say .Say ("MOB_REMOTE_NAME" + "=" + quote (c .RemoteName ))
76
76
say .Say ("MOB_WIP_COMMIT_MESSAGE" + "=" + quote (c .WipCommitMessage ))
77
- say .Say ("MOB_START_COMMIT_MESSAGE" + "=" + quote (c .StartCISkipCommitMessage ))
77
+ say .Say ("MOB_START_COMMIT_MESSAGE" + "=" + quote (c .StartCommitMessage ))
78
78
say .Say ("MOB_GIT_HOOKS_ENABLED" + "=" + strconv .FormatBool (c .GitHooksEnabled ))
79
79
say .Say ("MOB_REQUIRE_COMMIT_MESSAGE" + "=" + strconv .FormatBool (c .RequireCommitMessage ))
80
80
say .Say ("MOB_VOICE_COMMAND" + "=" + quote (c .VoiceCommand ))
@@ -174,7 +174,7 @@ func GetDefaultConfiguration() Configuration {
174
174
CliName : "mob" ,
175
175
RemoteName : "origin" ,
176
176
WipCommitMessage : "mob next [ci-skip] [ci skip] [skip ci]" ,
177
- StartCISkipCommitMessage : "mob start [ci-skip] [ci skip] [skip ci]" ,
177
+ StartCommitMessage : "mob start [ci-skip] [ci skip] [skip ci]" ,
178
178
GitHooksEnabled : false ,
179
179
VoiceCommand : voiceCommand ,
180
180
VoiceMessage : "mob next" ,
@@ -230,7 +230,7 @@ func parseUserConfiguration(configuration Configuration, path string) Configurat
230
230
case "MOB_WIP_COMMIT_MESSAGE" :
231
231
setUnquotedString (& configuration .WipCommitMessage , key , value )
232
232
case "MOB_START_COMMIT_MESSAGE" :
233
- setUnquotedString (& configuration .StartCISkipCommitMessage , key , value )
233
+ setUnquotedString (& configuration .StartCommitMessage , key , value )
234
234
case "MOB_GIT_HOOKS_ENABLED" :
235
235
setBoolean (& configuration .GitHooksEnabled , key , value )
236
236
case "MOB_REQUIRE_COMMIT_MESSAGE" :
@@ -321,7 +321,7 @@ func parseProjectConfiguration(configuration Configuration, path string) Configu
321
321
case "MOB_WIP_COMMIT_MESSAGE" :
322
322
setUnquotedString (& configuration .WipCommitMessage , key , value )
323
323
case "MOB_START_COMMIT_MESSAGE" :
324
- setUnquotedString (& configuration .StartCISkipCommitMessage , key , value )
324
+ setUnquotedString (& configuration .StartCommitMessage , key , value )
325
325
case "MOB_GIT_HOOKS_ENABLED" :
326
326
setBoolean (& configuration .GitHooksEnabled , key , value )
327
327
case "MOB_REQUIRE_COMMIT_MESSAGE" :
@@ -417,7 +417,7 @@ func parseEnvironmentVariables(configuration Configuration) Configuration {
417
417
418
418
setStringFromEnvVariable (& configuration .RemoteName , "MOB_REMOTE_NAME" )
419
419
setStringFromEnvVariable (& configuration .WipCommitMessage , "MOB_WIP_COMMIT_MESSAGE" )
420
- setStringFromEnvVariable (& configuration .StartCISkipCommitMessage , "MOB_START_COMMIT_MESSAGE" )
420
+ setStringFromEnvVariable (& configuration .StartCommitMessage , "MOB_START_COMMIT_MESSAGE" )
421
421
setBoolFromEnvVariable (& configuration .GitHooksEnabled , "MOB_GIT_HOOKS_ENABLED" )
422
422
setBoolFromEnvVariable (& configuration .RequireCommitMessage , "MOB_REQUIRE_COMMIT_MESSAGE" )
423
423
setOptionalStringFromEnvVariable (& configuration .VoiceCommand , "MOB_VOICE_COMMAND" )
0 commit comments