Skip to content

Commit 3d4ba1f

Browse files
committed
fix: remove unused inputs
1 parent 546762b commit 3d4ba1f

File tree

1 file changed

+1
-18
lines changed

1 file changed

+1
-18
lines changed

.github/workflows/prepare-tag.yml

Lines changed: 1 addition & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -13,21 +13,6 @@ on:
1313
required: true
1414
type: string
1515
default: next
16-
changelog_path:
17-
description: 'Relative path to changelog in calling repo'
18-
required: false
19-
type: string
20-
default: ./CHANGELOG.md
21-
readme_path:
22-
description: 'Relative path to readme file in calling repo'
23-
required: false
24-
type: string
25-
default: ./src/readme.txt
26-
model:
27-
description: 'LLM model to use for generation'
28-
required: false
29-
type: string
30-
default: gpt-5-mini
3116

3217
jobs:
3318
version:
@@ -98,9 +83,7 @@ jobs:
9883
--field repo="${{ github.repository }}" \
9984
--field branch="${{ github.ref_name }}" \
10085
--field version="${{ needs.version.outputs.tag }}" \
101-
--field changelog_path="${{ github.event.inputs.changelog_path || './CHANGELOG.md' }}" \
102-
--field readme_path="${{ github.event.inputs.readme_path || './src/readme.txt' }}" \
103-
--field model="${{ github.event.inputs.model || 'gpt-5-mini' }}"; then
86+
--field readme_path="./src/readme.txt" \
10487
echo "::error::Failed to dispatch workflow '$workflow_file' in $target_repo"
10588
exit 1
10689
fi

0 commit comments

Comments
 (0)