From 3939663f6b319c0e61718b314f998cf39cd69a02 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) --- 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 2192bee60a..24259edfce 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, ) }