Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Discovered Renovate :automergeMinor and preventing openai version bumps #493

Merged
merged 2 commits into from
Sep 27, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 8 additions & 11 deletions .github/renovate.json5
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
{
$schema: "https://docs.renovatebot.com/renovate-schema.json",
extends: ["config:recommended"],
extends: [
"config:recommended",
"group:allNonMajor", // Rely on config:recommended for major version updates
":automergeMinor",
],
schedule: ["* 2 * * 1"],
prHourlyLimit: 4,
timezone: "America/Los_Angeles",
Expand All @@ -13,16 +17,9 @@
},
packageRules: [
{
matchUpdateTypes: ["lockFileMaintenance"],
automerge: true,
},
{
// group:allNonMajor, with automerge
groupName: "all non-major dependencies",
groupSlug: "all-minor-patch",
matchPackageNames: ["*"],
matchUpdateTypes: ["minor", "patch"],
automerge: true,
// Allow 'widen' range strategy while matching aviary_internal pyproject.toml
matchPackageNames: ["openai"],
allowedVersions: "<1.47",
},
],
}
Loading