Skip to content

Commit

Permalink
Include workflow name in warning
Browse files Browse the repository at this point in the history
  • Loading branch information
dbarbuzzi committed Oct 3, 2024
1 parent cec14f6 commit fffb8ef
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions actions/testmo-run-submit-thread/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ runs:
if [[ ! -d "$RESULTS_FOLDER" ]]; then
echo "Results folder '$RESULTS_FOLDER' does not exist in working directory:"
ls -A
echo "::warning title=MISSING RESULTS FOLDER::Results folder did not contain any XML result files"
echo "::warning title=${{ github.workflow }} - MISSING RESULTS FOLDER::Results folder did not contain any XML result files"
exit
fi
Expand All @@ -50,7 +50,7 @@ runs:
if [[ -z "$RESULTS" ]]; then
echo "Results folder '$RESULTS_FOLDER' does not contain any XML result files:"
ls -A "$RESULTS_FOLDER"
echo "::warning title=MISSING RESULT FILES::Results folder did not contain any XML result files"
echo "::warning title=${{ github.workflow }} - MISSING RESULT FILES::Results folder did not contain any XML result files"
exit
fi
Expand Down

0 comments on commit fffb8ef

Please sign in to comment.