File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -70,7 +70,7 @@ func main() {
70
70
}
71
71
72
72
// HandleRelease handles GitHub release events
73
- func HandleRelease (payload interface {}) {
73
+ func HandleRelease (payload interface {}, header webhooks . Header ) {
74
74
75
75
fmt.Println (" Handling Release" )
76
76
@@ -86,7 +86,7 @@ func HandleRelease(payload interface{}) {
86
86
}
87
87
88
88
// HandlePullRequest handles GitHub pull_request events
89
- func HandlePullRequest (payload interface {}) {
89
+ func HandlePullRequest (payload interface {}, header webhooks . Header ) {
90
90
91
91
fmt.Println (" Handling Pull Request" )
92
92
@@ -125,7 +125,7 @@ func main() {
125
125
}
126
126
127
127
// HandleMultiple handles multiple GitHub events
128
- func HandleMultiple (payload interface {}) {
128
+ func HandleMultiple (payload interface {}, header webhooks . Header ) {
129
129
130
130
fmt.Println (" Handling Payload.." )
131
131
You can’t perform that action at this time.
0 commit comments