-
Notifications
You must be signed in to change notification settings - Fork 16
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
[Issue #2515] use CodeOwners to assign reviewers and don't try to upgrade Python #3375
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -14,13 +14,7 @@ | |
"dependencies" | ||
], | ||
"branchPrefix": "renovate/", | ||
"reviewers": [ | ||
"sammysteiner", | ||
"acouch", | ||
"jamesbursa", | ||
"coilysiren", | ||
"aplybeah" | ||
], | ||
"reviewersFromCodeOwners": true, | ||
"rangeStrategy": "update-lockfile", | ||
"timezone": "America/New_York", | ||
"vulnerabilityAlerts": { | ||
|
@@ -136,6 +130,15 @@ | |
"analytics/poetry.lock" | ||
], | ||
"matchPackagePatterns": ["kaleido"] | ||
}, | ||
{ | ||
"description": "Don't upgrade Python itself as annual releases reflect as minor version bumps", | ||
"enabled": false, | ||
"matchFileNames": [ | ||
"analytics/pyproject.toml", | ||
"api/pyproject.toml" | ||
], | ||
"matchPackagePatterns": ["python"] | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Given that basically nobody will know this config language offhand, can you link to the docs in the PR description please 🙏🏽 There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Done, though, for this part I actually just cribbed off the existing one above (assuming it was working as intended) and took a best guess. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. valid valid There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I'm pretty sure i found the pattern for the postgres one on a stack overflow post, and for Kaleido just assumed it was the same despite it being a different file. It seems to have worked, but I didn't have any specific docs to point to either |
||
} | ||
] | ||
} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Ah!!!! I didn't realize this was happening