We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 07c0152 commit aa07fb9Copy full SHA for aa07fb9
1 file changed
dependency_updater/dependency_updater.go
@@ -130,8 +130,8 @@ func createCommitMessage(updatedDependencies [][]string) error {
130
repo, tag := dependencies[0], dependencies[1]
131
commitDescription += repo + " => " + tag + " (" + dependencies[2] + ")" + "\n"
132
commitTitle += repo
133
- if i != len(updatedDependencies){
134
- commitTitle += ","
+ if i != len(updatedDependencies) - 1{
+ commitTitle += " ,"
135
}
136
137
0 commit comments