Repository: hbase Updated Branches: refs/heads/HBASE-18467 664e36cf6 -> 3a09ab22e
HBASE-18467 still trying to get the StringGroovyMethods version. Project: http://git-wip-us.apache.org/repos/asf/hbase/repo Commit: http://git-wip-us.apache.org/repos/asf/hbase/commit/3a09ab22 Tree: http://git-wip-us.apache.org/repos/asf/hbase/tree/3a09ab22 Diff: http://git-wip-us.apache.org/repos/asf/hbase/diff/3a09ab22 Branch: refs/heads/HBASE-18467 Commit: 3a09ab22e6d987eb5720b760ee8e543c0141038f Parents: 664e36c Author: Sean Busbey <[email protected]> Authored: Tue Aug 22 21:41:47 2017 -0500 Committer: Sean Busbey <[email protected]> Committed: Tue Aug 22 21:41:47 2017 -0500 ---------------------------------------------------------------------- dev-support/Jenkinsfile | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/hbase/blob/3a09ab22/dev-support/Jenkinsfile ---------------------------------------------------------------------- diff --git a/dev-support/Jenkinsfile b/dev-support/Jenkinsfile index ddb226a..28f8edd 100644 --- a/dev-support/Jenkinsfile +++ b/dev-support/Jenkinsfile @@ -409,7 +409,7 @@ END echo " ${change.author}" echo "" // For now, only match the first occurrance of an HBase jira id, due to JENKINS-46358 - msg = msg.find( /HBASE-[0-9]+/ ) { currentIssue -> + msg.find( ~/HBASE-[0-9]+/ ) { currentIssue -> echo "[DEBUG] found jira key: ${currentIssue}" if ( currentIssue in seenJiras ) { echo "[DEBUG] already commented on ${currentIssue}." @@ -418,7 +418,6 @@ END jiraComment issueKey: currentIssue, body: comment seenJiras << currentIssue } - "" } //TODO warn if no JIRA key found in message, email committer }
