File tree Expand file tree Collapse file tree 1 file changed +3
-0
lines changed Expand file tree Collapse file tree 1 file changed +3
-0
lines changed Original file line number Diff line number Diff line change @@ -16,6 +16,7 @@ concurrency:
1616
1717jobs :
1818 lint-podspec :
19+ if : github.event_name != 'pull_request' || !contains(github.event.pull_request.title, '[skip ci]')
1920 name : Lint Podspec
2021 runs-on : macos-15
2122 steps :
4142 pod lib lint SwiftUIIntrospect.podspec --allow-warnings
4243
4344 ci :
45+ if : github.event_name != 'pull_request' || !contains(github.event.pull_request.title, '[skip ci]')
4446 name : ${{ matrix.platform[0] }} ${{ matrix.platform[1] }}
4547 runs-on : ${{ matrix.os }}
4648 strategy :
@@ -188,6 +190,7 @@ jobs:
188190 run : fastlane test platform:${{ matrix.platform[0] }} version:${{ matrix.platform[1] }} scheme:SwiftUIIntrospectTests configuration:Debug
189191
190192 framework-archiving :
193+ if : github.event_name != 'pull_request' || !contains(github.event.pull_request.title, '[skip ci]')
191194 name : Archive Framework (${{ matrix.platform }})
192195 runs-on : macos-15
193196 strategy :
You can’t perform that action at this time.
0 commit comments