Skip to content

Commit e81ac33

Browse files
authored
Limit the timing of git submodule updates by renovate to avoid disrupting work during working hours (#649)
same: line/line-bot-sdk-python#743
1 parent 19b2abd commit e81ac33

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

renovate.json5

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
"extends": [
44
"config:base"
55
],
6+
"timezone": "Asia/Tokyo",
67
"ignorePaths": [
78
"docs/",
89
],
@@ -15,7 +16,12 @@
1516
"packageRules": [
1617
{
1718
"matchPackagePatterns": ["^line-openapi$"],
18-
"labels": ["dependency upgrade", "line-openapi-update"]
19+
"labels": ["dependency upgrade", "line-openapi-update"],
20+
// In many cases, we would like to update line-openapi by dispatching the GitHub workflow during working
21+
// hours, as there are code changes.
22+
// If that is forgotten, there's a possibility that line-openapi updates or code changes won't happen at
23+
// all, so we allow it to run at night just in case.
24+
"schedule": ["after 11pm and before 4am"]
1925
}
2026
]
2127
}

0 commit comments

Comments
 (0)