diff options
| author | Albin <albin@mullvad.net> | 2024-10-23 13:51:39 +0200 |
|---|---|---|
| committer | Albin <albin@mullvad.net> | 2024-10-23 13:51:39 +0200 |
| commit | a5f19cad9b3b8affe3729c547aac72d654168dd7 (patch) | |
| tree | bcf4e1557a7f6db7083df5eccaebb7ae13bf1820 /.github/workflows | |
| parent | 381048881b6a890b4dc002595ee5087ee574f813 (diff) | |
| parent | d7c7e5efe9034a04b31a744f0060d749ebbfb447 (diff) | |
| download | mullvadvpn-a5f19cad9b3b8affe3729c547aac72d654168dd7.tar.xz mullvadvpn-a5f19cad9b3b8affe3729c547aac72d654168dd7.zip | |
Merge branch 'disable-e2e-tests-for-prs-droid-1410'
Diffstat (limited to '.github/workflows')
| -rw-r--r-- | .github/workflows/android-app.yml | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/.github/workflows/android-app.yml b/.github/workflows/android-app.yml index f7fbfba610..ebdade4556 100644 --- a/.github/workflows/android-app.yml +++ b/.github/workflows/android-app.yml @@ -488,7 +488,9 @@ jobs: name: Run instrumented e2e tests # Temporary workaround for targeting the runner android-runner-v1 runs-on: [self-hosted, android-device, android-emulator] - if: github.event_name == 'schedule' || ${{ github.event.inputs.e2e_test_repeat }} != '0' + if: > + github.event_name == 'schedule' || + (github.event.inputs.e2e_test_repeat != '0' && github.event_name != 'pull_request') needs: [build-app, build-instrumented-tests] strategy: matrix: |
