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
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
workflow_dispatch:
workflow_call:
jobs:
lint:

View file

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

View file

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