Skip to content

Commit 434a9e9

Browse files
authored
Update renovate.json (#140)
* Update renovate.json * Add renovate config validation to the CI. * Update version for renovate configuration checking action.
1 parent 9e71008 commit 434a9e9

File tree

2 files changed

+17
-0
lines changed

2 files changed

+17
-0
lines changed

.github/workflows/ci.yml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,15 @@ on: # yamllint disable-line rule:truthy
44
- "push"
55
- "pull_request"
66
jobs:
7+
validate_renovate:
8+
runs-on: "ubuntu-20.04"
9+
steps:
10+
- name: "Check out repository code"
11+
uses: "actions/checkout@v2"
12+
- name: "Validate renovate configuration"
13+
uses: "rinchsan/[email protected]"
14+
with:
15+
pattern: "renovate.json"
716
black:
817
runs-on: "ubuntu-20.04"
918
env:

renovate.json

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,5 +11,13 @@
1111
"labels": [
1212
"dependencies"
1313
],
14+
"packageRules": [
15+
{
16+
"matchDepTypes": ["devDependencies"],
17+
"matchUpdateTypes": ["patch", "minor"],
18+
"groupName": "Update development dependencies (non-major releases)",
19+
"schedule": ["before 5am on friday"]
20+
}
21+
],
1422
"rangeStrategy": "in-range-only"
1523
}

0 commit comments

Comments
 (0)