Skip to content

Commit 626838f

Browse files
authored
Merge pull request #77 from Seasawher/develop
TEST: try to fix issue in issue body
2 parents cf3a2e6 + 563c834 commit 626838f

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

action.yml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -198,9 +198,12 @@ runs:
198198
CHANGED_FILES="${{ steps.check-update.outputs.changed_files }}"
199199
BULLET_LIST=""
200200
for file in $CHANGED_FILES; do
201-
BULLET_LIST="$BULLET_LIST- $file\n"
201+
BULLET_LIST="$BULLET_LIST
202+
- $file"
202203
done
203-
BODY="Files changed in update:\n$BULLET_LIST"
204+
BODY="Files changed in update:
205+
206+
$BULLET_LIST"
204207
205208
# Check if label exists, create it if it doesn't
206209
if ! gh api repos/${{ github.repository }}/labels/auto-update-lean --silent 2>/dev/null; then

0 commit comments

Comments
 (0)