Skip to content
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
14 changes: 10 additions & 4 deletions renovate.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": ["helpers:pinGitHubActionDigests", "schedule:earlyMondays"],
// TODO: Restore "schedule:earlyMondays"
"extends": ["helpers:pinGitHubActionDigests"],
Comment on lines -3 to +4
Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I think you can manually trigger a run from the dashboard, if you want to avoid this dance of back and forth :)

Copy link
Copy Markdown
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Were you able to get that to work? As far as I could tell manual runs also ended up respecting this setting unfortunately, maybe I missed an override though.

Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

don't remember exactly, but bufbuild/protovalidate-python@328d768 landed and then I think I ran a manual run two get the subsequent two PRs / commits that day: https://github.com/bufbuild/protovalidate-python/commits/main/. Fine either way.

"prHourlyLimit": 0,
"lockFileMaintenance": {
"enabled": true
Expand All @@ -25,11 +26,16 @@
{
"matchCategories": ["python"],
"separateMajorMinor": false,
// Needed to bump dev OTel dependencies. If a blanket value here doesn't make sense
// in the future, we can separate out packageRules / group name for OTel.
"ignoreUnstable": false,
"groupName": "Python dependencies"
},
// Production artifacts depend on unstable ones with strict version-locking.
{
"matchCategories": ["python"],
"matchPackageNames": ["opentelemetry-*"],
"separateMajorMinor": false,
"ignoreUnstable": false,
"groupName": "OTel dependencies"
},
{
"matchDatasources": ["golang-version"],
"rangeStrategy": "bump",
Expand Down
Loading