diff --git a/.github/workflows/jira-issues.yml b/.github/workflows/jira-issues.yml index 512a5dd41..dc279c183 100644 --- a/.github/workflows/jira-issues.yml +++ b/.github/workflows/jira-issues.yml @@ -49,7 +49,7 @@ jobs: # customfield_10089 is "Issue Link", customfield_10371 is "Source" (use JIRA API to retrieve) extraFields: '{ "customfield_10089": "${{ github.event.issue.html_url || github.event.pull_request.html_url }}", "customfield_10371": { "value": "GitHub" }, - "customfield_10091": {"value": [\"TF-HybridCloud\"]}, + "customfield_10091": {"value": ["TF-HybridCloud"]}, "labels": ${{ steps.set-ticket-labels.outputs.LABELS }} }' env: JIRA_BASE_URL: ${{ secrets.JIRA_BASE_URL }} diff --git a/.github/workflows/jira-pr.yml b/.github/workflows/jira-pr.yml index 5a6b41cfe..6dfa6ffc1 100644 --- a/.github/workflows/jira-pr.yml +++ b/.github/workflows/jira-pr.yml @@ -65,7 +65,7 @@ jobs: # customfield_10089 is "Issue Link", customfield_10371 is "Source" (use JIRA API to retrieve) extraFields: '{ "customfield_10089": "${{ github.event.pull_request.html_url }}", "customfield_10371": { "value": "GitHub" }, - "customfield_10091": {"value": [\"TF-HybridCloud\"]}, + "customfield_10091": {"value": ["TF-HybridCloud"]}, "labels": ${{ steps.set-ticket-labels.outputs.LABELS }} }' env: JIRA_BASE_URL: ${{ secrets.JIRA_BASE_URL }}