Skip to content

Commit 989c85d

Browse files
fix(workflows): change issue number types to string
GitHub Actions job outputs are always strings, so workflow_call inputs should be strings to avoid type coercion issues. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
1 parent bfbd31e commit 989c85d

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

.github/workflows/gen-library-impl.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,11 +16,11 @@ on:
1616
main_issue_number:
1717
description: "Parent issue number"
1818
required: true
19-
type: number
19+
type: string
2020
sub_issue_number:
2121
description: "Sub-issue number for this library"
2222
required: true
23-
type: number
23+
type: string
2424
attempt:
2525
description: "Attempt number (1-3)"
2626
required: false

0 commit comments

Comments
 (0)