Skip to content

Commit

Permalink
fix issue when checking for low bandwidth
Browse files Browse the repository at this point in the history
  • Loading branch information
rahimrahman committed Sep 20, 2024
1 parent d3511f3 commit 6bf7c25
Showing 1 changed file with 1 addition and 9 deletions.
10 changes: 1 addition & 9 deletions .github/workflows/e2e-detox-pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,14 +10,6 @@ on:
- labeled

jobs:
check-label:
runs-on: ubuntu-22.04
steps:
- name: Check for E2E iOS tests label
id: check-label
run: |
echo "${{ contains(join(github.event.pull_request.labels.*.name, ','), 'E2E iOS tests for PR') }}"
update-initial-status:
runs-on: ubuntu-22.04
if: contains(join(github.event.pull_request.labels.*.name, ','), 'E2E iOS tests for PR')
Expand Down Expand Up @@ -67,7 +59,7 @@ jobs:
run-ios-tests: true
run-type: "PR"
MOBILE_VERSION: ${{ github.event.pull_request.head.sha }}
low_bandwidth_mode: ${{ contains(github.event.pull_request.labels.*.name, '(LBW 1)') && true || false }}
low_bandwidth_mode: ${{ contains(join(github.event.pull_request.labels.*.name, ','), 'LBW') && true || false }}
secrets: inherit

update-final-status:
Expand Down

0 comments on commit 6bf7c25

Please sign in to comment.