Skip to content

Commit cca1e70

Browse files
authored
Limit the timing of git submodule updates by renovate to avoid disrupting work during working hours (#743)
After updating line-openapi, there are times when both - (1) a PR generated after Renovate updates the git submodule and - (2) a PR created by an operator dispatching the GitHub workflow are generated simultaneously. This change is to avoid that. Usually, when it's known that the bot SDK code will be changed (which is most cases), (1) is not necessary because the operator dispatches the workflow to change the code. In particular, since the operator usually dispatches the workflow for 6 bot sdk repositories via a script, the PRs automatically created by Renovate are a hindrance. However, to account for the possibility that the operator might simply forget to update bot sdk code, I've restricted Renovate to update the git submodule only at night instead of not updating. This way, if code generation is forgotten, it can be noticed the next day. (Other options) It was also possible to change the GitHub workflow to prevent duplicate PR by using same branch, but if the operator forgets to update for a while, there will be multiple features changed in one PR. I don't like this. though both options are fine, I think this PR is more suitable for our work at the moment rather than this option.
1 parent b14e7ad commit cca1e70

File tree

2 files changed

+24
-18
lines changed

2 files changed

+24
-18
lines changed

renovate.json

-18
This file was deleted.

renovate.json5

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

0 commit comments

Comments
 (0)