mirror of
https://github.com/samsonjs/vibetunnel.git
synced 2026-04-19 13:35:54 +00:00
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:
parent
7947278fb2
commit
25d5bc5232
3 changed files with 3 additions and 15 deletions
6
.github/workflows/node.yml
vendored
6
.github/workflows/node.yml
vendored
|
|
@ -1,11 +1,7 @@
|
|||
name: Node.js CI
|
||||
|
||||
on:
|
||||
push:
|
||||
branches: [ main ]
|
||||
pull_request:
|
||||
branches: [ main ]
|
||||
workflow_dispatch:
|
||||
workflow_call:
|
||||
|
||||
jobs:
|
||||
lint:
|
||||
|
|
|
|||
6
.github/workflows/rust.yml
vendored
6
.github/workflows/rust.yml
vendored
|
|
@ -1,11 +1,7 @@
|
|||
name: Rust CI
|
||||
|
||||
on:
|
||||
push:
|
||||
branches: [ main ]
|
||||
pull_request:
|
||||
branches: [ main ]
|
||||
workflow_dispatch:
|
||||
workflow_call:
|
||||
|
||||
jobs:
|
||||
lint:
|
||||
|
|
|
|||
6
.github/workflows/swift.yml
vendored
6
.github/workflows/swift.yml
vendored
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Reference in a new issue