Skip to content

Commit

Permalink
try passing gotestsum file from actions
Browse files Browse the repository at this point in the history
  • Loading branch information
hannahkm committed Jan 24, 2025
1 parent a54055c commit e04c2f1
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/actions/add-codeowners/codeowners.sh
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,6 @@ while read p; do
else
echo "$p" >> "$temp_file"
fi
done < ../../../gotestsum-report.xml
done < $1

mv "$temp_file" ../../../gotestsum-report.xml
mv "$temp_file" $1
2 changes: 1 addition & 1 deletion .github/actions/dd-ci-upload/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ runs:
- name: Add CodeOwners to JUnit files
shell: bash
run: cd ./.github/actions/add-codeowners && ./codeowners.sh
run: cd ./.github/actions/add-codeowners && ./codeowners.sh ${{ inputs.files }}

- name: Upload the JUnit files
shell: bash
Expand Down

0 comments on commit e04c2f1

Please sign in to comment.