From 86c710b8e5b482526fd4a88483f3584e7c879aab Mon Sep 17 00:00:00 2001 From: Sebast1aan Date: Tue, 10 Dec 2024 08:40:41 +0100 Subject: [PATCH] fix(controller): correct typo in output message --- internal/directives/git_pr_opener.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/directives/git_pr_opener.go b/internal/directives/git_pr_opener.go index 2192bee60..24259edfc 100644 --- a/internal/directives/git_pr_opener.go +++ b/internal/directives/git_pr_opener.go @@ -285,7 +285,7 @@ func (g *gitPROpener) getSourceBranch( stepOutputMap, ok := stepOutput.(map[string]any) if !ok { return "", fmt.Errorf( - "output from step with alias %q is not a mao[string]any", + "output from step with alias %q is not a map[string]any", cfg.SourceBranchFromStep, ) }