From 65cc9bcd875f51bfb905958fc9d577d7a049f574 Mon Sep 17 00:00:00 2001 From: 23rd <23rd@vivaldi.net> Date: Mon, 13 Apr 2020 17:06:53 +0300 Subject: [PATCH] Updated parser of issue closer since template was changed. The issue template was changed in de78f4255e517cd163c4f730bce5933a77ec3eb8. --- .github/workflows/issue_closer.yml | 16 +++++++++++++--- 1 file changed, 13 insertions(+), 3 deletions(-) diff --git a/.github/workflows/issue_closer.yml b/.github/workflows/issue_closer.yml index 8e5984df0..99e95b1d9 100644 --- a/.github/workflows/issue_closer.yml +++ b/.github/workflows/issue_closer.yml @@ -21,14 +21,24 @@ jobs: script: | let errorStr = "Version not found."; + function maxIndexOf(str, i) { + let index = str.indexOf(i); + return (index == -1) ? Number.MAX_SAFE_INTEGER : index; + } + let item1 = "Version of Telegram Desktop"; - let item2 = "Used theme"; + let item2 = "Installation source"; + let item3 = "Used theme"; + let item4 = "
"; let body = context.payload.issue.body; console.log("Body of issue:\n" + body); let index1 = body.indexOf(item1); - let index2 = body.indexOf(item2); - index2 = (index2 == -1) ? Number.MAX_SAFE_INTEGER : index2; + let index2 = Math.min( + Math.min( + maxIndexOf(body, item2), + maxIndexOf(body, item3)), + maxIndexOf(body, item4)); console.log("Index 1: " + index1); console.log("Index 2: " + index2);