We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2e28b63 commit c7e8459Copy full SHA for c7e8459
.github/workflows/validate-pr-title.yml
@@ -18,6 +18,12 @@ jobs:
18
TITLE="${{ github.event.pull_request.title }}"
19
echo "PR title: $TITLE"
20
21
+ # Skip validation for renovate
22
+ if [[ "$TITLE" == *"chore(deps)"* ]]; then
23
+ echo "⚠️ Skipping validation for renovate Prs."
24
+ exit 0
25
+ fi
26
+
27
# Regex for:
28
# [category/subcategory] type(scope?): description (#123?)
29
PATTERN='^\[([a-z]+(/[a-z]+)*)\] (feat|fix|chore|docs|style|refactor|perf|test|build|ci|revert)(\([a-z]+\))?: [a-z].*( \(#[0-9]+\))$'
0 commit comments