From 6ad5046acd7ad64a5640e839341d56e03dae952f Mon Sep 17 00:00:00 2001 From: Robert Moucha Date: Fri, 22 May 2026 13:22:10 +0200 Subject: [PATCH] fix(commit-lint): permit longer digest pin messages MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Renovate doesn't only [Uu]pdates or bumps, it also pins to given version. For example: ``` chore(deps): pin 020413372491.dkr.ecr.us-east-1.amazonaws.com/pullthrough/docker.io/nginxinc/nginx-unprivileged docker tag to 37a4e0b ``` Co-Authored-By: 🧠 --- .github/workflows/commit-lint.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/commit-lint.yaml b/.github/workflows/commit-lint.yaml index 29fa956..a3f6ffc 100644 --- a/.github/workflows/commit-lint.yaml +++ b/.github/workflows/commit-lint.yaml @@ -30,7 +30,7 @@ jobs: CONVENTIONAL_TYPES='build|chore|ci|docs|feat|fix|perf|refactor|revert|reapply|style|test' CONVENTIONAL_REGEX="^(${CONVENTIONAL_TYPES})(\(.+\))?!?: .+" # Bot-generated dep/version bumps (renovate, extimage, ...) - skip length and risk checks - BOT_BUMP_REGEX='^chore(\(deps\))?:[[:space:]]([Uu]pdate|bump)' + BOT_BUMP_REGEX='^chore(\(deps\))?:[[:space:]]([Uu]pdate|bump|pin)' # Repos that require a `risk:` trailer RISK_REPOS_REGEX='^(.*/)?(gdc-nas|gdc-ui|gooddata-ui-sdk|gdc-panther)$'