From 689004c34c71d1a2c9ca891c1e65d5f0e14ba39d Mon Sep 17 00:00:00 2001 From: Johannes Tandler Date: Thu, 25 Apr 2024 11:26:51 +0200 Subject: [PATCH] fix casing for gcal service key input --- pkg/icassigner/action.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/icassigner/action.go b/pkg/icassigner/action.go index 2d3f8d1..985143a 100644 --- a/pkg/icassigner/action.go +++ b/pkg/icassigner/action.go @@ -174,7 +174,7 @@ func checkAvailability(m MemberConfig) (bool, error) { } func GetGoogleConfig() (calendar.GoogleConfigJSON, error) { - clientSecret := githubaction.GetInputOrDefault("gcal_service_acount_key", "") + clientSecret := githubaction.GetInputOrDefault("gcal-service-acount-key", "") if clientSecret == "" { return "", errors.New("can't fetch gcal availability due gcal_service_acount_key input not set")