Skip to content

Commit 4a52164

Browse files
committed
Fix renovate config for git submodule #361
1 parent 0bc5b14 commit 4a52164

File tree

2 files changed

+34
-18
lines changed

2 files changed

+34
-18
lines changed

Diff for: renovate.json

-18
This file was deleted.

Diff for: renovate.json5

+34
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
{
2+
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
3+
"extends": [
4+
"config:recommended"
5+
],
6+
"timezone": "Asia/Tokyo",
7+
"automerge": true,
8+
"platformAutomerge": true,
9+
"git-submodules": {
10+
"enabled": true
11+
},
12+
"labels": [
13+
"dependency upgrade"
14+
],
15+
"packageRules": [
16+
{
17+
"matchPackagePatterns": [
18+
"line-openapi"
19+
],
20+
"labels": [
21+
"dependency upgrade",
22+
"line-openapi-update"
23+
],
24+
// In many cases, we would like to update line-openapi by dispatching the GitHub workflow during working
25+
// hours, as there are code changes.
26+
// If that is forgotten, there's a possibility that line-openapi updates or code changes won't happen at
27+
// all, so we allow it to run at night just in case.
28+
"schedule": [
29+
"after 11pm",
30+
"before 4am"
31+
]
32+
},
33+
]
34+
}

0 commit comments

Comments
 (0)