Skip to content

Commit ffc5fe6

Browse files
ayutazclaude
andcommitted
fix: workflow_callトリガーを追加して再利用可能なワークフローに修正
- test-japanese-tts.yml にworkflow_callトリガーを追加 - test-multilingual-tts.yml にworkflow_callトリガーを追加 - これにより他のワークフローから呼び出し可能に 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
1 parent 5d10223 commit ffc5fe6

File tree

2 files changed

+19
-0
lines changed

2 files changed

+19
-0
lines changed

.github/workflows/test-japanese-tts.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,10 @@ on:
1616
- '.github/workflows/test-japanese-tts.yml'
1717
- '.github/workflows/build-piper.yml'
1818
workflow_dispatch:
19+
workflow_call:
20+
permissions:
21+
contents: read
22+
packages: read
1923

2024
jobs:
2125
# Build piper for all platforms

.github/workflows/test-multilingual-tts.yml

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,21 @@ on:
3232
- basic
3333
- comprehensive
3434
- performance
35+
workflow_call:
36+
inputs:
37+
languages:
38+
description: 'Languages to test (comma-separated, e.g., en_US,de_DE,fr_FR)'
39+
required: false
40+
default: 'en_US,de_DE,fr_FR,es_ES,zh_CN'
41+
type: string
42+
test_type:
43+
description: 'Test type'
44+
required: false
45+
default: 'basic'
46+
type: string
47+
permissions:
48+
contents: read
49+
packages: read
3550

3651
env:
3752
# HuggingFace model repository

0 commit comments

Comments
 (0)