|
| 1 | +name: Bug Report |
| 2 | +description: Report a bug or unexpected behavior in ReactiveMP |
| 3 | +title: "[Bug]: " |
| 4 | +labels: ["bug"] |
| 5 | +body: |
| 6 | + - type: markdown |
| 7 | + attributes: |
| 8 | + value: | |
| 9 | + Thanks for taking the time to report a bug! Please fill out the form below to help us understand and fix the issue. Before submitting a bug, please make sure the issue hasn't been already addressed by searching through [the existing and past issues](https://github.com/ReactiveBayes/ReactiveMP.jl/issues?q=is%3Aissue+sort%3Acreated-desc+). Additionally, make sure that you've searched relevant information in the [documentation](https://reactivebayes.github.io/ReactiveMP.jl/stable/). |
| 10 | +
|
| 11 | + - type: textarea |
| 12 | + id: description |
| 13 | + attributes: |
| 14 | + label: Description |
| 15 | + description: A clear and concise description of what the bug is |
| 16 | + placeholder: Describe the bug... |
| 17 | + validations: |
| 18 | + required: true |
| 19 | + |
| 20 | + - type: textarea |
| 21 | + id: expected |
| 22 | + attributes: |
| 23 | + label: Expected Behavior |
| 24 | + description: What you expected to happen |
| 25 | + placeholder: Describe what you expected... |
| 26 | + validations: |
| 27 | + required: true |
| 28 | + |
| 29 | + - type: textarea |
| 30 | + id: actual |
| 31 | + attributes: |
| 32 | + label: Actual Behavior |
| 33 | + description: What actually happened |
| 34 | + placeholder: Describe what actually happened... |
| 35 | + validations: |
| 36 | + required: true |
| 37 | + |
| 38 | + - type: textarea |
| 39 | + id: code |
| 40 | + attributes: |
| 41 | + label: Minimal Reproducible Example or steps to reproduce the issue |
| 42 | + description: Please provide a minimal code example that reproduces the issue |
| 43 | + placeholder: | |
| 44 | + ```julia |
| 45 | + using ReactiveMP |
| 46 | + # Your minimal example here |
| 47 | + ``` |
| 48 | + validations: |
| 49 | + required: true |
| 50 | + |
| 51 | + - type: textarea |
| 52 | + id: error |
| 53 | + attributes: |
| 54 | + label: Error Message / Stack Trace |
| 55 | + description: If applicable, paste the full error message or stack trace |
| 56 | + placeholder: Paste error message here... |
| 57 | + render: shell |
| 58 | + |
| 59 | + - type: dropdown |
| 60 | + id: julia-version |
| 61 | + attributes: |
| 62 | + label: Julia Version |
| 63 | + description: What version of Julia are you using? |
| 64 | + options: |
| 65 | + - "1.10" |
| 66 | + - "1.11" |
| 67 | + - "1.12" |
| 68 | + - "Other (please specify in additional context)" |
| 69 | + validations: |
| 70 | + required: true |
| 71 | + |
| 72 | + - type: dropdown |
| 73 | + id: reactivemp-version |
| 74 | + attributes: |
| 75 | + label: ReactiveMP Version |
| 76 | + description: What version of ReactiveMP are you using? |
| 77 | + options: |
| 78 | + - "Latest stable" |
| 79 | + - "Latest dev" |
| 80 | + - "Other (please specify in additional context)" |
| 81 | + validations: |
| 82 | + required: true |
| 83 | + |
| 84 | + - type: textarea |
| 85 | + id: environment |
| 86 | + attributes: |
| 87 | + label: Environment Information |
| 88 | + description: | |
| 89 | + Please provide information about your environment (OS, package versions, etc.) |
| 90 | + You can run `] status` in Julia to get package versions. |
| 91 | + placeholder: | |
| 92 | + - OS: [e.g., macOS 14.0, Linux Ubuntu 22.04, Windows 11] |
| 93 | + - Package versions: [paste output of `] status`] |
| 94 | + render: shell |
| 95 | + |
| 96 | + - type: textarea |
| 97 | + id: additional |
| 98 | + attributes: |
| 99 | + label: Additional Context |
| 100 | + description: Add any other context, screenshots, or information about the problem here |
| 101 | + placeholder: Any additional information... |
| 102 | + |
0 commit comments