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:
Kris De Volder
2021-08-10 13:14:29 -07:00
parent a87615f26a
commit 39ac950358
4 changed files with 16 additions and 1 deletions

View File

@@ -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);

View File

@@ -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.

View File

@@ -0,0 +1 @@
*Optional*. Skip SSL verification for git endpoint. Useful for git compatible providers using self-signed SSL certificates.