Bug Fixes
- Fixed an error in action.yml where the default branch name was incorrectly referencing another input parameter (Unrecognized named-value: 'inputs'. Located at position 1 within expression: inputs.issue-number)
- Changed the branch name default value from a dynamic expression to a static value
- Modified the branch creation step to dynamically append the issue number at runtime instead of in the default value definition
- This ensures compatibility with GitHub Actions' expression evaluation rules while maintaining the same functionality
Technical Details
The error occurred because GitHub Actions doesn't allow referencing other input parameters within a parameter's default value. The solution moves this dynamic behavior from the YAML definition to the runtime shell script execution.