mirror of
https://github.com/samsonjs/vibetunnel.git
synced 2026-04-27 15:17:38 +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
|
name: Node.js CI
|
||||||
|
|
||||||
on:
|
on:
|
||||||
push:
|
workflow_call:
|
||||||
branches: [ main ]
|
|
||||||
pull_request:
|
|
||||||
branches: [ main ]
|
|
||||||
workflow_dispatch:
|
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
lint:
|
lint:
|
||||||
|
|
|
||||||
6
.github/workflows/rust.yml
vendored
6
.github/workflows/rust.yml
vendored
|
|
@ -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:
|
||||||
|
|
|
||||||
6
.github/workflows/swift.yml
vendored
6
.github/workflows/swift.yml
vendored
|
|
@ -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
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue