Skip to content

Commit f603346

Browse files
authored
CORE-69: update Scala Steward configuration (#1565)
* add Scala_Steward label to scala steward PRs * use a valid cron expression * include jira ticket in PR title
1 parent 2cddf18 commit f603346

File tree

1 file changed

+7
-3
lines changed

1 file changed

+7
-3
lines changed

.scala-steward.conf

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,12 @@
2626
#
2727
# Default: @asap
2828
#
29-
#pullRequests.frequency = "0 0 ? * 3" # every thursday on midnight
30-
pullRequests.frequency = "0 12 1,16 * *" # every 1st and 16th of the month at noon
29+
pullRequests.frequency = "0 0 ? * MON" # every monday at midnight
30+
31+
# pullRequests.customLabels allows to add custom labels to PRs.
32+
# This is useful if you want to use the labels for automation (project board for example).
33+
# Defaults to no labels (no labels are added).
34+
pullRequests.customLabels = [ "Scala_Steward" ]
3135

3236
# Only these dependencies which match the given patterns are updated.
3337
#
@@ -74,7 +78,7 @@ updatePullRequests = "always"
7478
# If set, Scala Steward will use this message template for the commit messages and PR titles.
7579
# Supported variables: ${artifactName}, ${currentVersion}, ${nextVersion} and ${default}
7680
# Default: "${default}" which is equivalent to "Update ${artifactName} to ${nextVersion}"
77-
commits.message = "(Broadbot) Update ${artifactName} from ${currentVersion} to ${nextVersion}"
81+
commits.message = "CORE-69: Update ${artifactName} from ${currentVersion} to ${nextVersion}"
7882

7983
# If true and when upgrading version in .scalafmt.conf, Scala Steward will perform scalafmt
8084
# and add a separate commit when format changed. So you don't need reformat manually and can merge PR.

0 commit comments

Comments
 (0)