Skip to content

Commit 694eb76

Browse files
committed
More container fixes
1 parent 0650b15 commit 694eb76

2 files changed

Lines changed: 2 additions & 1 deletion

File tree

Dockerfile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ RUN apk add --no-cache \
2020
curl \
2121
bash \
2222
tar \
23+
xz \
2324
su-exec
2425

2526
ENV NODE_VERSION=20.14.0

server/webserver.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ func handleWebhook(w http.ResponseWriter, req *http.Request) {
107107
eventType := req.Header.Get("X-GitHub-Event")
108108

109109
// GitHub ping when first adding the webhook
110-
if eventType == "ping" || eventType == "created" {
110+
if eventType == "ping" || eventType == "create" {
111111
w.WriteHeader(http.StatusOK)
112112
return
113113
}

0 commit comments

Comments
 (0)