From d1aa103ebc80bcc2863a7bc61c49245847143b94 Mon Sep 17 00:00:00 2001 From: Wilken Rivera Date: Thu, 27 Jul 2023 17:12:17 -0400 Subject: [PATCH] workflows/jira: Fix syntax error for createComment --- .github/workflows/jira.yml | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/.github/workflows/jira.yml b/.github/workflows/jira.yml index 70ae2c562c1..a3fa8cd7ea8 100644 --- a/.github/workflows/jira.yml +++ b/.github/workflows/jira.yml @@ -68,9 +68,7 @@ jobs: summary: "${{ github.event.repository.name }}: ${{ github.event.issue.title }}" description: "${{ github.event.issue.body }}\n\n_Created from GitHub by ${{ github.actor }}._" # The field customfield_10089 refers to the Issue Link field in JIRA. - fields: '{ "customfield_10089": "${{ github.event.issue.html_url }}", - "components": [{ "name": "OSS" }], - "labels": ${{ steps.set-ticket-labels.outputs.labels }} }' + fields: '{ "customfield_10089": "${{ github.event.issue.html_url }}", "components": [{ "name": "OSS" }], "labels": ${{ steps.set-ticket-labels.outputs.labels }} }' - name: Add tracking comment if: steps.create-ticket.outputs.issue != '' && steps.set-ticket-type.outputs.type != 'Invalid' @@ -83,8 +81,6 @@ jobs: repo: context.repo.repo, body: ` This issue has been synced to JIRA for planning. - JIRA ID: [${{ steps.create-ticket.outputs.issue }}](https://hashicorp.atlassian.net/browse/${{steps.create-ticket.outputs.issue}})` - - + })