File tree 1 file changed +8
-4
lines changed
1 file changed +8
-4
lines changed Original file line number Diff line number Diff line change 14
14
15
15
env :
16
16
JIRA_API_TOKEN : ${{ secrets.JIRA_API_TOKEN }}
17
+ ISSUE_TITLE : ${{ github.event.issue.title }}
18
+ ISSUE_BODY : ${{ github.event.issue.body }}
17
19
18
20
steps :
19
21
- name : Installs Jira CLI
36
38
--noedit \
37
39
-p ${{ secrets.JIRA_PROJECT_CODE }} \
38
40
-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
41
43
${{ github.event.issue.html_url }}" \
42
44
>> output
43
45
71
73
72
74
env :
73
75
JIRA_API_TOKEN : ${{ secrets.JIRA_API_TOKEN }}
76
+ ISSUE_TITLE : ${{ github.event.issue.title }}
77
+ ISSUE_BODY : ${{ github.event.issue.body }}
74
78
75
79
steps :
76
80
- name : Installs Jira CLI
93
97
--noedit \
94
98
-p ${{ secrets.JIRA_PROJECT_CODE }} \
95
99
-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
98
102
${{ github.event.issue.html_url }}" \
99
103
>> output
100
104
You can’t perform that action at this time.
0 commit comments