Skip to content

Commit

Permalink
Adjust output format for summary
Browse files Browse the repository at this point in the history
  • Loading branch information
Nicoretti committed Oct 25, 2023
1 parent 384e174 commit 2bcb4a7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/actions/security-issues/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,6 @@ runs:
run: |
echo -e "# Summary\n" >> $GITHUB_STEP_SUMMARY
echo -e "# Filtered Security Issue\n" >> $GITHUB_STEP_SUMMARY
tail -n +2 filtered.txt | grep . | xargs -n1 echo - >> $GITHUB_STEP_SUMMARY
tail -n +2 filtered.txt | grep . | xargs -n1 echo >> $GITHUB_STEP_SUMMARY
echo -e "# Created Security Issue\n" >> $GITHUB_STEP_SUMMARY
cat created.txt | xargs -n1 echo - >> $GITHUB_STEP_SUMMARY
cat created.txt | xargs -n1 echo >> $GITHUB_STEP_SUMMARY

0 comments on commit 2bcb4a7

Please sign in to comment.