Skip to content

Commit

Permalink
Add path filters to ios workflows, #69
Browse files Browse the repository at this point in the history
    Only run workflows for changes to apps/ios and the workflow itself
  • Loading branch information
RDMurray committed Nov 8, 2023
1 parent 0759f65 commit 5e124af
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .github/workflows/build-for-testflight.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@ name: "build and submit to testflight"
on:
push:
branches: [ "main" ]
paths:
- 'apps/ios/**'
- '.github/workflows/build-for-testflight.yml'
workflow_dispatch:
jobs:
build:
Expand Down
5 changes: 5 additions & 0 deletions .github/workflows/ios-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,14 @@ on:
push:
branches:
- main
paths:
- 'apps/ios/**'
- '.github/workflows/ios-tests.yml'
pull_request:
branches:
- main
paths:
- 'apps/ios/**'
jobs:
unit-tests:
runs-on: macos-latest
Expand Down

0 comments on commit 5e124af

Please sign in to comment.