chore(ci): Bump actions/checkout from 4 to 6 (#8) #15
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Bug Report | ||
|
Check failure on line 1 in .github/workflows/bug_report.yml
|
||
| description: Something is broken or behaving unexpectedly | ||
| labels: ["bug", "needs-triage"] | ||
| body: | ||
| - type: markdown | ||
| attributes: | ||
| value: | | ||
| Thank you for taking the time to report a bug. Please fill out the sections below as completely as possible. | ||
| - type: textarea | ||
| id: description | ||
| attributes: | ||
| label: Describe the bug | ||
| description: A clear and concise description of what the bug is. | ||
| validations: | ||
| required: true | ||
| - type: textarea | ||
| id: reproduce | ||
| attributes: | ||
| label: Steps to reproduce | ||
| description: Minimal code or CLI steps to reproduce the behavior. | ||
| placeholder: | | ||
| ```php | ||
| $input = (new TextInput('Name'))->run(); | ||
| ``` | ||
| validations: | ||
| required: true | ||
| - type: textarea | ||
| id: expected | ||
| attributes: | ||
| label: Expected behavior | ||
| description: What you expected to happen. | ||
| validations: | ||
| required: true | ||
| - type: textarea | ||
| id: actual | ||
| attributes: | ||
| label: Actual behavior | ||
| description: What actually happened. Include any error messages or terminal output. | ||
| validations: | ||
| required: true | ||
| - type: input | ||
| id: php-version | ||
| attributes: | ||
| label: PHP version | ||
| placeholder: "e.g. 8.3.2" | ||
| validations: | ||
| required: true | ||
| - type: input | ||
| id: os | ||
| attributes: | ||
| label: Operating system | ||
| placeholder: "e.g. Ubuntu 22.04, macOS 14, Windows 11" | ||
| validations: | ||
| required: true | ||
| - type: input | ||
| id: terminal | ||
| attributes: | ||
| label: Terminal / shell | ||
| placeholder: "e.g. iTerm2 / zsh, Windows Terminal / PowerShell" | ||
| validations: | ||
| required: false | ||
| - type: input | ||
| id: package-version | ||
| attributes: | ||
| label: php-io-cli version | ||
| placeholder: "e.g. 1.0.0" | ||
| validations: | ||
| required: true | ||