From 06ac63a577b0f7df7bd770da85dba757eb11f457 Mon Sep 17 00:00:00 2001 From: Alfredo Deza Date: Tue, 22 Dec 2015 15:30:51 -0500 Subject: [PATCH] do not include merge commit messages Signed-off-by: Alfredo Deza --- ceph-pr-commits/build/build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ceph-pr-commits/build/build b/ceph-pr-commits/build/build index a4d9aecd..8d684508 100644 --- a/ceph-pr-commits/build/build +++ b/ceph-pr-commits/build/build @@ -5,7 +5,7 @@ import os target_branch = os.getenv('ghprbTargetBranch', 'master') source_branch = os.getenv('ghprbSourceBranch', 'HEAD') -command = ['git', 'log', '%s..%s' % (target_branch, source_branch)] +command = ['git', 'log', '--no-merges', '%s..%s' % (target_branch, source_branch)] process = Popen( -- 2.39.5