Skip to content
Merged
Show file tree
Hide file tree
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: 14 additions & 0 deletions .github/renovate.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
{
"dependencyDashboard": false,
"lockFileMaintenance": {
"enabled": true,
"schedule": ["* 3-4 * * *"],
Copy link

Copilot AI Sep 27, 2025

Choose a reason for hiding this comment

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

The cron expression * 3-4 * * * runs every minute between 3-4 AM, which is excessive for daily updates. Consider using 0 3 * * * to run once daily at 3 AM instead.

Suggested change
"schedule": ["* 3-4 * * *"],
"schedule": ["0 3 * * *"],

Copilot uses AI. Check for mistakes.
Copy link
Contributor Author

@intgr intgr Sep 27, 2025

Choose a reason for hiding this comment

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

AFAIK it needs to be a range -- We don't know precisely when Renovate will be triggered, and the triggering time must be in range of this schedule.

This time must be long enough that Renovate can: (1) open branch (2) GitHub tests workflow to run & succeed (3) Renovate runs again, observes successful CI run (4) merge it.

"automerge": true,
"automergeType": "branch"
},
"packageRules": [
{
"enabled": false
}
]
}
1 change: 1 addition & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ on:
push:
branches:
- master
- "renovate/**"
pull_request:
workflow_dispatch:
schedule:
Expand Down