From b4125a073c2a432fd59382f9633f18f956d173ff Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Tue, 1 Apr 2025 09:22:43 +0000 Subject: [PATCH 1/2] chore(config): migrate config renovate.json5 --- renovate.json5 | 64 +++++++++++++++++++++++--------------------------- 1 file changed, 30 insertions(+), 34 deletions(-) diff --git a/renovate.json5 b/renovate.json5 index 61a1e588..2ae5cd2b 100644 --- a/renovate.json5 +++ b/renovate.json5 @@ -1,35 +1,31 @@ - { - "$schema": "https://docs.renovatebot.com/renovate-schema.json", - "extends": [ - "config:recommended", - "helpers:pinGitHubActionDigestsToSemver" - ], - "timezone": "Asia/Tokyo", - "automerge": true, - "platformAutomerge": true, - "git-submodules": { - "enabled": true +{ + $schema: 'https://docs.renovatebot.com/renovate-schema.json', + extends: [ + 'config:recommended', + 'helpers:pinGitHubActionDigestsToSemver', + ], + timezone: 'Asia/Tokyo', + automerge: true, + platformAutomerge: true, + 'git-submodules': { + enabled: true, + }, + labels: [ + 'dependency upgrade', + ], + packageRules: [ + { + labels: [ + 'dependency upgrade', + 'line-openapi-update', + ], + schedule: [ + 'after 11pm', + 'before 4am', + ], + matchPackageNames: [ + '/line-openapi/', + ], }, - "labels": [ - "dependency upgrade" - ], - "packageRules": [ - { - "matchPackagePatterns": [ - "line-openapi" - ], - "labels": [ - "dependency upgrade", - "line-openapi-update" - ], - // In many cases, we would like to update line-openapi by dispatching the GitHub workflow during working - // hours, as there are code changes. - // If that is forgotten, there's a possibility that line-openapi updates or code changes won't happen at - // all, so we allow it to run at night just in case. - "schedule": [ - "after 11pm", - "before 4am" - ] - }, - ] - } + ], +} From 3c991ff422578c93e0d4773d244d120c49f45159 Mon Sep 17 00:00:00 2001 From: Yuta Kasai Date: Tue, 1 Apr 2025 18:54:34 +0900 Subject: [PATCH 2/2] NO-ISSUE keep comment --- renovate.json5 | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/renovate.json5 b/renovate.json5 index 2ae5cd2b..c22055dd 100644 --- a/renovate.json5 +++ b/renovate.json5 @@ -19,6 +19,10 @@ 'dependency upgrade', 'line-openapi-update', ], + // In many cases, we would like to update line-openapi by dispatching the GitHub workflow during working + // hours, as there are code changes. + // If that is forgotten, there's a possibility that line-openapi updates or code changes won't happen at + // all, so we allow it to run at night just in case. schedule: [ 'after 11pm', 'before 4am',