Skip to content

Commit

Permalink
Merge pull request #52 from guardian/ac/update-scala-steward
Browse files Browse the repository at this point in the history
Update scala-steward.conf
  • Loading branch information
aracho1 authored Jul 26, 2024
2 parents 8c8aac7 + 0c3badb commit 30e1933
Showing 1 changed file with 9 additions and 4 deletions.
13 changes: 9 additions & 4 deletions .github/workflows/scala-steward.conf
Original file line number Diff line number Diff line change
Expand Up @@ -12,13 +12,18 @@ pullRequests.frequency = "7 days"
# the default procedure (one PR per update).

pullRequests.grouping = [
{ name = "major", "title" = "Major updates", "filter" = [{"version" = "major"}, "customLabels" = ["major"] },
{ name = "minor", "title" = "Minor updates", "filter" = [{"version" = "minor"}, "customLabels" = ["minor"] },
{ name = "patch", "title" = "Patch updates", "filter" = [{"version" = "patch"}, "customLabels" = ["patch"] },
{ name = "patch", "title" = "Patch updates", "filter" = [{"version" = "patch"}},
{ name = "minor", "title" = "Minor updates", "filter" = [{"version" = "minor"}},
{ name = "major", "title" = "Major updates", "filter" = [{"version" = "major"}},
{ name = "all", "title" = "Other dependency updates", "filter" = [{"group" = "*"}] }
]

# pullRequests.customLabels allows to add custom labels to PRs.
# This is useful if you want to use the labels for automation (project board for example).
# Defaults to no labels (no labels are added).
pullRequests.customLabels = [ "dependencies" ]
pullRequests.customLabels = [
{ name = "patch", labels = ["patch"]},
{ name = "minor", labels = ["minor"]},
{ name = "major", labels = ["major"]},
{ name = "all", labels = ["dependencies"]}
]

0 comments on commit 30e1933

Please sign in to comment.