Skip to content

Commit a6db291

Browse files
chore(config): migrate renovate config (#432)
The Renovate config in this repository needs migrating. Typically this is because one or more configuration options you are using have been renamed. You don't need to merge this PR right away, because Renovate will continue to migrate these fields internally each time it runs. But later some of these fields may be fully deprecated and the migrations removed. So it's a good idea to merge this migration PR soon. #### [PLEASE NOTE](https://docs.renovatebot.com/configuration-options#configmigration): JSON5 config file migrated! All comments & trailing commas were removed. 🔕 **Ignore**: Close this PR and you won't be reminded about config migration again, but one day your current config may no longer be valid. ❓ Got questions? Does something look wrong to you? Please don't hesitate to [request help here](https://redirect.github.com/renovatebot/renovate/discussions). --- This PR was generated by [Mend Renovate](https://mend.io/renovate/). View the [repository job log](https://developer.mend.io/github/line/line-bot-sdk-ruby). Resolve #412 --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Yuta Kasai <[email protected]>
1 parent eb6780d commit a6db291

File tree

1 file changed

+34
-34
lines changed

1 file changed

+34
-34
lines changed

renovate.json5

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

0 commit comments

Comments
 (0)