From 5d7fdbc71c7d76a672d415651f406287488b6fb6 Mon Sep 17 00:00:00 2001 From: 6543 <6543@obermui.de> Date: Thu, 29 Sep 2022 07:30:05 +0200 Subject: [PATCH] fix: create secret for manual build (#1222) --- server/model/const.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/model/const.go b/server/model/const.go index 078676b13..ac4ce0458 100644 --- a/server/model/const.go +++ b/server/model/const.go @@ -27,7 +27,7 @@ const ( func ValidateWebhookEvent(s WebhookEvent) bool { switch s { - case EventPush, EventPull, EventTag, EventDeploy, EventCron: + case EventPush, EventPull, EventTag, EventDeploy, EventCron, EventManual: return true default: return false