Skip to content

Commit 7ff5c15

Browse files
authored
chore: change CI workflows trigger (#646)
* chore: change CI workflows trigger * chore: run main workflow on every push & pr * Revert "chore: run main workflow on every push & pr" This reverts commit 09c22e6.
1 parent 31c85c1 commit 7ff5c15

File tree

3 files changed

+19
-3
lines changed

3 files changed

+19
-3
lines changed

.github/workflows/android.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,17 @@
11
name: Android Build
22

33
on:
4-
push:
4+
pull_request:
5+
branches:
6+
- master
57
paths:
68
- '.github/workflows/android.yml'
79
- 'android/**'
810
- 'example/android/**'
911
- 'fabricexample/android/**'
12+
push:
13+
branches:
14+
- master
1015

1116

1217
concurrency:

.github/workflows/ios.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,17 @@
11
name: iOS Build
22

33
on:
4-
push:
4+
pull_request:
5+
branches:
6+
- master
57
paths:
68
- '.github/workflows/ios.yml'
79
- 'ios/**'
810
- 'example/ios/**'
911
- 'fabricexample/ios/**'
12+
push:
13+
branches:
14+
- master
1015

1116
concurrency:
1217
group: ${{ github.ref }}-ios

.github/workflows/main.yml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,12 @@
11
name: Lint
22

3-
on: [push]
3+
on:
4+
pull_request:
5+
branches:
6+
- master
7+
push:
8+
branches:
9+
- master
410

511
concurrency:
612
group: ${{ github.ref }}-js

0 commit comments

Comments
 (0)