File tree Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -241,7 +241,8 @@ jobs:
241241 ALL_CHANGED_FILES : ${{ steps.check-files.outputs.all_changed_files }}
242242 with :
243243 script : |
244- const changedMdFiles = process.env.ALL_CHANGED_FILES.split('\s+')
244+ const changedMdFiles = process.env.ALL_CHANGED_FILES
245+ .split('\s+')
245246 .filter(i => i.endsWith('.md'))
246247 .filter(i => !i.includes('/_snippets/'));
247248
@@ -250,7 +251,7 @@ jobs:
250251 owner: context.repo.owner,
251252 repo: context.repo.repo,
252253 issue_number: context.payload.pull_request.number,
253- body: `**${changedMdFiles.length} markdown files changed:**\n\n${changedMdFiles.join('\n')}`
254+ body: `**${changedMdFiles.length} markdown files changed:**\n\n - ${changedMdFiles.join('\n - ')}`
254255 });
255256 }
256257
You can’t perform that action at this time.
0 commit comments