Skip to content

Commit

Permalink
run github actions only on native branches
Browse files Browse the repository at this point in the history
  • Loading branch information
tanersener committed Nov 10, 2021
1 parent 7ddd8e8 commit 34e924f
Show file tree
Hide file tree
Showing 4 changed files with 32 additions and 4 deletions.
9 changes: 8 additions & 1 deletion .github/workflows/android-build-scripts.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,13 @@
name: android build scripts

on: [ push, pull_request ]
on:
push:
branches:
- development
- main
pull_request:
branches:
- main

jobs:
build-main-on-linux:
Expand Down
9 changes: 8 additions & 1 deletion .github/workflows/ios-build-scripts.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,13 @@
name: ios build scripts

on: [ push, pull_request ]
on:
push:
branches:
- development
- main
pull_request:
branches:
- main

jobs:
build-main-on-macos-bigsur:
Expand Down
9 changes: 8 additions & 1 deletion .github/workflows/macos-build-scripts.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,13 @@
name: macos build scripts

on: [ push, pull_request ]
on:
push:
branches:
- development
- main
pull_request:
branches:
- main

jobs:
build-main-on-macos-bigsur:
Expand Down
9 changes: 8 additions & 1 deletion .github/workflows/tvos-build-scripts.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,13 @@
name: tvos build scripts

on: [ push, pull_request ]
on:
push:
branches:
- development
- main
pull_request:
branches:
- main

jobs:
build-main-on-macos-bigsur:
Expand Down

0 comments on commit 34e924f

Please sign in to comment.