Skip to content

Commit

Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
.github: set correct status for failed test reports
Browse files Browse the repository at this point in the history
Evgeniy Zayats committed Jan 10, 2025
1 parent b4a9bad commit e25b925
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/s3-tests.yml
Original file line number Diff line number Diff line change
@@ -198,6 +198,7 @@ jobs:
working-directory: s3-tests

- name: s3 tests
id: run_tests
env:
NEOFS_MORPH_DISABLE_CACHE: 'true'
WALLET_PASS: 'password'
@@ -235,6 +236,6 @@ jobs:
with:
authToken: ${{secrets.GITHUB_TOKEN}}
context: 'S3 tests report'
state: 'success'
state: ${{ steps.run_tests.outcome == 'success' && 'success' || 'failure' }}
sha: ${{github.event.pull_request.head.sha || github.sha}}
target_url: ${{ env.REPORT_NEOFS_URL }}

0 comments on commit e25b925

Please sign in to comment.