From 79e74dc759242cf4f63938a927ccd076b14d799f Mon Sep 17 00:00:00 2001 From: Shreyas Sharma Date: Tue, 20 Jan 2026 12:41:05 +0530 Subject: [PATCH] chore(tooling): fix pr validation step for docs type commit --- .github/workflows/pull-request.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pull-request.yml b/.github/workflows/pull-request.yml index 5b0b722f8..02f40501d 100644 --- a/.github/workflows/pull-request.yml +++ b/.github/workflows/pull-request.yml @@ -44,7 +44,7 @@ jobs: TITLE="${{ github.event.pull_request.title }}" echo "PR Title is: '$TITLE'" - regex="^(fix|feat|chore)\([^()]+\): .+" + regex="^(fix|feat|chore|docs)\([^()]+\): .+" if [[ $TITLE =~ $regex ]]; then echo "PR title is valid."