chore(renovate): npm と GitHub Actions を別グループに分割 - #168
Merged
Conversation
Co-Authored-By: ara-ta3 <2089153+ara-ta3@users.noreply.github.com>
ara-ta3
self-requested a review
July 23, 2026 06:12
Contributor
Author
🤖 Devin AI EngineerI'll be helping with this pull request! Here's what you should know: ✅ I will automatically:
Note: I can only respond to comments from users who have write access to this repository. ⚙️ Control Options:
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
all-packagesの単一グループをnpm-packagesとgithub-actionsの2グループに分割する。背景: PR #158 が
renovate/stability-daysで自動マージできずに詰まっていた。原因はminimumReleaseAge: "3 days"+internalChecksFilter: strict(best-practices の既定)の組み合わせで、ブランチに入っている更新はすべて3日以上経過済みだったが、まだ3日経っていない 保留中 の新バージョンactions/checkout v7.0.1(07-20 リリース)のために stability-days が pending になり、all-packagesグループ全体の自動マージがブロックされていた。全依存を1グループにまとめているため、どれか1つでも直近リリースがあると常にグループ全体が詰まる構造だった。対応: manager 単位でグループを分け、片方のエコシステムの直近リリースがもう片方のマージを止めないようにする。GitHub Actions は digest 固定 (
helpers:pinGitHubActionDigests) のため、npm 側の待機とは独立して扱える。"packageRules": [ { - "groupName": "all-packages", + "groupName": "npm-packages", "matchPackageNames": ["*"] }, + { + "groupName": "github-actions", + "matchManagers": ["github-actions"] + }, { "matchPackageNames": ["pnpm"], "allowedVersions": "<11", "matchManagers": ["npm"] } ]ルールは順に評価され後勝ちで
groupNameが上書きされるため、*でいったん全部npm-packagesにした上で、github-actions manager の依存だけgithub-actionsグループに振り分ける。minimumReleaseAge: "3 days"自体は npm / Actions 両方に維持(サプライチェーン保護は据え置き)。npx renovate-config-validatorで検証済み(Config validated successfully)。Link to Devin session: https://app.devin.ai/sessions/0a8beac1760e4c758225e3f622f980b3
Requested by: @ara-ta3