File tree Expand file tree Collapse file tree 1 file changed +8
-4
lines changed Expand file tree Collapse file tree 1 file changed +8
-4
lines changed Original file line number Diff line number Diff line change 1414
1515 env :
1616 JIRA_API_TOKEN : ${{ secrets.JIRA_API_TOKEN }}
17+ ISSUE_TITLE : ${{ github.event.issue.title }}
18+ ISSUE_BODY : ${{ github.event.issue.body }}
1719
1820 steps :
1921 - name : Installs Jira CLI
3638 --noedit \
3739 -p ${{ secrets.JIRA_PROJECT_CODE }} \
3840 -i Task \
39- -o summary="${{ github.event.issue.title }} " \
40- -o description="${{ github.event.issue.body }}
41+ -o summary="$ISSUE_TITLE " \
42+ -o description="$ISSUE_BODY
4143 ${{ github.event.issue.html_url }}" \
4244 >> output
4345
7173
7274 env :
7375 JIRA_API_TOKEN : ${{ secrets.JIRA_API_TOKEN }}
76+ ISSUE_TITLE : ${{ github.event.issue.title }}
77+ ISSUE_BODY : ${{ github.event.issue.body }}
7478
7579 steps :
7680 - name : Installs Jira CLI
9397 --noedit \
9498 -p ${{ secrets.JIRA_PROJECT_CODE }} \
9599 -i Task \
96- -o summary="${{ github.event.issue.title }} " \
97- -o description="${{ github.event.issue.body }}
100+ -o summary="$ISSUE_TITLE " \
101+ -o description="$ISSUE_BODY
98102 ${{ github.event.issue.html_url }}" \
99103 >> output
100104
You can’t perform that action at this time.
0 commit comments