@@ -68,10 +68,10 @@ updates.ignore = [ { groupId = "org.scala-lang", artifactId = "scala-library" }
68
68
69
69
# If set, Scala Steward will use this message template for the commit messages and PR titles.
70
70
# Supported variables: ${artifactName}, ${currentVersion}, ${nextVersion} and ${default}
71
- # Default: "${default}" which is equivalent to "Update ${artifactName} to ${nextVersion}"
71
+ # Default: "${default}" which is equivalent to "Update ${artifactName} to ${nextVersion}"
72
72
commits.message = "Update ${artifactName} from ${currentVersion} to ${nextVersion}"
73
73
74
- # If true and when upgrading version in .scalafmt.conf, Scala Steward will perform scalafmt
74
+ # If true and when upgrading version in .scalafmt.conf, Scala Steward will perform scalafmt
75
75
# and add a separate commit when format changed. So you don't need reformat manually and can merge PR.
76
76
# If false, Scala Steward will not perform scalafmt, so your CI may abort when reformat needed.
77
77
# Default: true
@@ -90,9 +90,13 @@ scalafmt.runAfterUpgrading = false
90
90
# groupId = "com.github.sbt",
91
91
# artifactId = "sbt-protobuf"
92
92
# }]
93
+ postUpdateHooks = [{
94
+ command = ["sbt", "dependencyLockWrite"],
95
+ commitMessage = "Regenerated sbt lock file"
96
+ }]
93
97
94
98
# You can override some config options for dependencies that matches the given pattern.
95
- # Currently, "pullRequests" can be overridden.
99
+ # Currently, "pullRequests" can be overridden.
96
100
# Each pattern must have `groupId`, and may have `artifactId` and `version`.
97
101
# First-matched entry is used.
98
102
# More-specific entry should be placed before less-specific entry.
0 commit comments