Skip to content

Commit 5693949

Browse files
committed
chore: updated node-reth optimism
Updated dependencies for: node-reth => v0.1.3 (base/base@v0.1.2...v0.1.3) optimism => op-node/v1.13.4 (ethereum-optimism/optimism@op-node/v1.13.2...op-node/v1.13.4)
1 parent 74ac561 commit 5693949

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

dependency_updater/dependency_updater.go

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -123,12 +123,13 @@ func updater(token string, repoPath string, commit bool) error {
123123
}
124124

125125
func createCommitMessage(updatedDependencies [][]string) error {
126-
commitTitle := "Update versions"
126+
commitTitle := "chore: updated "
127127
var commitDescription = "Updated dependencies for: \n"
128128
for _, dependencies := range updatedDependencies {
129129
if len(dependencies) != 0 {
130130
repo, tag := dependencies[0], dependencies[1]
131131
commitDescription += repo + " => " + tag + " (" + dependencies[2] + ")" + "\n"
132+
commitTitle += repo + " "
132133
}
133134
}
134135
cmd := exec.Command("git", "commit", "-am", commitTitle, "-m", commitDescription)

0 commit comments

Comments
 (0)