Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
28 changes: 0 additions & 28 deletions .github/ISSUE_TEMPLATE/bug_report.md

This file was deleted.

65 changes: 65 additions & 0 deletions .github/ISSUE_TEMPLATE/bug_report.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,65 @@
name: "Bug report 🐛"
description: Create a report to help us improve
labels: ["C-bug"]
body:
- type: input
id: version
attributes:
label: Version
description: List the version(s) of `hyper`, and any relevant hyper dependency (such as `h2` if this is related to HTTP/2).
placeholder: "hyper 1.0.0, h2 0.4.0"
validations:
required: true

- type: input
id: platform
attributes:
label: Platform
description: The output of `uname -a` (UNIX), or version and 32 or 64-bit (Windows)
placeholder: "Linux 5.15.0 x86_64 / Windows 11 64-bit"
validations:
required: true

- type: textarea
id: summary
attributes:
label: Summary
description: A short summary of the bug
placeholder: "Brief description of what went wrong"
validations:
required: true

- type: textarea
id: code
attributes:
label: Code Sample
description: Code sample that causes the bug (if applicable)
render: rust
placeholder: |
use hyper::...;

fn main() {
// code that reproduces the bug
}

- type: textarea
id: expected
attributes:
label: Expected Behavior
description: What you expected to happen
validations:
required: true

- type: textarea
id: actual
attributes:
label: Actual Behavior
description: What actually happened instead
validations:
required: true

- type: textarea
id: additional
attributes:
label: Additional Context
description: Any other context about the problem (stack traces, related issues, etc.)