File tree Expand file tree Collapse file tree 1 file changed +6
-2
lines changed Expand file tree Collapse file tree 1 file changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -182,8 +182,10 @@ jobs:
182182
183183 # Add @since updates section if there are any
184184 if [[ "${{ steps.check_since.outputs.has_updates }}" == "true" ]]; then
185+ # Read the summary from the previous step's output
186+ SINCE_SUMMARY='${{ steps.check_since.outputs.summary }}'
185187 PR_BODY="${PR_BODY}"$'\n\n'
186- PR_BODY="${PR_BODY}${{ steps.check_since.outputs.summary } }"
188+ PR_BODY="${PR_BODY}${SINCE_SUMMARY }"
187189 fi
188190
189191 PR_BODY="${PR_BODY}"$'\n\n'
@@ -220,8 +222,10 @@ jobs:
220222
221223 # Add @since updates section if there are any
222224 if [[ "${{ steps.check_since.outputs.has_updates }}" == "true" ]]; then
225+ # Read the summary from the previous step's output
226+ SINCE_SUMMARY='${{ steps.check_since.outputs.summary }}'
223227 PR_BODY="${PR_BODY}"$'\n\n'
224- PR_BODY="${PR_BODY}${{ steps.check_since.outputs.summary } }"
228+ PR_BODY="${PR_BODY}${SINCE_SUMMARY }"
225229 fi
226230
227231 PR_BODY="${PR_BODY}"$'\n\n'
You can’t perform that action at this time.
0 commit comments