Skip to content

Commit

Permalink
Merge pull request quarkusio#36492 from zakkak/2023-10-16-native-issu…
Browse files Browse the repository at this point in the history
…e-template

Proposal: Introduce new issue template for native executable bugs
  • Loading branch information
gsmet authored Oct 18, 2023
2 parents 3e4be97 + 6e8f2ee commit 89ed09e
Show file tree
Hide file tree
Showing 2 changed files with 78 additions and 4 deletions.
4 changes: 0 additions & 4 deletions .github/ISSUE_TEMPLATE/bug_report.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,10 +51,6 @@ body:
id: java_version
attributes:
label: Output of `java -version`
- type: input
id: graalvm_version
attributes:
label: GraalVM version (if different from Java)
- type: input
id: quarkus_version
attributes:
Expand Down
78 changes: 78 additions & 0 deletions .github/ISSUE_TEMPLATE/bug_report_native.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,78 @@
name: Bug Report for Quarkus native executables
description: Report a bug in Quarkus that only appears when building a native executable
labels:
- kind/bug
- area/native-image
body:
- type: textarea
id: description
validations:
required: true
attributes:
label: Describe the bug
description: >-
Describe the issue you are experiencing here to communicate to the
maintainers. Tell us what you were trying to do and what happened.
Make sure the issue is not reproducible in JVM mode. If the
issue is reproducible in JVM mode please open a "Bug Report".
Provide a clear and concise description of what the problem is.
- type: textarea
id: expected_behavior
attributes:
label: Expected behavior
description: >-
Describe the expected behavior clearly and concisely.
- type: textarea
id: actual_behavior
attributes:
label: Actual behavior
description: >-
Describe the actual behavior clearly and concisely.
- type: textarea
id: how_to_reproduce
attributes:
label: How to Reproduce?
description: >-
Link to a small reproducer (preferably a Maven project if the issue is not Gradle-specific) or attach an archive containing the reproducer to the issue.
placeholder: |
Reproducer:
Steps to reproduce the behavior:
1.
2.
3.
- type: markdown
id: environment
attributes:
value: |
## Environment
- type: input
id: uname
attributes:
label: Output of `uname -a` or `ver`
- type: input
id: java_version
attributes:
label: Output of `java -version`
- type: input
id: graalvm_version
attributes:
label: Mandrel or GraalVM version (if different from Java)
- type: input
id: quarkus_version
attributes:
label: Quarkus version or git rev
- type: input
id: build_tool
attributes:
label: Build tool (ie. output of `mvnw --version` or `gradlew --version`)
- type: textarea
id: additional_info
attributes:
label: Additional information
description: >
If you have any additional information for us, use the field below.
Please note, you can attach screenshots or screen recordings here, by
dragging and dropping files in the field below.

0 comments on commit 89ed09e

Please sign in to comment.