From fbd23118b1622e5163039ce8eb992704ad186471 Mon Sep 17 00:00:00 2001 From: Craig Roy Date: Wed, 27 Sep 2023 15:40:45 +0100 Subject: [PATCH] fix: Comment out broken priority code (#562) Setting the priority in Jira didn't work because it's illegal to assign a list to a variable (apparently). Until such a time that it's fixed, comment out the broken line so that we can still add issues --- .github/workflows/issue.yml | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/.github/workflows/issue.yml b/.github/workflows/issue.yml index b973c60b6..625904b61 100644 --- a/.github/workflows/issue.yml +++ b/.github/workflows/issue.yml @@ -50,7 +50,9 @@ jobs: issuetype: Bug summary: « [hugr] ${{ github.event.issue.title }}» description: ${{ github.event.issue.html_url }} - fields: '{"labels": ["hugr"], "priority": "${{ env.JIRA_PRIORITY }}"}' + fields: '{"labels": ["hugr"]}' + # TODO: Add priority field + # fields: '{"labels": ["hugr"], "priority": "${{ env.JIRA_PRIORITY }}"}' - name: Create Task uses: atlassian/gajira-create@v3.0.1 @@ -62,4 +64,6 @@ jobs: issuetype: Task summary: « [hugr] ${{ github.event.issue.title }}» description: ${{ github.event.issue.html_url }} - fields: '{"labels": ["hugr"], "priority": "${{ env.JIRA_PRIORITY }}"}' + fields: '{"labels": ["hugr"]}' + # TODO: Add priority field + # fields: '{"labels": ["hugr"], "priority": "${{ env.JIRA_PRIORITY }}"}'