Skip to content

Commit

Permalink
fix: Comment out broken priority code (#562)
Browse files Browse the repository at this point in the history
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
  • Loading branch information
croyzor authored Sep 27, 2023
1 parent a20fe56 commit fbd2311
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/issue.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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/[email protected]
Expand All @@ -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 }}"}'

0 comments on commit fbd2311

Please sign in to comment.