Skip to content

Commit

Permalink
Trigger macOC build on push to master and release branches (#225 | GR…
Browse files Browse the repository at this point in the history
…IDEDIT-653)

Reconfig github action to build on push to master and release branches
  • Loading branch information
ahmad-el-sayed authored Sep 22, 2023
1 parent 1d75735 commit 6bea635
Showing 1 changed file with 10 additions and 8 deletions.
18 changes: 10 additions & 8 deletions .github/workflows/build-macos.yml
Original file line number Diff line number Diff line change
@@ -1,17 +1,19 @@
name: Build and test on macos

on:
push:
branches:
- master
- "release/v[0-9].[0-9].[0-9]"
pull_request:
types:
- opened # triggers build when opened
- closed # triggers build when merged
- synchronize # triggers build when commits are pushed to HEAD
- auto_merge_enabled # triggers build when auto-merge is enabled
branches:
- opened # triggers build when opened
- synchronize # triggers build when commits are pushed to HEAD
branches:
- master
- 'release/v[0-9].[0-9].[0-9]'
- 'feature/**'
# Allow triggering this workflow manually from the actions tab
- "release/v[0-9].[0-9].[0-9]"
- "feature/**"
# Manual trigger
workflow_dispatch:

jobs:
Expand Down

0 comments on commit 6bea635

Please sign in to comment.