|
| 1 | +name: Bug report |
| 2 | +description: Report a bug or regression in action-gh-release |
| 3 | +title: "[Bug]: " |
| 4 | +labels: |
| 5 | + - bug |
| 6 | +body: |
| 7 | + - type: markdown |
| 8 | + attributes: |
| 9 | + value: | |
| 10 | + Before filing: |
| 11 | + - confirm the problem still reproduces on the latest release or `master` |
| 12 | + - search existing issues for the same behavior |
| 13 | + - if the original repository is private, include a minimal public repro, a sanitized workflow snippet, or exact redacted steps a maintainer can follow |
| 14 | + - type: checkboxes |
| 15 | + id: checks |
| 16 | + attributes: |
| 17 | + label: Pre-flight checks |
| 18 | + options: |
| 19 | + - label: I searched existing issues and did not find a duplicate |
| 20 | + required: true |
| 21 | + - label: I reproduced this with the latest released version or current `master` |
| 22 | + required: true |
| 23 | + - label: I included a reproducible example or a sanitized/redacted reproduction path if the original repository is private |
| 24 | + required: true |
| 25 | + - type: input |
| 26 | + id: action_version |
| 27 | + attributes: |
| 28 | + label: action-gh-release version |
| 29 | + description: Tag, SHA, or ref used in your workflow |
| 30 | + placeholder: v2.5.2 |
| 31 | + validations: |
| 32 | + required: true |
| 33 | + - type: dropdown |
| 34 | + id: runner |
| 35 | + attributes: |
| 36 | + label: Runner operating system |
| 37 | + options: |
| 38 | + - ubuntu-latest |
| 39 | + - windows-latest |
| 40 | + - macos-latest |
| 41 | + - other |
| 42 | + validations: |
| 43 | + required: true |
| 44 | + - type: input |
| 45 | + id: target_repository |
| 46 | + attributes: |
| 47 | + label: Release target repository |
| 48 | + description: Fill this in if you set the `repository:` input |
| 49 | + placeholder: owner/repo |
| 50 | + - type: input |
| 51 | + id: repro_reference |
| 52 | + attributes: |
| 53 | + label: Reproduction repo, gist, or artifact |
| 54 | + description: Link a minimal repro repository, gist, run URL, or other shareable artifact if you have one |
| 55 | + placeholder: https://github.com/owner/repro-repo |
| 56 | + - type: textarea |
| 57 | + id: workflow |
| 58 | + attributes: |
| 59 | + label: Workflow snippet |
| 60 | + description: Include the relevant `uses:` step and inputs. If the original repo is private, paste a sanitized version here. |
| 61 | + render: yaml |
| 62 | + - type: textarea |
| 63 | + id: expected |
| 64 | + attributes: |
| 65 | + label: Expected behavior |
| 66 | + validations: |
| 67 | + required: true |
| 68 | + - type: textarea |
| 69 | + id: actual |
| 70 | + attributes: |
| 71 | + label: Actual behavior |
| 72 | + validations: |
| 73 | + required: true |
| 74 | + - type: textarea |
| 75 | + id: reproduce |
| 76 | + attributes: |
| 77 | + label: Steps to reproduce |
| 78 | + description: Include tags, matrix/concurrency details, and any repo rules involved. If the original repo is private, describe the smallest setup a maintainer can recreate locally or in a throwaway repo. |
| 79 | + placeholder: | |
| 80 | + 1. Trigger workflow with ... |
| 81 | + 2. Action creates ... |
| 82 | + 3. Action fails with ... |
| 83 | + validations: |
| 84 | + required: true |
| 85 | + - type: textarea |
| 86 | + id: logs |
| 87 | + attributes: |
| 88 | + label: Relevant logs |
| 89 | + description: Paste the relevant error output or run URL |
| 90 | + render: shell |
| 91 | + validations: |
| 92 | + required: true |
| 93 | + - type: textarea |
| 94 | + id: additional |
| 95 | + attributes: |
| 96 | + label: Additional context |
| 97 | + description: Any extra environment, token, ruleset, or asset details |
0 commit comments