Fix CI: Convert reusable workflows to use workflow_call trigger

- Changed swift.yml, rust.yml, and node.yml from direct triggers to workflow_call
- This fixes the workflow configuration error causing immediate CI failures
- Reusable workflows must use workflow_call when invoked by other workflows
This commit is contained in:
Peter Steinberger 2025-06-18 13:00:17 +02:00
parent 7947278fb2
commit 25d5bc5232
3 changed files with 3 additions and 15 deletions

View file

@ -1,11 +1,7 @@
name: Node.js CI name: Node.js CI
on: on:
push: workflow_call:
branches: [ main ]
pull_request:
branches: [ main ]
workflow_dispatch:
jobs: jobs:
lint: lint:

View file

@ -1,11 +1,7 @@
name: Rust CI name: Rust CI
on: on:
push: workflow_call:
branches: [ main ]
pull_request:
branches: [ main ]
workflow_dispatch:
jobs: jobs:
lint: lint:

View file

@ -1,11 +1,7 @@
name: Swift CI name: Swift CI
on: on:
push: workflow_call:
branches: [ main ]
pull_request:
branches: [ main ]
workflow_dispatch:
env: env:
DEVELOPER_DIR: /Applications/Xcode_16.3.app/Contents/Developer DEVELOPER_DIR: /Applications/Xcode_16.3.app/Contents/Developer