github-issue-parser icon indicating copy to clipboard operation
github-issue-parser copied to clipboard

I would like all checkboxes to parse in JSON.

Open tjrkdgnl opened this issue 10 months ago • 0 comments

Hello~ I'm developing github actions that creates jira ticket from github issue. i wanna migrate from github issue body to jira Ticket description. so i'm used to peter-evans/jira2md@v1 actions(convert markdown to jira and otherwise). but there is difficultly problem in using your actions and peter-evans/jira2md@v1 actions together.

if i unselect one of checkboxes, i couldn't get it in JSON. i only could get to values that is selected in array. (I know it is regular. i read to README) As a result, only the selected values ​​will be moved to the jira description.

I would like all elements to be transferred. Is there any way to retrieve all checkbox information from JSON?

Actions version : v3

Issue Form

  ...

  - type: checkboxes
    id: tasks
    attributes:
      label: '...'
      options:
        - label: task1
        - label: task2

JSON

{
  "workType": "chore",
  "branchName": "rTest8",
  "squadTicketNumber": "",
  "description": "test",
  "details": "- About Details",
  "tasks": [],
  "references": "- Reference1"
}

tjrkdgnl avatar Mar 07 '25 08:03 tjrkdgnl