Skip to content
Open
Changes from all commits
Commits
Show all changes
31 commits
Select commit Hold shift + click to select a range
1c8bae9
Add renovate.json
renovate[bot] May 7, 2026
aa81f38
Add GitHub Actions digest pinning and update config
emdneto May 7, 2026
eaa3dba
Fix formatting in renovate.json
emdneto May 7, 2026
df6bba8
Update package rules in renovate.json
emdneto May 7, 2026
9e43225
Update renovate.json
emdneto May 7, 2026
2fa0da3
Update renovate.json
emdneto May 7, 2026
7d8e259
Update renovate.json to include security updates
emdneto May 7, 2026
c003497
Add scheduling for patch and minor/major updates
emdneto May 7, 2026
919f2e8
Update renovate.json configuration
emdneto May 7, 2026
1fd900e
Remove labels from renovate.json
emdneto May 7, 2026
427b470
Update renovate.json to modify ignorePaths and rules
emdneto May 7, 2026
c878326
Update renovate.json to modify ignorePaths
emdneto May 7, 2026
4a1d34d
Remove schedule for GitHub Actions updates
emdneto May 7, 2026
c79efb1
Remove GitHub Actions update grouping
emdneto May 7, 2026
379dd96
Rename group for docs dependencies in renovate.json
emdneto May 7, 2026
5f2df0e
Update renovate.json configuration for labels and schedules
emdneto May 11, 2026
2b3e773
Update renovate.json to include GitHub Actions manager
emdneto May 11, 2026
d629265
Update renovate.json
emdneto May 11, 2026
75a3805
Update renovate.json5 configuration settings
emdneto May 11, 2026
6689078
Add package rule for docs updates
emdneto May 11, 2026
73ed810
Add semanticCommitScope to docs and infra rules
emdneto May 11, 2026
6154616
Update renovate.json5
emdneto May 11, 2026
186c012
Update ignorePaths to include all requirements files
emdneto May 11, 2026
78bfa5d
Rename group names in package rules
emdneto May 11, 2026
613e4a1
Update package rules in renovate.json5
emdneto May 12, 2026
b5b0f24
Update renovate.json5
emdneto May 12, 2026
960a12f
Update renovate.json5
emdneto May 12, 2026
a75b9ab
Update renovate.json5
emdneto May 12, 2026
abd0138
Refactor packageRules in renovate.json5
emdneto May 13, 2026
ac4c4c7
Update renovate.json5
emdneto May 13, 2026
5059c59
Refactor renovate.json5 configuration
emdneto May 14, 2026
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
61 changes: 61 additions & 0 deletions renovate.json5
Original file line number Diff line number Diff line change
@@ -0,0 +1,61 @@
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
extends: [
"config:recommended",
"helpers:pinGitHubActionDigestsToSemver",
":semanticCommits",
],
labels: [
"dependencies",
"Skip Changelog",
],
lockFileMaintenance: {
enabled: true,
schedule: ["before 8am on Monday"],
},
ignorePaths: [
"**/*-requirements.txt",
"gen-requirements.txt",
"dev-requirements.txt",
"docs-requirements.txt",
"**/pyproject.toml",
],
// Also scan GitHub Actions workflow templates written as Jinja files.
"github-actions": {
managerFilePatterns: [
"/^\\.github/workflows/templates/.*\\.ya?ml\\.j2$/",
],
},
packageRules: [
{
groupName: "all patch versions",
matchUpdateTypes: ["patch"],
schedule: ["before 8am every weekday"],
},
{
matchUpdateTypes: ["minor", "major"],
schedule: ["before 8am on Monday"],
},
{
groupName: "docs deps",
matchFileNames: ["docs/**"],
semanticCommitScope: "docs",
},
{
groupName: "infra",
matchManagers: [
"github-actions",
"dockerfile",
"docker-compose",
],
matchUpdateTypes: [
"patch",
"minor",
"pin",
"pinDigest",
"digest",
],
semanticCommitScope: "infra",
},
],
}
Loading