From 78584abe14e65545cac2dba0a08848bc2bbb1af4 Mon Sep 17 00:00:00 2001 From: Sebast1aan Date: Tue, 10 Dec 2024 12:21:12 +0100 Subject: [PATCH] fix(controller): correct typo in output message (#3112) (cherry picked from commit 5d572f4edd0b18bae27d40f0e390fd27d26b1c96) --- 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 5810ac163..732acf421 100644 --- a/internal/directives/git_pr_opener.go +++ b/internal/directives/git_pr_opener.go @@ -280,7 +280,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, ) }