|
| 1 | +name: "⚠️ Bug report" |
| 2 | +description: Create a report to help us improve the reachability metadata repo. |
| 3 | +title: "Bug: " |
| 4 | +labels: |
| 5 | + - bug |
| 6 | +assignees: |
| 7 | + - vjovanov |
| 8 | + |
| 9 | +body: |
| 10 | + - type: markdown |
| 11 | + attributes: |
| 12 | + value: | |
| 13 | + Thanks for taking the time to file a bug report. |
| 14 | +
|
| 15 | + Important: |
| 16 | + - This form is for general bugs in this repository. |
| 17 | + - If your issue is specific to a single third-party library's metadata, please use one of these forms instead: |
| 18 | + - "📚 Support a new library" |
| 19 | + - "🛠️ Update an existing library" |
| 20 | +
|
| 21 | + - type: textarea |
| 22 | + id: bug_description |
| 23 | + attributes: |
| 24 | + label: Describe the bug |
| 25 | + description: A clear and concise description of the bug. |
| 26 | + placeholder: What happened? What did you expect to happen instead? |
| 27 | + validations: |
| 28 | + required: true |
| 29 | + |
| 30 | + - type: textarea |
| 31 | + id: reproduce_steps |
| 32 | + attributes: |
| 33 | + label: Steps to reproduce |
| 34 | + description: | |
| 35 | + Provide clear steps to reproduce the behavior. Use code blocks for configuration and commands. |
| 36 | + You can attach a minimal reproducer (zip file or link to a public repository/branch). |
| 37 | + placeholder: | |
| 38 | + 1. ... |
| 39 | + 2. ... |
| 40 | + 3. ... |
| 41 | + render: markdown |
| 42 | + validations: |
| 43 | + required: true |
| 44 | + |
| 45 | + - type: textarea |
| 46 | + id: expected_behavior |
| 47 | + attributes: |
| 48 | + label: Expected behavior |
| 49 | + description: A clear and concise description of what you expected to happen. |
| 50 | + placeholder: What did you expect to happen? |
| 51 | + validations: |
| 52 | + required: true |
| 53 | + |
| 54 | + - type: textarea |
| 55 | + id: logs |
| 56 | + attributes: |
| 57 | + label: Logs and error messages |
| 58 | + description: | |
| 59 | + Include relevant error messages, stack traces, or log excerpts that show the problem. Use code blocks for large logs or provide links to files. |
| 60 | + Please follow the [troubleshooting guide](https://www.graalvm.org/latest/reference-manual/native-image/guides/troubleshoot-run-time-errors/) and include any missing metadata stack traces. |
| 61 | + placeholder: | |
| 62 | + ```console |
| 63 | + <log content> |
| 64 | + ``` |
| 65 | + render: text |
| 66 | + validations: |
| 67 | + required: true |
| 68 | + |
| 69 | + - type: input |
| 70 | + id: reproducer_link |
| 71 | + attributes: |
| 72 | + label: Reproducer (optional) |
| 73 | + description: Link to a public repository/branch or a shared artifact containing a minimal reproducer. |
| 74 | + placeholder: https://github.com/org/repo/tree/branch |
| 75 | + validations: |
| 76 | + required: false |
| 77 | + |
| 78 | + - type: textarea |
| 79 | + id: additional_context |
| 80 | + attributes: |
| 81 | + label: Additional context |
| 82 | + description: Add any other context that might help investigate the problem. |
| 83 | + placeholder: Any other relevant details, environment specifics, or hypotheses. |
| 84 | + validations: |
| 85 | + required: false |
| 86 | + |
| 87 | + - type: markdown |
| 88 | + attributes: |
| 89 | + value: | |
| 90 | + |
| 91 | + ### System information |
| 92 | +
|
| 93 | + - type: input |
| 94 | + id: graalvm_version |
| 95 | + attributes: |
| 96 | + label: GraalVM version |
| 97 | + description: State the exact GraalVM distribution and version you used (e.g., "GraalVM 25.0.1", "Oracle GraalVM 25.0.1"). |
| 98 | + placeholder: e.g., GraalVM 25.0.2 |
| 99 | + validations: |
| 100 | + required: true |
| 101 | + |
| 102 | + - type: dropdown |
| 103 | + id: operating_system |
| 104 | + attributes: |
| 105 | + label: Operating system |
| 106 | + description: Select the operating system used to reproduce the issue. |
| 107 | + options: |
| 108 | + - Linux |
| 109 | + - macOS |
| 110 | + - Windows |
| 111 | + - Other |
| 112 | + validations: |
| 113 | + required: true |
| 114 | + |
| 115 | + - type: dropdown |
| 116 | + id: architecture |
| 117 | + attributes: |
| 118 | + label: CPU architecture |
| 119 | + description: Select the CPU architecture used to reproduce the issue. |
| 120 | + options: |
| 121 | + - AMD64 (x86-64) |
| 122 | + - AARCH64 (ARM64) |
| 123 | + - RISC-V |
| 124 | + validations: |
| 125 | + required: true |
0 commit comments