Commit de181905 authored by Silvano Cerza's avatar Silvano Cerza

[skip changelog] Fix workflow to mirror issues to Jira

parent 58e903ac
......@@ -14,6 +14,8 @@ jobs:
env:
JIRA_API_TOKEN: ${{ secrets.JIRA_API_TOKEN }}
ISSUE_TITLE: ${{ github.event.issue.title }}
ISSUE_BODY: ${{ github.event.issue.body }}
steps:
- name: Installs Jira CLI
......@@ -36,8 +38,8 @@ jobs:
--noedit \
-p ${{ secrets.JIRA_PROJECT_CODE }} \
-i Task \
-o summary="${{ github.event.issue.title }}" \
-o description="${{ github.event.issue.body }}
-o summary="$ISSUE_TITLE" \
-o description="$ISSUE_BODY
${{ github.event.issue.html_url }}" \
>> output
......@@ -71,6 +73,8 @@ jobs:
env:
JIRA_API_TOKEN: ${{ secrets.JIRA_API_TOKEN }}
ISSUE_TITLE: ${{ github.event.issue.title }}
ISSUE_BODY: ${{ github.event.issue.body }}
steps:
- name: Installs Jira CLI
......@@ -93,8 +97,8 @@ jobs:
--noedit \
-p ${{ secrets.JIRA_PROJECT_CODE }} \
-i Task \
-o summary="${{ github.event.issue.title }}" \
-o description="${{ github.event.issue.body }}
-o summary="$ISSUE_TITLE" \
-o description="$ISSUE_BODY
${{ github.event.issue.html_url }}" \
>> output
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment