Skip to content

Commit

Permalink
Merge pull request #29 from grafana/fix-casing-of-gcal-key-input
Browse files Browse the repository at this point in the history
fix casing for gcal service key input
  • Loading branch information
jotdl authored Apr 25, 2024
2 parents 506b2c5 + 689004c commit 3816f26
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/icassigner/action.go
Original file line number Diff line number Diff line change
Expand Up @@ -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")
Expand Down

0 comments on commit 3816f26

Please sign in to comment.