File tree 2 files changed +34
-18
lines changed
2 files changed +34
-18
lines changed Load Diff This file was deleted.
Original file line number Diff line number Diff line change
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
+ }
You can’t perform that action at this time.
0 commit comments