Skip to content

Commit

Permalink
remove HTML list tags
Browse files Browse the repository at this point in the history
  • Loading branch information
radj307 committed Nov 27, 2023
1 parent d317bca commit 2000781
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions .github/workflows/MakeLocalizationChangelog.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -45,11 +45,10 @@ jobs:
- name: "[body.md]: Append changed files"
if: steps.changes.outputs.all_changed_files_count != 0
run: |
printf -- "\n### Changed Files\n<ul>" >> body.md
printf -- "\n### Changed Files\n" >> body.md
for file in ${{ steps.changes.outputs.all_changed_files }}; do
printf -- "- [\`%s\`](../blob/${{ github.sha }}/%s) \n \`\`\`diff\n%s\n \`\`\`\n" "$file" "$file" "$(git diff -p HEAD HEAD~1 VolumeControl/Localization/en.loc.json | tail -n +6 | awk '$0=" "$0')" >> body.md
done
printf -- "</ul>\n" >> body.md
# Add comment to changelog issue
- name: Add Comment to Changelog
Expand Down

0 comments on commit 2000781

Please sign in to comment.