From 8990fc9c118281d623daaa806c4290bfce83d673 Mon Sep 17 00:00:00 2001 From: Leo Antoli <430982+lantoli@users.noreply.github.com> Date: Thu, 9 Jan 2025 18:25:03 +0100 Subject: [PATCH] fix jira prefix --- .github/workflows/issues.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/issues.yml b/.github/workflows/issues.yml index ae29c23..d04d0c9 100644 --- a/.github/workflows/issues.yml +++ b/.github/workflows/issues.yml @@ -32,7 +32,7 @@ "project": { "id": "10984" }, - "summary": "[TF plugin] HELP: GitHub Issue n. '"${ISSUE_NUMBER}"'", + "summary": "TF plugin HELP: GitHub Issue n. '"${ISSUE_NUMBER}"'", "issuetype": { "id": "12" }, @@ -79,7 +79,7 @@ ISSUE_NUMBER=${{ github.event.issue.number }} JIRA_API_TOKEN=${{ secrets.JIRA_API_TOKEN }} - JIRA_QUERY="project = CLOUDP AND issuetype = Story AND resolution = Declined AND text ~ \"[TF plugin] HELP: GitHub Issue n. $ISSUE_NUMBER\"" + JIRA_QUERY="project = CLOUDP AND issuetype = Story AND resolution = Declined AND text ~ \"TF plugin HELP: GitHub Issue n. $ISSUE_NUMBER\"" # URL encode the query JIRA_URL=$(echo "$JIRA_QUERY" | jq -s -R -r @uri) @@ -129,7 +129,7 @@ ISSUE_NUMBER=${{ github.event.issue.number }} JIRA_API_TOKEN=${{ secrets.JIRA_API_TOKEN }} - JIRA_QUERY="project = CLOUDP AND issuetype = Story AND resolution = Unresolved AND text ~ \"[TF plugin] HELP: GitHub Issue n. $ISSUE_NUMBER\"" + JIRA_QUERY="project = CLOUDP AND issuetype = Story AND resolution = Unresolved AND text ~ \"TF plugin HELP: GitHub Issue n. $ISSUE_NUMBER\"" # URL encode the query JIRA_URL=$(echo "$JIRA_QUERY" | jq -s -R -r @uri)