Skip to content

Commit 5227194

Browse files
Refactor the workflows events triggers (#454)
* Launch workflow on push only for specific cases * Make the pull_request event trigger more specific
1 parent 29df609 commit 5227194

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

.github/workflows/ReactNativeSlider-CI.yml

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

3-
on: [push, pull_request]
3+
on:
4+
push:
5+
branches:
6+
- 'main'
7+
- 'release/**'
8+
pull_request:
9+
types: [opened, reopened, synchronize]
410

511
jobs:
612
install:

0 commit comments

Comments
 (0)