Skip to content

Commit

Permalink
Update PR title validation to allow more Dependabot patterns
Browse files Browse the repository at this point in the history
  • Loading branch information
scouten committed Nov 10, 2024
1 parent 5708349 commit 28c1d2b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/pr_title.yml
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ jobs:
exit 0;
fi
if echo "$PR_TITLE" | grep -E '^chore(\(deps\))?: bump '; then
if echo "$PR_TITLE" | grep -E '^(chore|update)(\(deps\))?: (bump|update) '; then
echo "Exception / OK: Dependabot update pattern"
exit 0;
fi
Expand Down

0 comments on commit 28c1d2b

Please sign in to comment.