From e78a795462a6cd696b70a96a8cbc503acd3bbf3b Mon Sep 17 00:00:00 2001 From: Byron Williams Date: Thu, 28 May 2026 14:37:27 -0700 Subject: [PATCH] fix(renovate): lowercase commitMessageAction to pass PR title validator The PR title validator (amannn/action-semantic-pull-request) uses subjectPattern: ^(?![A-Z]).+$ which rejects subjects beginning with an uppercase letter. Renovate's default commitMessageAction is "Update" (capital U), causing every automated PR to fail the Validate PR Title CI check. - Add global "commitMessageAction": "update" so all Renovate PRs produce lowercase subjects - Lower-case the lockFileMaintenance override which also had "Update" Fixes the recurring CI failure first seen in PR #46. Co-Authored-By: Claude Sonnet 4.6 --- renovate.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/renovate.json b/renovate.json index 24470b4..39ca640 100644 --- a/renovate.json +++ b/renovate.json @@ -182,7 +182,7 @@ "schedule": [ "before 5am on monday" ], - "commitMessageAction": "Update", + "commitMessageAction": "update", "automerge": false, "labels": [ "dependencies", @@ -195,6 +195,7 @@ "prHourlyLimit": 0, "rebaseWhen": "conflicted", "semanticCommits": "enabled", + "commitMessageAction": "update", "commitMessagePrefix": "chore(deps):", "rangeStrategy": "bump", "vulnerabilityAlerts": {