Skip to content
This repository was archived by the owner on Dec 10, 2024. It is now read-only.

Commit d720e55

Browse files
authored
Merge pull request #1885 from jmajaca/jmajaca-jenkins-integration-enable-ssl-verification
Jenkins integration enable ssl verification
2 parents fbde059 + 3b8b8b1 commit d720e55

File tree

1 file changed

+8
-7
lines changed

1 file changed

+8
-7
lines changed

services.go

+8-7
Original file line numberDiff line numberDiff line change
@@ -899,13 +899,14 @@ func (s *ServicesService) GetJenkinsCIService(pid interface{}, options ...Reques
899899
// GitLab API docs:
900900
// https://docs.gitlab.com/ee/api/services.html#jenkins-ci
901901
type SetJenkinsCIServiceOptions struct {
902-
URL *string `url:"jenkins_url,omitempty" json:"jenkins_url,omitempty"`
903-
ProjectName *string `url:"project_name,omitempty" json:"project_name,omitempty"`
904-
Username *string `url:"username,omitempty" json:"username,omitempty"`
905-
Password *string `url:"password,omitempty" json:"password,omitempty"`
906-
PushEvents *bool `url:"push_events,omitempty" json:"push_events,omitempty"`
907-
MergeRequestsEvents *bool `url:"merge_requests_events,omitempty" json:"merge_requests_events,omitempty"`
908-
TagPushEvents *bool `url:"tag_push_events,omitempty" json:"tag_push_events,omitempty"`
902+
URL *string `url:"jenkins_url,omitempty" json:"jenkins_url,omitempty"`
903+
EnableSSLVerification *bool `url:"enable_ssl_verification,omitempty" json:"enable_ssl_verification,omitempty"`
904+
ProjectName *string `url:"project_name,omitempty" json:"project_name,omitempty"`
905+
Username *string `url:"username,omitempty" json:"username,omitempty"`
906+
Password *string `url:"password,omitempty" json:"password,omitempty"`
907+
PushEvents *bool `url:"push_events,omitempty" json:"push_events,omitempty"`
908+
MergeRequestsEvents *bool `url:"merge_requests_events,omitempty" json:"merge_requests_events,omitempty"`
909+
TagPushEvents *bool `url:"tag_push_events,omitempty" json:"tag_push_events,omitempty"`
909910
}
910911

911912
// SetJenkinsCIService sets Jenkins service for a project

0 commit comments

Comments
 (0)