Skip to content

Commit

Permalink
Trigger on pull_request
Browse files Browse the repository at this point in the history
  • Loading branch information
tundranerd committed Feb 26, 2024
1 parent 75309b3 commit de13386
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions .github/workflows/macos.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,10 @@
name: CI
on:
pull_request:
types:
- opened
- synchronized
- closed
push:
branches:
- 'ci/develop'
Expand All @@ -7,13 +13,13 @@ on:
runTests:
description: "Run tests?"
required: false
type: boolean
default: false

jobs:
call_workflow:
uses: febiosoftware/febio-workflows/.github/workflows/macos-reusable.yml@develop
with:
runTests: ${{ inputs.runTests && true || false }}
runTests: ${{ inputs.runTests == 'true' || github.event_name == 'pull_request' }}
package-name: febio4
package-sdk: true
secrets: inherit

0 comments on commit de13386

Please sign in to comment.