|
| 1 | +name: Bug Report |
| 2 | +description: Report a bug or an unexpected behavior |
| 3 | +labels: ["bug", "needs-triage"] |
| 4 | +body: |
| 5 | + - type: markdown |
| 6 | + attributes: |
| 7 | + value: | |
| 8 | + Thanks for taking the time to file a bug report! |
| 9 | + Please read the [Contributing Guidelines](CONTRIBUTING.md) before submitting. |
| 10 | + - type: textarea |
| 11 | + id: description |
| 12 | + attributes: |
| 13 | + label: Description |
| 14 | + description: A clear and concise description of what the bug is. |
| 15 | + placeholder: Describe the bug here. |
| 16 | + validations: |
| 17 | + required: true |
| 18 | + - type: textarea |
| 19 | + id: reproduction-steps |
| 20 | + attributes: |
| 21 | + label: Steps to Reproduce |
| 22 | + description: | |
| 23 | + Provide clear steps to reproduce the behavior. |
| 24 | + Please include code snippets, configurations, or detailed commands if relevant. |
| 25 | + placeholder: | |
| 26 | + 1. Go to '...' |
| 27 | + 2. Run cmd '....' |
| 28 | + 3. View file '....' |
| 29 | + 4. See error |
| 30 | + validations: |
| 31 | + required: true |
| 32 | + - type: textarea |
| 33 | + id: expected-behavior |
| 34 | + attributes: |
| 35 | + label: Expected Behavior |
| 36 | + description: A clear and concise description of what you expected to happen. |
| 37 | + placeholder: What did you expect to happen? |
| 38 | + validations: |
| 39 | + required: true |
| 40 | + - type: textarea |
| 41 | + id: actual-behavior |
| 42 | + attributes: |
| 43 | + label: Actual Behavior |
| 44 | + description: A clear and concise description of what actually happened. |
| 45 | + placeholder: What actually happened? |
| 46 | + validations: |
| 47 | + required: true |
| 48 | + - type: textarea |
| 49 | + id: environment |
| 50 | + attributes: |
| 51 | + label: Environment |
| 52 | + description: Provide details about your environment. |
| 53 | + value: | |
| 54 | + - **OS:** [e.g. macOS, Windows, Linux] (and version) |
| 55 | + - **mcpd Version:** [e.g. v0.0.2] (mcpd --version) |
| 56 | + - **mcpd Python plugin SDK Version:** [e.g. 0.0.1] |
| 57 | + - **Other relevant libraries/versions:** |
| 58 | + render: markdown |
| 59 | + validations: |
| 60 | + required: false |
| 61 | + - type: textarea |
| 62 | + id: logs |
| 63 | + attributes: |
| 64 | + label: Relevant Log Output |
| 65 | + description: | |
| 66 | + If applicable, paste any relevant log and terminal output, error messages, or screenshots. |
| 67 | + Please wrap code blocks in triple backticks (```). |
| 68 | + render: shell |
| 69 | + validations: |
| 70 | + required: false |
| 71 | + - type: checkboxes |
| 72 | + id: self-checklist |
| 73 | + attributes: |
| 74 | + label: Self-Checklist |
| 75 | + options: |
| 76 | + - label: I have read the [Contributing Guidelines](CONTRIBUTING.md). |
| 77 | + required: true |
| 78 | + - label: I have searched the existing issues and found no duplicate. |
| 79 | + required: true |
| 80 | + - label: I have provided a clear and concise description of the bug. |
| 81 | + required: true |
| 82 | + - label: I have provided clear steps to reproduce the bug. |
| 83 | + required: true |
| 84 | + - label: I have provided details about my environment. |
| 85 | + required: true |
0 commit comments