We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f1d9c57 commit a018b45Copy full SHA for a018b45
go.mod
@@ -4,3 +4,5 @@ require (
4
github.com/google/go-cmp v0.2.0
5
github.com/h2non/gock v1.0.9
6
)
7
+
8
+go 1.13
scm/driver/github/repo.go
@@ -203,10 +203,11 @@ func convertHookList(from []*hook) []*scm.Hook {
203
204
func convertHook(from *hook) *scm.Hook {
205
return &scm.Hook{
206
- ID: strconv.Itoa(from.ID),
207
- Active: from.Active,
208
- Target: from.Config.URL,
209
- Events: from.Events,
+ ID: strconv.Itoa(from.ID),
+ Active: from.Active,
+ Target: from.Config.URL,
+ Events: from.Events,
210
+ SkipVerify: from.Config.InsecureSSL == "1",
211
}
212
213
0 commit comments