File tree Expand file tree Collapse file tree 5 files changed +12
-7
lines changed Expand file tree Collapse file tree 5 files changed +12
-7
lines changed Original file line number Diff line number Diff line change @@ -126,10 +126,11 @@ jobs:
126
126
run : |
127
127
issue_url=$(gh issue create \
128
128
--title "Exercise: $EXERCISE_NAME" \
129
- --body "${{ steps.build-issue-description.outputs.updated-text }} ")
129
+ --body "$ISSUE_BODY ")
130
130
echo "ISSUE_URL=$issue_url" >> "$GITHUB_OUTPUT"
131
131
env :
132
132
GH_TOKEN : ${{ secrets.GITHUB_TOKEN }}
133
+ ISSUE_BODY : ${{ steps.build-issue-description.outputs.updated-text }}
133
134
134
135
post_next_step_content :
135
136
name : Post next step content
Original file line number Diff line number Diff line change 67
67
env :
68
68
GH_TOKEN : ${{ secrets.GITHUB_TOKEN }}
69
69
70
-
71
70
- name : Build message - step finished
72
71
id : build-message-step-finish
73
72
uses : skills/action-text-variables@v1
@@ -79,10 +78,11 @@ jobs:
79
78
- name : Update comment - step finished
80
79
run : |
81
80
gh issue comment "$ISSUE_URL" \
82
- --body "${{ steps.build-message-step-finish.outputs.updated-text }} " \
81
+ --body "$ISSUE_BODY " \
83
82
--edit-last
84
83
env :
85
84
GH_TOKEN : ${{ secrets.GITHUB_TOKEN }}
85
+ ISSUE_BODY : ${{ steps.build-message-step-finish.outputs.updated-text }}
86
86
87
87
post_next_step_content :
88
88
name : Post next step content
Original file line number Diff line number Diff line change @@ -80,10 +80,11 @@ jobs:
80
80
- name : Update comment - step finished
81
81
run : |
82
82
gh issue comment "$ISSUE_URL" \
83
- --body "${{ steps.build-message-step-finish.outputs.updated-text }} " \
83
+ --body "$ISSUE_BODY " \
84
84
--edit-last
85
85
env :
86
86
GH_TOKEN : ${{ secrets.GITHUB_TOKEN }}
87
+ ISSUE_BODY : ${{ steps.build-message-step-finish.outputs.updated-text }}
87
88
88
89
post_next_step_content :
89
90
name : Post next step content
Original file line number Diff line number Diff line change @@ -80,10 +80,11 @@ jobs:
80
80
- name : Update comment - step finished
81
81
run : |
82
82
gh issue comment "$ISSUE_URL" \
83
- --body "${{ steps.build-message-step-finish.outputs.updated-text }} " \
83
+ --body "$ISSUE_BODY " \
84
84
--edit-last
85
85
env :
86
86
GH_TOKEN : ${{ secrets.GITHUB_TOKEN }}
87
+ ISSUE_BODY : ${{ steps.build-message-step-finish.outputs.updated-text }}
87
88
88
89
post_next_step_content :
89
90
name : Post next step content
Original file line number Diff line number Diff line change @@ -78,10 +78,11 @@ jobs:
78
78
- name : Update comment - step finished
79
79
run : |
80
80
gh issue comment "$ISSUE_URL" \
81
- --body "${{ steps.build-message-step-finish.outputs.updated-text }} " \
81
+ --body "$ISSUE_BODY " \
82
82
--edit-last
83
83
env :
84
84
GH_TOKEN : ${{ secrets.GITHUB_TOKEN }}
85
+ ISSUE_BODY : ${{ steps.build-message-step-finish.outputs.updated-text }}
85
86
86
87
post_review_content :
87
88
name : Post review content
@@ -165,9 +166,10 @@ jobs:
165
166
- name : Create comment - exercise finished
166
167
run : |
167
168
gh issue comment "$ISSUE_URL" \
168
- --body "${{ steps.build-finish-message.outputs.updated-text }} "
169
+ --body "$ISSUE_BODY "
169
170
env :
170
171
GH_TOKEN : ${{ secrets.GITHUB_TOKEN }}
172
+ ISSUE_BODY : ${{ steps.build-finish-message.outputs.updated-text }}
171
173
172
174
- name : Close issue
173
175
run : gh issue close "$ISSUE_URL"
You can’t perform that action at this time.
0 commit comments