mirror of
https://github.com/woodpecker-ci/woodpecker.git
synced 2024-12-24 10:07:21 +02:00
Merge pull request #121 from notandy/github_pong
add github ping hook handler
This commit is contained in:
commit
e202741809
@ -17,6 +17,11 @@ import (
|
|||||||
// attempts to trigger a build.
|
// attempts to trigger a build.
|
||||||
func Hook(w http.ResponseWriter, r *http.Request) error {
|
func Hook(w http.ResponseWriter, r *http.Request) error {
|
||||||
|
|
||||||
|
// handle github ping
|
||||||
|
if r.Header.Get("X-Github-Event") == "ping" {
|
||||||
|
return RenderText(w, http.StatusText(http.StatusOK), http.StatusOK)
|
||||||
|
}
|
||||||
|
|
||||||
// if this is a pull request route
|
// if this is a pull request route
|
||||||
// to a different handler
|
// to a different handler
|
||||||
if r.Header.Get("X-Github-Event") == "pull_request" {
|
if r.Header.Get("X-Github-Event") == "pull_request" {
|
||||||
|
Loading…
Reference in New Issue
Block a user