From 3d9ba22f9e55e191659b3d48b16fdf05a6eabbff Mon Sep 17 00:00:00 2001 From: Yannick Warnier Date: Sun, 1 May 2016 00:10:00 -0500 Subject: [PATCH] Add ignoring language updates in packaging script --- tests/scripts/packaging/gitlog.php | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/tests/scripts/packaging/gitlog.php b/tests/scripts/packaging/gitlog.php index 04dcfe76c3..858a75c341 100644 --- a/tests/scripts/packaging/gitlog.php +++ b/tests/scripts/packaging/gitlog.php @@ -34,10 +34,16 @@ foreach ($logs as $log) { if ($showDate) { echo $log['date']->format('Y-m-d H:i:s').' '.substr($log['sha1'],0,8).PHP_EOL; } + // Check for messages to ignore... if (strncasecmp($log['message'], 'Minor', 5) === 0) { //Skip minor messages continue; } + if ($log['message'] == 'Update language terms') { + //Skip language update messages + continue; + } + // Look for tasks references $issueLink = ''; $matches = array(); if (preg_match_all('/((BT)?#(\d){2,5})/', $log['message'], $matches)) {