Skip to content

Commit

Permalink
include more information in pr comment
Browse files Browse the repository at this point in the history
  • Loading branch information
maxeeem committed Jan 24, 2024
1 parent 3185bb2 commit 394b69d
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion .github/workflows/python-app-pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,12 @@ jobs:
with:
workflow: python-app-dev.yml
name: test-report

- name: Extract number of failures and errors
id: extract_results
run: |
echo "test_dev=$(tail -2 ../output-dev.txt | head -1)" >> "$GITHUB_ENV"
echo "test_pr=$(tail -2 ../output-pr.txt | head -1)" >> "$GITHUB_ENV"
- name: Setup Node (for diff)
uses: actions/setup-node@v4
Expand All @@ -60,7 +66,8 @@ jobs:
uses: thollander/[email protected]
with:
message: |
_(execution **${{ github.run_id }}** / attempt **${{ github.run_attempt }}**)_
Test results from DEV: "$test_dev"
Test results from PR: "$test_pr"
comment_tag: execution


0 comments on commit 394b69d

Please sign in to comment.