Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions dependency_updater/dependency_updater.go
Original file line number Diff line number Diff line change
Expand Up @@ -134,11 +134,11 @@ func updater(token string, repoPath string, commit bool, githubAction bool) erro
func createCommitMessage(updatedDependencies []VersionUpdateInfo, repoPath string, githubAction bool) error {
var repos []string
commitTitle := "chore: updated "
commitDescription := "Updated dependencies for: \n"
commitDescription := "Updated dependencies for: "

for _, dependency := range updatedDependencies {
repo, tag := dependency.Repo, dependency.To
commitDescription += repo + " => " + tag + " (" + dependency.DiffUrl + ")" + "\n"
commitDescription += repo + " => " + tag + " (" + dependency.DiffUrl + ") "
repos = append(repos, repo)
}
commitDescription = strings.TrimSuffix(commitDescription, "\n")
Expand Down