Skip to content

Commit e604dc5

Browse files
committed
no message
1 parent 02426c4 commit e604dc5

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

.github/workflows/generate-changeset.yml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff 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'

0 commit comments

Comments
 (0)