Skip to content

Commit

Permalink
Merge branch 'develop'
Browse files Browse the repository at this point in the history
  • Loading branch information
cwsmith committed Aug 30, 2024
2 parents c6254bf + c5ab193 commit 24dd23e
Showing 1 changed file with 7 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -99,9 +99,13 @@ jobs:
run: |
mkdir -p ./pr
echo "${{ github.event.issue.number }}" > ./pr/issueNumber
echo "[Build Log](https://github.com/${{github.repository}}/actions/runs/${{ github.run_id }})" >> ./pr/message
echo "Simmetrix Test Result: ${{ steps.build_sim.outcome }} " >> ./pr/message
echo "Simmetrix + CGNS Test Result: ${{ steps.build_sim_cgns.outcome }} " >> ./pr/message
message=$(cat << HEREDOC
[Build Log](https://github.com/${{github.repository}}/actions/runs/${{github.run_id}})
Simmetrix Test Result: ${{steps.build_sim.outcome}}
Simmetrix + CGNS Test Result: ${{steps.build_sim_cgns.outcome}}
HEREDOC
)
echo "$message" > ./pr/message
- name: Upload result
if: ${{ !cancelled() }} #upload unless the job was cancelled
Expand Down

0 comments on commit 24dd23e

Please sign in to comment.