Skip to content

Commit

Permalink
Move string formatting to ci workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
philnewm committed Oct 19, 2024
1 parent 4f5bcbe commit a37a78e
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 7 deletions.
8 changes: 8 additions & 0 deletions .github/workflows/action-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,3 +56,11 @@ jobs:
echo "Labels: " && echo '${{ steps.test-action.outputs.label-list }}'
echo "Bump-increment: " && echo '${{ steps.test-action.outputs.bump-increment }}'
echo "Changelog: " && echo '${{ steps.test-action.outputs.changelog-markdown }}'
- name: Show changelog formatted
shell: bash
run: |
echo -e "${{ steps.test-action.outputs.changelog-markdown }}"
echo ""
printf "%s\n" "${{ steps.test-action.outputs.changelog-markdown }}"
7 changes: 0 additions & 7 deletions action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -88,11 +88,4 @@ runs:
echo "${delimiter}"
} >> $GITHUB_OUTPUT
- name: Show changelog formatted
shell: bash
run: |
echo -e "${{ steps.write-changelog.outputs.changelog }}"
echo ""
printf "%s\n" "${{ steps.write-changelog.outputs.changelog }}"
...

0 comments on commit a37a78e

Please sign in to comment.