diff --git a/.github/workflows/all-commits-in-master.yml b/.github/workflows/all-commits-in-master.yml index b94f5e1437..8ff834082a 100644 --- a/.github/workflows/all-commits-in-master.yml +++ b/.github/workflows/all-commits-in-master.yml @@ -23,7 +23,7 @@ jobs: MASTER_BRANCH="dc/master" # Get the list of commits in the source branch that are not in the master branch - MISSING_COMMITS=$(git log --no-merges --pretty="%H - %s" $MASTER_BRANCH..HEAD --) + MISSING_COMMITS=$(git log --pretty="%H - %s" $MASTER_BRANCH..HEAD --) if [[ -n "$MISSING_COMMITS" ]]; then echo "ERROR: The following commits are not present in $MASTER_BRANCH:"