Skip to content

Commit

Permalink
fixup! feat: 🎸 skip creating a pr for rds drift if one already exists
Browse files Browse the repository at this point in the history
  • Loading branch information
jaskaransarkaria committed Oct 1, 2024
1 parent 3fa87ac commit 006732f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/environment/createPR.go
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ func createPR(description, namespace, ghToken, repo string) func(github.GithubIf
}

if len(pulls) > 0 {
return "", errors.New("a pr is already open for this namespace, skipping opening another...")
return "", errors.New("a pr is already open for this namespace, skipping opening another")
}

return gh.CreatePR(branchName, namespace, description)
Expand Down

0 comments on commit 006732f

Please sign in to comment.