Skip to content

Commit

Permalink
Fix for notif color
Browse files Browse the repository at this point in the history
  • Loading branch information
ypolishchuk-ledger committed Jun 26, 2024
1 parent 11800a9 commit 1437bf4
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/test-ui-e2e-only-desktop.yml
Original file line number Diff line number Diff line change
Expand Up @@ -176,9 +176,9 @@ jobs:
if: ${{ !cancelled() }}
shell: bash
run: >
if ${{ needs.e2e-tests-linux.outputs.outcome == 'success' }};
if ${{ needs.e2e-tests-linux.outputs.status == 'success' }};
then echo "STATUS_COLOR=#33FF39" >> $GITHUB_ENV;
elif ${{ needs.e2e-tests-linux.outputs.outcome == 'failure' }};
elif ${{ needs.e2e-tests-linux.outputs.status == 'failure' }};
then echo "STATUS_COLOR=#FF333C" >> $GITHUB_ENV;
else echo "STATUS_COLOR=#F3FF33" >> $GITHUB_ENV;
fi
Expand Down Expand Up @@ -214,8 +214,8 @@ jobs:
const report = {
linux: {
pass: ${{ needs.e2e-tests-linux.outputs.outcome == 'success' }},
status: "${{ needs.e2e-tests-linux.outputs.outcome }}",
pass: ${{ needs.e2e-tests-linux.outputs.status == 'success' }},
status: "${{ needs.e2e-tests-linux.outputs.status }}",
}
};
Expand Down

0 comments on commit 1437bf4

Please sign in to comment.