From 67282df47987260b365fb15c71d552d71332912e Mon Sep 17 00:00:00 2001 From: Levente Orban Date: Wed, 10 Jul 2024 11:01:28 +0200 Subject: [PATCH] fix(ci): add dev-deps to scopes in pr_title_validation.sh --- .github/workflows/pr_title_validation.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pr_title_validation.sh b/.github/workflows/pr_title_validation.sh index 99a407665..a7f9a3418 100755 --- a/.github/workflows/pr_title_validation.sh +++ b/.github/workflows/pr_title_validation.sh @@ -1,6 +1,6 @@ #!/bin/sh -filtered=$(echo $1 | grep -E '(cicd|chore|doc|feat|fix|hotfix|refactor|test|BREAKING CHANGE)(\((web|agent|ci|cli|deps|crux|crux-ui|kratos|crane|dagent)\))?: [\w\S]*') +filtered=$(echo $1 | grep -E '(cicd|chore|doc|feat|fix|hotfix|refactor|test|BREAKING CHANGE)(\((web|agent|ci|cli|deps|deps-dev|crux|crux-ui|kratos|crane|dagent)\))?: [\w\S]*') if [ -n "$filtered" ]; then echo "Title is valid."