Skip to content

Commit 4c24423

Browse files
authored
Dependency Updater: Change Updater Workflow Schedule (#503)
* change workflow schedule * change time
1 parent 926d8a9 commit 4c24423

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

.github/workflows/update-dependencies.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name: Update Dockerfile Dependencies
22
on:
33
schedule:
4-
- cron: '0 * * * *'
4+
- cron: '0 13 * * *'
55
workflow_dispatch:
66

77
permissions:

dependency_updater/dependency_updater.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -142,9 +142,9 @@ func createCommitMessage(updatedDependencies []VersionUpdateInfo, repoPath strin
142142
repos = append(repos, repo)
143143
}
144144
commitDescription = strings.TrimSuffix(commitDescription, "\n")
145-
145+
commitTitle += strings.Join(repos, ", ")
146+
146147
if githubAction {
147-
commitTitle += strings.Join(repos, ", ")
148148
commitDescription = "\"" + commitDescription + "\""
149149
err := createGitMessageEnv(commitTitle, commitDescription, repoPath)
150150
if err != nil {

0 commit comments

Comments
 (0)