Skip to content

Commit aa2b763

Browse files
committed
make diff a link
1 parent 5466b87 commit aa2b763

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

dependency_updater/dependency_updater.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -140,7 +140,7 @@ func createCommitMessage(updatedDependencies []VersionUpdateInfo, repoPath strin
140140

141141
for _, dependency := range updatedDependencies {
142142
repo, tag := dependency.Repo, dependency.To
143-
updates = append(updates, fmt.Sprintf("**%s - %s**: %s", repo, tag, dependency.DiffUrl))
143+
updates = append(updates, fmt.Sprintf("**%s** - %s: [diff](%s)", repo, tag, dependency.DiffUrl))
144144
repos = append(repos, repo)
145145
}
146146
commitDescription = strings.Join(updates, "\n")

0 commit comments

Comments
 (0)