From 764dbe2ddd2766f54fbcd6b14436532fc905e6a0 Mon Sep 17 00:00:00 2001 From: Claude Date: Fri, 13 Feb 2026 06:08:05 +0000 Subject: [PATCH] Fix workflow_dispatch issue number being converted to float Change input type from `number` to `string` for the issue-number input in both workflow_dispatch and workflow_call triggers. GitHub Actions treats number inputs as floats, converting "14100" to "14100.0". https://claude.ai/code/session_013WeBacui19hKNg8a8fKEmD --- .github/workflows/claude-fix-issue.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/claude-fix-issue.yml b/.github/workflows/claude-fix-issue.yml index a2e801e9a6..df74c288c8 100644 --- a/.github/workflows/claude-fix-issue.yml +++ b/.github/workflows/claude-fix-issue.yml @@ -6,13 +6,13 @@ on: issue-number: description: "Issue number from phpstan/phpstan repository" required: true - type: number + type: string workflow_call: inputs: issue-number: description: "Issue number from phpstan/phpstan repository" required: true - type: number + type: string permissions: contents: write