|
1 | 1 | { |
2 | 2 | "extends": [ |
3 | | - "config:base", |
4 | | - "group:all", |
| 3 | + "config:base", // https://docs.renovatebot.com/presets-config/#configbase |
| 4 | + ":semanticCommits", // https://docs.renovatebot.com/presets-default/#semanticcommits |
| 5 | + ":ignoreUnstable", // https://docs.renovatebot.com/presets-default/#ignoreunstable |
| 6 | + "group:allNonMajor", // https://docs.renovatebot.com/presets-group/#groupallnonmajor |
| 7 | + ":separateMajorReleases", // https://docs.renovatebot.com/presets-default/#separatemajorreleases |
| 8 | + ":prConcurrentLimitNone", // View complete backlog as PRs. https://docs.renovatebot.com/presets-default/#prconcurrentlimitnone |
| 9 | + ":prNotPending", // https://docs.renovatebot.com/presets-default/#prnotpending |
| 10 | + ":prHourlyLimitNone", // https://docs.renovatebot.com/presets-default/#prhourlylimitnone |
5 | 11 | ":preserveSemverRanges", |
6 | | - ":disableDependencyDashboard" |
7 | 12 | ], |
8 | | - "ignorePaths": [".pre-commit-config.yaml", ".kokoro/requirements.txt", "setup.py"], |
9 | | - "pip_requirements": { |
10 | | - "fileMatch": ["requirements-test.txt", "samples/[\\S/]*constraints.txt", "samples/[\\S/]*constraints-test.txt"] |
11 | | - } |
| 13 | + |
| 14 | + // Synchronized with a 2 week sprint cycle and outside business hours. |
| 15 | + // https://docs.renovatebot.com/configuration-options/#schedule |
| 16 | + "schedule": ["every 2 weeks on Saturday"], |
| 17 | + |
| 18 | + // Give ecosystem time to catch up. |
| 19 | + // npm allows maintainers to unpublish a release up to 3 days later. |
| 20 | + // https://docs.renovatebot.com/configuration-options/#minimumreleaseage |
| 21 | + "minimumReleaseAge": "3", |
| 22 | + |
| 23 | + // Create PRs, but do not update them without manual action. |
| 24 | + // Reduces spurious retesting in repositories that have many PRs at a time. |
| 25 | + // https://docs.renovatebot.com/configuration-options/#rebasewhen |
| 26 | + "rebaseWhen": "never", |
| 27 | + |
| 28 | + // Organizational processes. |
| 29 | + // https://docs.renovatebot.com/configuration-options/#dependencydashboardlabels |
| 30 | + "dependencyDashboardLabels": [ |
| 31 | + "type: process", |
| 32 | + ], |
| 33 | + "packageRules": [ |
| 34 | + |
| 35 | + { |
| 36 | + "groupName": "GitHub Actions", |
| 37 | + "matchManagers": ["github-actions"], |
| 38 | + "pinDigests": true, |
| 39 | + }, |
| 40 | + |
| 41 | + // Python Specific |
| 42 | + { |
| 43 | + "matchPackageNames": ["pytest"], |
| 44 | + "matchUpdateTypes": ["minor", "major"] |
| 45 | + }, |
| 46 | + { |
| 47 | + "groupName": "python-nonmajor", |
| 48 | + "matchLanguages": ["python"], |
| 49 | + "matchUpdateTypes": ["minor", "patch"], |
| 50 | + }, |
| 51 | + |
| 52 | + ], |
12 | 53 | } |
0 commit comments