Skip to content

Commit 6770895

Browse files
committed
Allow editing *.mill files
This is an follow-up to scala-steward-org#3410 (comment)
1 parent 02af3e9 commit 6770895

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

docs/repo-specific-configuration.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,7 @@ updates.allowPreReleases = [ { groupId = "com.example", artifactId="foo" } ]
130130
updates.limit = 5
131131

132132
# The extensions of files that should be updated.
133-
# Default: [".mill-version",".sbt",".sbt.shared",".sc",".scala",".scalafmt.conf",".sdkmanrc",".yml","build.properties","mill-version","pom.xml"]
133+
# Default: [".mill",".mill-version",".sbt",".sbt.shared",".sc",".scala",".scalafmt.conf",".sdkmanrc",".yml","build.properties","mill-version","pom.xml"]
134134
updates.fileExtensions = [".scala", ".sbt", ".sbt.shared", ".sc", ".yml", ".md", ".markdown", ".txt"]
135135

136136
# If "on-conflicts", Scala Steward will update the PR it created to resolve conflicts as

modules/core/src/main/scala/org/scalasteward/core/repoconfig/UpdatesConfig.scala

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -92,6 +92,7 @@ final case class UpdatesConfig(
9292
object UpdatesConfig {
9393
val defaultFileExtensions: Set[String] =
9494
Set(
95+
".mill",
9596
MillAlg.millVersionName,
9697
MillAlg.millVersionNameInConfig,
9798
".sbt",

0 commit comments

Comments
 (0)