bug_report: use issue forms instead of markdown template
Issue forms allow you to define web-like input forms using YAML syntax. It allows you to guide the reporter to get the required information. Signed-off-by: Jan Macku <jamacku@redhat.com> Closes #11474
This commit is contained in:
parent
7b4da487d5
commit
3b3c41f933
28
.github/ISSUE_TEMPLATE/bug_report.md
vendored
28
.github/ISSUE_TEMPLATE/bug_report.md
vendored
@ -1,28 +0,0 @@
|
||||
---
|
||||
name: Bug report
|
||||
about: Create a report to help us improve
|
||||
title: ''
|
||||
labels: ''
|
||||
assignees: ''
|
||||
|
||||
---
|
||||
|
||||
<!-- Only file bugs here! Ask questions on the mailing lists https://curl.se/mail/
|
||||
|
||||
SECURITY RELATED? Post it here: https://hackerone.com/curl
|
||||
|
||||
There are collections of known issues to be aware of:
|
||||
https://curl.se/docs/knownbugs.html
|
||||
https://curl.se/docs/todo.html -->
|
||||
|
||||
### I did this
|
||||
|
||||
### I expected the following
|
||||
|
||||
### curl/libcurl version
|
||||
|
||||
[curl -V output]
|
||||
|
||||
### operating system
|
||||
|
||||
<!-- On Unix please post the output of "uname -a" -->
|
||||
55
.github/ISSUE_TEMPLATE/bug_report.yml
vendored
Normal file
55
.github/ISSUE_TEMPLATE/bug_report.yml
vendored
Normal file
@ -0,0 +1,55 @@
|
||||
# Copyright (C) Daniel Stenberg, <daniel@haxx.se>, et al.
|
||||
#
|
||||
# SPDX-License-Identifier: curl
|
||||
|
||||
name: Bug Report
|
||||
description: Create a report to help us improve
|
||||
|
||||
body:
|
||||
- type: markdown
|
||||
attributes:
|
||||
value: |
|
||||
Thanks for taking the time to fill out this bug report!
|
||||
|
||||
Only file bugs here! Ask questions on the mailing lists https://curl.se/mail/
|
||||
|
||||
**SECURITY RELATED?** Post it here: https://hackerone.com/curl
|
||||
|
||||
There are collections of known issues to be aware of:
|
||||
|
||||
- https://curl.se/docs/knownbugs.html
|
||||
- https://curl.se/docs/todo.html
|
||||
|
||||
- type: textarea
|
||||
id: reproducer
|
||||
attributes:
|
||||
label: I did this
|
||||
validations:
|
||||
required: false
|
||||
|
||||
- type: textarea
|
||||
id: expected-behaviour
|
||||
attributes:
|
||||
label: I expected the following
|
||||
validations:
|
||||
required: false
|
||||
|
||||
- type: input
|
||||
id: version
|
||||
attributes:
|
||||
label: curl/libcurl version
|
||||
description: |
|
||||
Please paste the output of `curl -V` here.
|
||||
placeholder: 'curl 8.2.0'
|
||||
validations:
|
||||
required: false
|
||||
|
||||
- type: input
|
||||
id: os
|
||||
attributes:
|
||||
label: operating system
|
||||
description: |
|
||||
On Unix please post the output of `uname -a` here.
|
||||
placeholder: 'Fedora Linux 38'
|
||||
validations:
|
||||
required: false
|
||||
Loading…
Reference in New Issue
Block a user