|
| 1 | +name: Bug Report |
| 2 | +description: Create a report to help improve zParse |
| 3 | +title: "bug: " |
| 4 | +labels: ["bug", "triage"] |
| 5 | +body: |
| 6 | + - type: markdown |
| 7 | + attributes: |
| 8 | + value: | |
| 9 | + Thanks for taking the time to fill out this bug report! |
| 10 | +
|
| 11 | + - type: input |
| 12 | + id: version |
| 13 | + attributes: |
| 14 | + label: Version |
| 15 | + description: What version of zParse are you using? |
| 16 | + placeholder: "1.0.0" |
| 17 | + validations: |
| 18 | + required: true |
| 19 | + |
| 20 | + - type: dropdown |
| 21 | + id: platform |
| 22 | + attributes: |
| 23 | + label: Platform |
| 24 | + description: What platform are you using? |
| 25 | + options: |
| 26 | + - Linux |
| 27 | + - macOS |
| 28 | + - Windows |
| 29 | + - Other (specify in description) |
| 30 | + validations: |
| 31 | + required: true |
| 32 | + |
| 33 | + - type: textarea |
| 34 | + id: description |
| 35 | + attributes: |
| 36 | + label: Describe the bug |
| 37 | + description: A clear and concise description of what the bug is. |
| 38 | + placeholder: "When I try to parse X, Y happens instead of Z..." |
| 39 | + validations: |
| 40 | + required: true |
| 41 | + |
| 42 | + - type: textarea |
| 43 | + id: reproduction |
| 44 | + attributes: |
| 45 | + label: To Reproduce |
| 46 | + description: Steps to reproduce the behavior |
| 47 | + placeholder: | |
| 48 | + 1. Create a file with content '...' |
| 49 | + 2. Run command '...' |
| 50 | + 3. See error |
| 51 | + validations: |
| 52 | + required: true |
| 53 | + |
| 54 | + - type: textarea |
| 55 | + id: example |
| 56 | + attributes: |
| 57 | + label: Example Code/Input |
| 58 | + description: Please provide a minimal example that demonstrates the issue |
| 59 | + render: rust |
| 60 | + placeholder: | |
| 61 | + use zparse::parse_file; |
| 62 | +
|
| 63 | + fn main() -> Result<(), Box<dyn std::error::Error>> { |
| 64 | + let value = parse_file("config.json")?; |
| 65 | + println!("{}", value); |
| 66 | + Ok(()) |
| 67 | + } |
| 68 | + validations: |
| 69 | + required: true |
| 70 | + |
| 71 | + - type: textarea |
| 72 | + id: expected |
| 73 | + attributes: |
| 74 | + label: Expected behavior |
| 75 | + description: A clear and concise description of what you expected to happen. |
| 76 | + validations: |
| 77 | + required: true |
| 78 | + |
| 79 | + - type: textarea |
| 80 | + id: actual |
| 81 | + attributes: |
| 82 | + label: Actual behavior |
| 83 | + description: What actually happened? |
| 84 | + placeholder: Include any error messages, stack traces, or unexpected output. |
| 85 | + validations: |
| 86 | + required: true |
| 87 | + |
| 88 | + - type: textarea |
| 89 | + id: additional |
| 90 | + attributes: |
| 91 | + label: Additional context |
| 92 | + description: Add any other context about the problem here |
| 93 | + validations: |
| 94 | + required: false |
| 95 | + |
| 96 | + - type: checkboxes |
| 97 | + id: terms |
| 98 | + attributes: |
| 99 | + label: Code of Conduct |
| 100 | + description: By submitting this issue, you agree to follow our Code of Conduct |
| 101 | + options: |
| 102 | + - label: I agree to follow this project's Code of Conduct |
| 103 | + required: true |
0 commit comments