Skip to content

Commit

Permalink
fix jira prefix
Browse files Browse the repository at this point in the history
  • Loading branch information
lantoli committed Jan 9, 2025
1 parent f457061 commit 8990fc9
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/issues.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
},
Expand Down Expand Up @@ -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)
Expand Down Expand Up @@ -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)
Expand Down

0 comments on commit 8990fc9

Please sign in to comment.