ci(dependabot): npm の [skip ci] prefix を削除し全てのCIを実行する#371
Merged
Conversation
dependabotのPRでもCIを全て走らせる方針に変更したため、npmエコシステムの commit-messageセクションを削除しデフォルトのコミットメッセージに戻す。 GitHub Actionsの[skip ci]はpull_requestの特殊types (review_requested等) での挙動が公式に明示されておらず信頼性に欠ける点、外部ツール (CodeQL/Snyk/DeepScan)は管轄外で常に走る点を踏まえ、CIをスキップする 仕組み自体を廃止する。 github-actionsエコシステムの "check ci status" プレフィックスは 既存のコミット履歴との連続性のため維持。
Owner
Author
✅ Snyk checks have passed. No issues have been found so far.
💻 Catch issues earlier using the plugins for VS Code, JetBrains IDEs, Visual Studio, and Eclipse. |
There was a problem hiding this comment.
Pull request overview
npm の Dependabot PR でも [skip ci] による CI スキップを行わず、通常どおり全ての CI / 外部ツールが実行される状態に戻すための変更です。リポジトリの依存関係更新 PR をより一貫して検証できるようにする意図に沿っています。
Changes:
.github/dependabot.ymlの npm エコシステム設定からcommit-message.prefix: "[skip ci]"(およびinclude: "scope")を削除- dependabot のデフォルトコミットメッセージ(例:
Bump ... from ... to ...)に戻す
ROhta
enabled auto-merge (squash)
May 23, 2026 02:14
ROhta
disabled auto-merge
May 23, 2026 02:14
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.
期待する挙動・状態
必要な依存関係
確認済み項目
見てほしいところ
背景
[skip ci]プレフィックスでCIをスキップする方針から、 dependabot のPRでもCIを全て走らせる 方針に転換。 理由:[skip ci]はpull_requestの特殊 types (review_requested/ready_for_review/reopened) における挙動が公式に明示されておらず信頼性に欠ける[skip ci]の影響を受けない変更内容
.github/dependabot.ymlcommit-messageセクション (prefix[skip ci]+ include scope) を削除github-actions エコシステムは既存のコミット履歴 (
check ci status(deps): bump ...) との連続性のため変更なし。