You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ignite.apache.org by dp...@apache.org on 2018/10/31 17:10:09 UTC

[ignite-teamcity-bot] branch master updated: Detecting issue naming in PR in lowercase

This is an automated email from the ASF dual-hosted git repository.

dpavlov pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/ignite-teamcity-bot.git


The following commit(s) were added to refs/heads/master by this push:
     new 837c5da  Detecting issue naming in PR in lowercase
837c5da is described below

commit 837c5dac18bf60df78b8048da9a815aca0dee8c1
Author: Dmitriy Pavlov <dp...@apache.org>
AuthorDate: Wed Oct 31 20:10:05 2018 +0300

    Detecting issue naming in PR in lowercase
---
 .../org/apache/ignite/ci/tcbot/visa/TcBotTriggerAndSignOffService.java  | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/ignite-tc-helper-web/src/main/java/org/apache/ignite/ci/tcbot/visa/TcBotTriggerAndSignOffService.java b/ignite-tc-helper-web/src/main/java/org/apache/ignite/ci/tcbot/visa/TcBotTriggerAndSignOffService.java
index ecc4267..5c64286 100644
--- a/ignite-tc-helper-web/src/main/java/org/apache/ignite/ci/tcbot/visa/TcBotTriggerAndSignOffService.java
+++ b/ignite-tc-helper-web/src/main/java/org/apache/ignite/ci/tcbot/visa/TcBotTriggerAndSignOffService.java
@@ -81,7 +81,7 @@ public class TcBotTriggerAndSignOffService {
     @NotNull public static String getTicketFullName(PullRequest pr) {
         String ticketId = "";
 
-        if (pr.getTitle().startsWith("IGNITE-")) {
+        if (pr.getTitle().toUpperCase().startsWith("IGNITE-")) {
             int beginIdx = 7;
             int endIdx = 7;