Skip to content

Commit 2bd0f47

Browse files
committed
ci: Allow concurrent GitHub Actions workflow runs on same branch
1 parent b1f725a commit 2bd0f47

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

.github/workflows/android-e2e.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ jobs:
101101
adb shell 'getprop net.dns1; getprop net.dns2' || true
102102
adb shell 'nslookup conversions.appsflyersdk.com 2>&1 | head -5' || { sleep 10; adb shell 'nslookup conversions.appsflyersdk.com 2>&1 | head -5'; } || { echo "::error::Emulator DNS cannot resolve AppsFlyer hosts"; exit 1; }
103103
cd example/android && ./gradlew assembleDebug && cd ../..
104-
./scripts/af-scenario-runner.sh --platform android --plan .af-e2e/test-plan.json
104+
bash ./scripts/af-scenario-runner.sh --platform android --plan .af-e2e/test-plan.json
105105
106106
- name: Upload E2E reports
107107
if: always()

.github/workflows/lint-test-build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ on:
4343
default: false
4444

4545
concurrency:
46-
group: ci-${{ github.workflow }}-${{ github.ref }}
46+
group: ci-${{ github.workflow }}-${{ github.run_id }}-${{ github.ref }}
4747
cancel-in-progress: true
4848

4949
jobs:

0 commit comments

Comments
 (0)