Skip to content

Commit

Permalink
properly reference thread_resources
Browse files Browse the repository at this point in the history
  • Loading branch information
derekk-nm committed Sep 27, 2024
1 parent 7206617 commit c3cf2dc
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 @@ -56,8 +56,8 @@ runs:
echo "submitting results to TESTMO run ..."
## not checking testmo_url and token as this should be
## called between "create" and "complete"
if [[ -f "${{ inputs.resources_file }}" ]]; then
thread_resources=${{ inputs.resources_file }}
if [[ -f "${{ inputs.thread_resources }}" ]]; then
thread_resources=${{ inputs.thread_resources }}
else
echo '{}' > thread_resources.json
thread_resources=thread_resources.json
Expand Down

0 comments on commit c3cf2dc

Please sign in to comment.