forked from galaxyproject/tools-iuc
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
709b05f
commit 1a763e3
Showing
1 changed file
with
19 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -362,6 +362,7 @@ jobs: | |
with: | ||
mode: combine | ||
html-report: true | ||
markdown-report: true | ||
- uses: actions/upload-artifact@v3 | ||
with: | ||
name: 'All tool test results' | ||
|
@@ -377,6 +378,24 @@ jobs: | |
if [[ "${{ needs.setup.outputs.chunk-count }}" != "$NFILES" ]]; then | ||
exit 1 | ||
fi | ||
- name: Get PR object | ||
if: failure() | ||
uses: 8BitJonny/[email protected] | ||
id: failed_pr_number | ||
with: | ||
sha: ${{ github.event.pull_request.head.sha }} | ||
- name: Debug GetPR output | ||
if: failure() | ||
run: | | ||
echo ${{ steps.failed_pr_number.outputs.number }} | ||
- name: Post comment with test report | ||
if: failure() | ||
uses: peter-evans/create-or-update-comment@v3 | ||
with: | ||
token: ${{ secrets.PAT }} | ||
issue-number: ${{ steps.failed_pr_number.outputs.number }} | ||
body-path: upload/tool_test_output.md | ||
|
||
|
||
# deploy the tools to the toolsheds (first TTS for testing) | ||
deploy: | ||
|