Skip to content

Commit

Permalink
fix ci results comment (#2068)
Browse files Browse the repository at this point in the history
  • Loading branch information
moukoublen committed Mar 28, 2024
1 parent d9d02a4 commit a3e2c32
Showing 1 changed file with 3 additions and 6 deletions.
9 changes: 3 additions & 6 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -318,8 +318,7 @@ jobs:
if: ${{ success() || failure() }}
shell: bash
run: |
ls -lahR || true
rm -f tests/allure/results/cover.out || true
ls -lahR tests/allure/results/ || true
- name: Publish allure report
if: ${{ success() || failure() }}
Expand All @@ -343,7 +342,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 +353,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 +361,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 a3e2c32

Please sign in to comment.