Skip to content

Commit

Permalink
Fixed commit msg analysis to avoid skipping on all bump msgs ↞ [auto-…
Browse files Browse the repository at this point in the history
  • Loading branch information
kudo-sync-bot committed Dec 17, 2024
1 parent 80fe2a5 commit 64e8992
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion utils/bump.sh
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ for manifest_path in "${MANIFEST_PATHS[@]}" ; do
if [ "$chromium_only" != true ] && [ "$ff_only" != true ] ; then
echo "Checking last commit details for $platform_manifest_path..."
latest_platform_commit_msg=$(git log -1 --format=%s -- "$platform_manifest_path")
if [[ $latest_platform_commit_msg == bump*(version|manifest)* ]] ; then
if [[ $latest_platform_commit_msg =~ bump.*(version|manifest) ]] ; then
echo -e "No changes found. Skipping...\n" ; continue ; fi
fi

Expand Down

0 comments on commit 64e8992

Please sign in to comment.