Skip to content

Commit e128e36

Browse files
committed
chore(CI): limit e2e runs to main branch only (#118)
We do not need them on labs, as they effectively don't check anything right now & they still run on stacked PRs. Main motivation here is resource saving, as we already have hit our CI limit.
1 parent c1c06c0 commit e128e36

File tree

4 files changed

+8
-8
lines changed

4 files changed

+8
-8
lines changed

.github/workflows/android-e2e-test-fabric.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
name: Test Android e2e - new architecture
22
on:
33
pull_request:
4-
branches-ignore:
5-
- main-labs
4+
branches:
5+
- main
66
paths:
77
- '.github/workflows/android-e2e-test-fabric.yml'
88
- 'package.json'

.github/workflows/android-e2e-test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
name: Test Android e2e - old architecture
22
on:
33
pull_request:
4-
branches-ignore:
5-
- main-labs
4+
branches:
5+
- main
66
paths:
77
- '.github/workflows/android-e2e-test.yml'
88
- 'package.json'

.github/workflows/ios-e2e-test-fabric.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
name: Test iOS e2e - new architecture
22
on:
33
pull_request:
4-
branches-ignore:
5-
- main-labs
4+
branches:
5+
- main
66
paths:
77
- '.github/workflows/ios-e2e-test-fabric.yml'
88
- 'RNScreens.podspec'

.github/workflows/ios-e2e-test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
name: Test iOS e2e - old architecture
22
on:
33
pull_request:
4-
branches-ignore:
5-
- main-labs
4+
branches:
5+
- main
66
paths:
77
- '.github/workflows/ios-e2e-test.yml'
88
- 'RNScreens.podspec'

0 commit comments

Comments
 (0)