Skip to content

Commit

Permalink
improved skipping merge commits
Browse files Browse the repository at this point in the history
  • Loading branch information
hiqsol committed May 2, 2018
1 parent b3968a3 commit 0cffd32
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lib/Builder.php
Expand Up @@ -162,7 +162,7 @@ public static function skipCommit(Commit $commit)
static $starts = [
'version bump',
'bumped version',
"merge branch 'master'",
"merge branch '",
];
foreach ($starts as $start) {
if (strtolower(substr($subject, 0, strlen($start))) === $start) {
Expand Down

0 comments on commit 0cffd32

Please sign in to comment.