|
| 1 | +name: Bug Report |
| 2 | +description: Report a bug or unexpected behavior |
| 3 | +title: "[Bug]: " |
| 4 | +labels: ["bug"] |
| 5 | +body: |
| 6 | + - type: markdown |
| 7 | + attributes: |
| 8 | + value: | |
| 9 | + Thanks for taking the time to report this bug! Please fill out the information below to help us investigate. |
| 10 | +
|
| 11 | + - type: textarea |
| 12 | + id: description |
| 13 | + attributes: |
| 14 | + label: Description |
| 15 | + description: A clear and concise description of the bug |
| 16 | + placeholder: What happened? |
| 17 | + validations: |
| 18 | + required: true |
| 19 | + |
| 20 | + - type: textarea |
| 21 | + id: reproduction |
| 22 | + attributes: |
| 23 | + label: Steps to Reproduce |
| 24 | + description: Steps to reproduce the behavior |
| 25 | + placeholder: | |
| 26 | + 1. Run command '...' |
| 27 | + 2. With parameters '...' |
| 28 | + 3. See error |
| 29 | + validations: |
| 30 | + required: true |
| 31 | + |
| 32 | + - type: textarea |
| 33 | + id: expected |
| 34 | + attributes: |
| 35 | + label: Expected Behavior |
| 36 | + description: What did you expect to happen? |
| 37 | + placeholder: Describe the expected behavior |
| 38 | + validations: |
| 39 | + required: true |
| 40 | + |
| 41 | + - type: textarea |
| 42 | + id: actual |
| 43 | + attributes: |
| 44 | + label: Actual Behavior |
| 45 | + description: What actually happened? |
| 46 | + placeholder: Describe the actual behavior (include error messages if applicable) |
| 47 | + validations: |
| 48 | + required: true |
| 49 | + |
| 50 | + - type: textarea |
| 51 | + id: environment |
| 52 | + attributes: |
| 53 | + label: Environment Information |
| 54 | + description: Please provide details about your environment |
| 55 | + placeholder: | |
| 56 | + - Module Version: [e.g., 1.0.0] |
| 57 | + - PowerShell Version: [Run `$PSVersionTable.PSVersion`] |
| 58 | + - Operating System: [e.g., Windows 11, macOS 14, Ubuntu 22.04] |
| 59 | + - PowerShell Edition: [Desktop or Core] |
| 60 | + render: markdown |
| 61 | + validations: |
| 62 | + required: true |
| 63 | + |
| 64 | + - type: textarea |
| 65 | + id: code |
| 66 | + attributes: |
| 67 | + label: Code Sample |
| 68 | + description: Provide a minimal code sample that reproduces the issue |
| 69 | + placeholder: | |
| 70 | + ```powershell |
| 71 | + # Your code here |
| 72 | + ``` |
| 73 | + render: powershell |
| 74 | + |
| 75 | + - type: textarea |
| 76 | + id: logs |
| 77 | + attributes: |
| 78 | + label: Error Messages / Logs |
| 79 | + description: Provide any error messages or relevant log output |
| 80 | + placeholder: Paste error messages or logs here |
| 81 | + render: shell |
| 82 | + |
| 83 | + - type: textarea |
| 84 | + id: additional |
| 85 | + attributes: |
| 86 | + label: Additional Context |
| 87 | + description: Add any other context about the problem here (screenshots, related issues, etc.) |
0 commit comments