Skip to content

Commit

Permalink
Merge pull request #7808 from LedgerHQ/fix/restore-canceled-condition
Browse files Browse the repository at this point in the history
fix: restore not canceled condition for ok job
  • Loading branch information
KVNLS authored Sep 12, 2024
2 parents d68339c + 90e03f6 commit f0e6e60
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build-and-test-external.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ jobs:
- test-desktop-external
- build-mobile-external
runs-on: ubuntu-22.04
if: ${{ always() && github.event.pull_request.head.repo.full_name != github.repository }}
if: ${{ always() && !cancelled() && github.event.pull_request.head.repo.full_name != github.repository }}
steps:
- name: Check result
if: contains(needs.*.result, 'failure')
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build-and-test-pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ jobs:
- test-libraries
- test-design-system
runs-on: ubuntu-22.04
if: always()
if: always() && !cancelled()
steps:
- name: Check result
if: contains(needs.*.result, 'failure')
Expand Down

0 comments on commit f0e6e60

Please sign in to comment.