Skip to content

Commit 30b60cd

Browse files
authored
Merge pull request #34 (deps)
chore: update renovate integration
2 parents d12bac1 + 784ce22 commit 30b60cd

File tree

2 files changed

+32
-0
lines changed

2 files changed

+32
-0
lines changed

.github/workflows/renovate.yml

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
name: renovate-config-validator
2+
on:
3+
push:
4+
paths:
5+
- 'renovate.json'
6+
pull_request:
7+
paths:
8+
- 'renovate.json'
9+
10+
jobs:
11+
renovate-config-validator:
12+
runs-on: ubuntu-latest
13+
if: (github.event_name == 'push' || github.event.pull_request.head.repo.full_name != github.repository)
14+
15+
steps:
16+
- uses: actions/checkout@v4
17+
- uses: actions/setup-node@v4
18+
with:
19+
node-version: '18'
20+
21+
- name: Run renovate-config-validator
22+
run: npx --yes --package renovate -- renovate-config-validator --strict

renovate.json

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,16 @@
77
{
88
"matchDatasources": ["golang-version"],
99
"allowedVersions": "1.22"
10+
},
11+
{
12+
"groupName": "Darvaza Projects",
13+
"groupSlug": "darvaza",
14+
"matchPackageNames": [
15+
"darvaza.org/**"
16+
]
1017
}
18+
],
19+
"postUpdateOptions": [
20+
"gomodTidy"
1121
]
1222
}

0 commit comments

Comments
 (0)