Update end-to-end-tests.yaml

This commit is contained in:
Michael Telatynski 2023-11-22 08:46:33 +00:00 committed by GitHub
parent b6521ba86e
commit 04d095b871
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -143,7 +143,7 @@ jobs:
if: always()
with:
authToken: ${{ secrets.GITHUB_TOKEN }}
state: ${{ (!failure() && needs.tests.result == 'success') && 'success' || 'failure' }}
state: ${{ needs.tests.result == 'success' && 'success' || 'failure' }}
context: ${{ github.workflow }} / end-to-end-tests
sha: ${{ github.event.workflow_run.head_sha }}
target_url: https://github.com/${{ github.repository }}/actions/runs/${{ github.run_id }}