Remove unnecessary iOS CI triggers on web changes

The iOS app is a native client that connects to VibeTunnel servers and doesn't embed any web code. It only needs to rebuild when iOS-specific files change, not when web files are modified.

This optimization will save CI time by avoiding unnecessary iOS builds when only web UI changes are made.

🤖 Generated with [Claude Code](https://claude.ai/code)

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
Jeff Hurray 2025-07-08 15:46:22 -07:00 committed by Peter Steinberger
parent 4a75129ca6
commit ad6f335c17

View file

@ -67,5 +67,5 @@ jobs:
always() &&
!contains(needs.*.result, 'failure') &&
!contains(needs.*.result, 'cancelled') &&
(needs.changes.outputs.ios == 'true' || needs.changes.outputs.web == 'true' || github.event_name == 'workflow_dispatch')
(needs.changes.outputs.ios == 'true' || github.event_name == 'workflow_dispatch')
uses: ./.github/workflows/ios.yml