Skip to content

Commit

Permalink
fix ci results comment
Browse files Browse the repository at this point in the history
  • Loading branch information
moukoublen committed Mar 28, 2024
1 parent 2451b25 commit 97c0bda
Showing 1 changed file with 4 additions and 6 deletions.
10 changes: 4 additions & 6 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -318,8 +318,8 @@ jobs:
if: ${{ success() || failure() }}
shell: bash
run: |
ls -lahR || true
rm -f tests/allure/results/cover.out || true
ls -lahR tests/allure/results/ || true
echo "event_name: ${{ github.event_name }}"
- name: Publish allure report
if: ${{ success() || failure() }}
Expand All @@ -343,7 +343,7 @@ jobs:
debug: false

- name: Allure Summary
if: ${{ success() && github.event_name == 'pull_request' }}
if: ${{ success() && github.event_name != 'push' }}
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
Expand All @@ -354,8 +354,6 @@ jobs:
./.ci/scripts/allure-report-summary.sh "$allure_result" "$allure_url"
allure_summary=$(./.ci/scripts/allure-report-summary.sh "$allure_result" "$allure_url")
# posting result into job summary
echo "$allure_summary" >> $GITHUB_STEP_SUMMARY
# saving result into env variable (with multiline handling)
echo "ALLURE_SUMMARY<<EOF" >> $GITHUB_ENV
Expand All @@ -364,7 +362,7 @@ jobs:
- name: Comment test success result
uses: marocchino/sticky-pull-request-comment@v2
if: ${{ success() && github.event_name == 'pull_request' }}
if: ${{ success() && github.event_name != 'push' }}
with:
header: CI Test Results
number: ${{ github.event.number }}
Expand Down

0 comments on commit 97c0bda

Please sign in to comment.