Skip to content

Commit

Permalink
Migrate to matchDepName (#136)
Browse files Browse the repository at this point in the history
Co-authored-by: Aaron Moat <[email protected]>
  • Loading branch information
samchungy and AaronMoat authored Oct 18, 2024
1 parent 68f34da commit 4f243b9
Show file tree
Hide file tree
Showing 3 changed files with 25 additions and 20 deletions.
24 changes: 14 additions & 10 deletions default.json
Original file line number Diff line number Diff line change
Expand Up @@ -88,14 +88,14 @@
},
{
"matchManagers": ["npm"],
"matchPackageNames": ["/^@types//"],
"matchDepNames": ["/^@types//"],
"matchUpdateTypes": ["major", "minor", "patch"],

"automerge": true
},
{
"matchManagers": ["npm"],
"matchPackageNames": ["/^@types//"],
"matchDepNames": ["/^@types//"],
"matchUpdateTypes": ["major", "minor", "patch"],

"commitMessageExtra": "",
Expand All @@ -104,7 +104,7 @@
"schedule": "before 3:00 am every 2 weeks on Tuesday"
},
{
"matchPackageNames": [
"matchDepNames": [
"!aws-sdk",
"!braid-design-system",
"!sku",
Expand Down Expand Up @@ -132,7 +132,7 @@
"schedule": "after 3:00 am and before 6:00 am every 2 weeks on Tuesday"
},
{
"matchPackageNames": ["!/^seek-jobs//", "!/^seek-oss//"],
"matchDepNames": ["!/^seek-jobs//", "!/^seek-oss//"],
"matchManagers": ["buildkite"],

"additionalBranchPrefix": "",
Expand All @@ -151,8 +151,14 @@
"schedule": "after 3:00 am and before 6:00 am every 2 weeks on Wednesday"
},
{
"matchDepNames": ["braid-design-system", "sku", "skuba"],
"matchPackageNames": ["/^@?seek/", "/seek$/", "/^@vanilla-extract//"],
"matchDepNames": [
"braid-design-system",
"sku",
"skuba",
"/^@?seek/",
"/seek$/",
"/^@vanilla-extract//"
],

"prPriority": 98,
"schedule": "after 3:00 am and before 6:00 am every weekday",
Expand All @@ -169,8 +175,7 @@
},
{
"matchManagers": ["npm"],
"matchDepNames": ["aws-sdk", "serverless"],
"matchPackageNames": ["/^@aws-sdk//", "/^@smithy//"],
"matchDepNames": ["aws-sdk", "serverless", "/^@aws-sdk//", "/^@smithy//"],
"matchUpdateTypes": ["major", "minor", "patch"],

"commitMessageExtra": "",
Expand Down Expand Up @@ -240,8 +245,7 @@
"updateNotScheduled": true
},
{
"matchDepNames": ["react-relay"],
"matchPackageNames": ["/^relay-/"],
"matchDepNames": ["react-relay", "/^relay-/"],

"groupName": "relay"
},
Expand Down
6 changes: 1 addition & 5 deletions non-critical.json
Original file line number Diff line number Diff line change
Expand Up @@ -56,11 +56,7 @@
"allowedVersions": "!/^(3\\.42\\.0|4\\.21\\.0)$/"
},
{
"matchPackageNames": [
"!seek-jobs/gantry",
"!seek-jobs/automat",
"!skuba"
],
"matchDepNames": ["!seek-jobs/gantry", "!seek-jobs/automat", "!skuba"],
"matchUpdateTypes": [
"bump",
"digest",
Expand Down
15 changes: 10 additions & 5 deletions third-party-major.json
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@
"enabled": false
},
{
"matchPackageNames": [
"matchDepNames": [
"!braid-design-system",
"!sku",
"!skuba",
Expand Down Expand Up @@ -73,7 +73,7 @@
"allowedVersions": "!/^(3\\.42\\.0|4\\.21\\.0)$/"
},
{
"matchPackageNames": [
"matchDepNames": [
"!braid-design-system",
"!sku",
"!skuba",
Expand All @@ -94,7 +94,7 @@
"minimumReleaseAge": "14 days"
},
{
"matchPackageNames": ["!/^seek-jobs//", "!/^seek-oss//"],
"matchDepNames": ["!/^seek-jobs//", "!/^seek-oss//"],
"matchManagers": ["buildkite"],

"additionalBranchPrefix": "",
Expand All @@ -113,8 +113,13 @@
"schedule": "after 3:00 am and before 6:00 am every 2 weeks on Wednesday"
},
{
"matchDepNames": ["braid-design-system", "sku", "skuba"],
"matchPackageNames": ["/^@?seek/", "/seek$/"],
"matchDepNames": [
"braid-design-system",
"sku",
"skuba",
"/^@?seek/",
"/seek$/"
],

"prPriority": 98,
"schedule": "after 3:00 am and before 6:00 am every weekday"
Expand Down

0 comments on commit 4f243b9

Please sign in to comment.