Add support for skip_ssl_verification and commit_message to SemverGit
See: https://github.com/spring-projects/sts4/issues/655
This commit is contained in:
@@ -734,6 +734,8 @@ public class PipelineYmlSchema implements YamlSchema {
|
||||
addProp(git_source, "username", t_ne_string);
|
||||
addProp(git_source, "password", t_ne_string);
|
||||
addProp(git_source, "git_user", t_ne_string);
|
||||
addProp(git_source, "commit_message", t_ne_string);
|
||||
addProp(git_source, "skip_ssl_verification", t_boolean);
|
||||
|
||||
AbstractType s3_source = f.ybean("S3SemverSource");
|
||||
addProp(s3_source, "bucket", t_ne_string).isPrimary(true);
|
||||
|
||||
@@ -0,0 +1 @@
|
||||
*Optional*. If specified overides the default commit message with the one provided. The user can use `%version%` and `%file%` to get them replaced automatically with the correct values.
|
||||
@@ -0,0 +1 @@
|
||||
*Optional*. Skip SSL verification for git endpoint. Useful for git compatible providers using self-signed SSL certificates.
|
||||
Reference in New Issue
Block a user