From c88db3ceb911b25ebaf7d0e045b0447731167976 Mon Sep 17 00:00:00 2001 From: Shawna Monero <66325812+smonero@users.noreply.github.com> Date: Tue, 28 May 2024 09:25:21 -0700 Subject: [PATCH] oops had an extra m (#760) this caused parsing to break --- server/config/raw/global_cfg.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/config/raw/global_cfg.go b/server/config/raw/global_cfg.go index 1c466eaf6..9e44f7534 100644 --- a/server/config/raw/global_cfg.go +++ b/server/config/raw/global_cfg.go @@ -34,7 +34,7 @@ type ExtraGithubRateLimit struct { GHSlug string `yaml:"gh_slug" json:"gh_slug"` GHAppID int `yaml:"gh_app_id" json:"gh_app_id"` GHAppKeyPath string `yaml:"gh_app_key_path" json:"gh_app_key_path"` - GHWebHookSecret string `yamml:"gh_webhook_secret" json:"gh_webhook_secret"` + GHWebHookSecret string `yaml:"gh_webhook_secret" json:"gh_webhook_secret"` } func (t ExtraGithubRateLimit) ToValid() valid.ExtraGithubRateLimit {