-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy path.scala-steward.conf
21 lines (18 loc) · 982 Bytes
/
.scala-steward.conf
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# We need to configure this via: https://github.com/guardian/scala-steward-public-repos
# Default config settings are here: https://github.com/scala-steward-org/scala-steward/blob/c1aa49d38b3d5fa6adf63f59de240680d7f9135b/docs/repo-specific-configuration.md
# Check if department-wide Scala Steward GitHub Action has broken on a team’s repo here: https://github.com/guardian/scala-steward-public-repos/actions/workflows/public-repos-scala-steward.yml
pullRequests.frequency = "7 days"
pullRequests.grouping = [
{ name = "aws", "title" = "AWS dependency updates", "filter" = [{"group" = "software.amazon.awssdk"}, {"group" = "com.amazonaws"}] },
{ name = "non_aws", "title" = "Non-AWS dependency updates", "filter" = [{"group" = "*"}] }
]
dependencyOverrides = [
{
dependency = { groupId = "software.amazon.awssdk" },
pullRequests = { frequency = "7 day" }
},
{
dependency = { groupId = "com.google.apis" },
pullRequests = { frequency = "7 day" }
}
]