File tree 1 file changed +16
-0
lines changed
1 file changed +16
-0
lines changed Original file line number Diff line number Diff line change
1
+ # If set, Scala Steward will only attempt to create or update `n` PRs.
2
+ # Useful if running frequently and/or CI build are costly
3
+ # Default: None
4
+ updates.limit = 5
5
+
6
+ # If set, Scala Steward will use this message template for the commit messages and PR titles.
7
+ # Supported variables: ${artifactName}, ${currentVersion}, ${nextVersion} and ${default}
8
+ # Default: "${default}" which is equivalent to "Update ${artifactName} to ${nextVersion}"
9
+ commits.message = "other: update ${artifactName} from ${currentVersion} to ${nextVersion}"
10
+
11
+ updates.ignore = [{groupId = "org.scala-sbt", artifactId = "sbt"}]
12
+
13
+ #pin some libraries we don't want to be automatically stepped beyond a certain version range
14
+ updates.pin = [
15
+ {groupId = "org.scala-sbt", artifactId = "sbt", version = "1.3."}
16
+ ]
You can’t perform that action at this time.
0 commit comments