All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH v4 0/2] Gitlab: Add issue templates
@ 2021-06-07 15:31 John Snow
  2021-06-07 15:31 ` [PATCH v4 1/2] GitLab: Add "Bug" issue reporting template John Snow
                   ` (4 more replies)
  0 siblings, 5 replies; 11+ messages in thread
From: John Snow @ 2021-06-07 15:31 UTC (permalink / raw)
  To: qemu-devel
  Cc: Peter Maydell, Thomas Huth, Peter Krempa,
	Daniel P . Berrangé,
	John Snow, Stefan Hajnoczi, Paolo Bonzini, Alex Bennée

Add "Bug" and "Feature Request" templates to the Gitlab interface to
help improve the quality of newly reported issues.

To see what this looks like, I've temporarily allowed my Gitlab fork to
diverge with these files merged.  See my fork's "new issue" page to see
it in action: https://gitlab.com/jsnow/qemu/-/issues/new?issue

(It's outdated a bit for V4, but you get the idea.)

These patches do not add a "default" template, the user still has to
select one from the list. I recommend that someone with permissions
updates the default template:

1. https://gitlab.com/qemu-project/qemu/edit
2. ctrl+f "Default description template for issues"
3. Update the default to the (suggested) below:

```
<!-- Select "Type: Issue" and choose one of the Description templates above. -->
```

We can use this cover letter to discuss/review the wording on that
default template which exists outside of repository data.

V4:
 - Change the "build on master" to be more of a nudge than a mandate,
   with improved instructions (stefanha, danpb)

V3:
 - Add pointer to https://www.qemu.org/download/#source
 - Add pointer to https://www.qemu.org/contribute/security-process/
 - Remove blurb covering tracing instructions.

V2:
- Updated both templates based on feedback from Peter, Daniel, and
  Thomas.

John Snow (2):
  GitLab: Add "Bug" issue reporting template
  GitLab: Add "Feature Request" issue template.

 .gitlab/issue_templates/bug.md             | 64 ++++++++++++++++++++++
 .gitlab/issue_templates/feature_request.md | 32 +++++++++++
 2 files changed, 96 insertions(+)
 create mode 100644 .gitlab/issue_templates/bug.md
 create mode 100644 .gitlab/issue_templates/feature_request.md

-- 
2.31.1




^ permalink raw reply	[flat|nested] 11+ messages in thread

* [PATCH v4 1/2] GitLab: Add "Bug" issue reporting template
  2021-06-07 15:31 [PATCH v4 0/2] Gitlab: Add issue templates John Snow
@ 2021-06-07 15:31 ` John Snow
  2021-06-08 13:57   ` Alex Bennée
  2021-06-07 15:31 ` [PATCH v4 2/2] GitLab: Add "Feature Request" issue template John Snow
                   ` (3 subsequent siblings)
  4 siblings, 1 reply; 11+ messages in thread
From: John Snow @ 2021-06-07 15:31 UTC (permalink / raw)
  To: qemu-devel
  Cc: Peter Maydell, Thomas Huth, Peter Krempa,
	Daniel P . Berrangé,
	John Snow, Stefan Hajnoczi, Paolo Bonzini, Alex Bennée

Based loosely on libvirt's template, written by Peter Krempa.

CC: Peter Krempa <pkrempa@redhat.com>
Signed-off-by: John Snow <jsnow@redhat.com>
---
 .gitlab/issue_templates/bug.md | 64 ++++++++++++++++++++++++++++++++++
 1 file changed, 64 insertions(+)
 create mode 100644 .gitlab/issue_templates/bug.md

diff --git a/.gitlab/issue_templates/bug.md b/.gitlab/issue_templates/bug.md
new file mode 100644
index 0000000000..e910f7b1c2
--- /dev/null
+++ b/.gitlab/issue_templates/bug.md
@@ -0,0 +1,64 @@
+<!--
+This is the upstream QEMU issue tracker.
+
+If you are able to, it will greatly facilitate bug triage if you attempt
+to reproduce the problem with the latest qemu.git master built from
+source. See https://www.qemu.org/download/#source for instructions on
+how to do this.
+
+QEMU generally supports the last two releases advertised on
+https://www.qemu.org/. Problems with distro-packaged versions of QEMU
+older than this should be reported to the distribution instead.
+
+See https://www.qemu.org/contribute/report-a-bug/ for additional
+guidance.
+
+If this is a security issue, please consult
+https://www.qemu.org/contribute/security-process/
+-->
+
+## Host environment
+ - Operating system: (Windows 10 21H1, Fedora 34, etc.)
+ - OS/kernel version: (For POSIX hosts, use `uname -a`)
+ - Architecture: (x86, ARM, s390x, etc.)
+ - QEMU flavor: (qemu-system-x86_64, qemu-aarch64, qemu-img, etc.)
+ - QEMU version: (e.g. `qemu-system-x86_64 --version`)
+ - QEMU command line:
+   <!--
+   Give the smallest, complete command line that exhibits the problem.
+
+   If you are using libvirt, virsh, or vmm, you can likely find the QEMU
+   command line arguments in /var/log/libvirt/qemu/$GUEST.log.
+   -->
+   ```
+   ./qemu-system-x86_64 -M q35 -m 4096 -enable-kvm -hda fedora32.qcow2
+   ```
+
+## Emulated/Virtualized environment
+ - Operating system: (Windows 10 21H1, Fedora 34, etc.)
+ - OS/kernel version: (For POSIX guests, use `uname -a`.)
+ - Architecture: (x86, ARM, s390x, etc.)
+
+
+## Description of problem
+<!-- Describe the problem, including any error/crash messages seen. -->
+
+
+## Steps to reproduce
+1.
+2.
+3.
+
+
+## Additional information
+
+<!--
+Attach logs, stack traces, screenshots, etc. Compress the files if necessary.
+If using libvirt, libvirt logs and XML domain information may be relevant.
+-->
+
+<!--
+The line below ensures that proper tags are added to the issue.
+Please do not remove it.
+-->
+/label ~"kind::Bug"
-- 
2.31.1



^ permalink raw reply related	[flat|nested] 11+ messages in thread

* [PATCH v4 2/2] GitLab: Add "Feature Request" issue template.
  2021-06-07 15:31 [PATCH v4 0/2] Gitlab: Add issue templates John Snow
  2021-06-07 15:31 ` [PATCH v4 1/2] GitLab: Add "Bug" issue reporting template John Snow
@ 2021-06-07 15:31 ` John Snow
  2021-06-08 13:59   ` Alex Bennée
  2021-06-08  8:33 ` [PATCH v4 0/2] Gitlab: Add issue templates Stefan Hajnoczi
                   ` (2 subsequent siblings)
  4 siblings, 1 reply; 11+ messages in thread
From: John Snow @ 2021-06-07 15:31 UTC (permalink / raw)
  To: qemu-devel
  Cc: Peter Maydell, Thomas Huth, Peter Krempa,
	Daniel P . Berrangé,
	John Snow, Stefan Hajnoczi, Paolo Bonzini, Alex Bennée

Based on Peter Krempa's libvirt template, feature.md.

CC: Peter Krempa <pkrempa@redhat.com>
Signed-off-by: John Snow <jsnow@redhat.com>
Reviewed-by: Stefan Hajnoczi <stefanha@redhat.com>
Reviewed-by: Thomas Huth <thuth@redhat.com>
---
 .gitlab/issue_templates/feature_request.md | 32 ++++++++++++++++++++++
 1 file changed, 32 insertions(+)
 create mode 100644 .gitlab/issue_templates/feature_request.md

diff --git a/.gitlab/issue_templates/feature_request.md b/.gitlab/issue_templates/feature_request.md
new file mode 100644
index 0000000000..fc58ca2763
--- /dev/null
+++ b/.gitlab/issue_templates/feature_request.md
@@ -0,0 +1,32 @@
+<!--
+This is the upstream QEMU issue tracker.
+
+Please note that QEMU, like most open source projects, relies on
+contributors who have motivation, skills and available time to work on
+implementing particular features.
+
+Feature requests can be helpful for determining demand and interest, but
+they are not a guarantee that a contributor will volunteer to implement
+it. We welcome and encourage even draft patches to implement a feature
+be sent to the mailing list where it can be discussed and developed
+further by the community.
+
+Thank you for your interest in helping us to make QEMU better!
+-->
+
+## Goal
+<!-- Describe the final result you want to achieve. Avoid design specifics. -->
+
+
+## Technical details
+<!-- Describe technical details, design specifics, suggestions, versions, etc. -->
+
+
+## Additional information
+
+
+<!--
+The line below ensures that proper tags are added to the issue.
+Please do not remove it.
+-->
+/label ~"kind::Feature Request"
-- 
2.31.1



^ permalink raw reply related	[flat|nested] 11+ messages in thread

* Re: [PATCH v4 0/2] Gitlab: Add issue templates
  2021-06-07 15:31 [PATCH v4 0/2] Gitlab: Add issue templates John Snow
  2021-06-07 15:31 ` [PATCH v4 1/2] GitLab: Add "Bug" issue reporting template John Snow
  2021-06-07 15:31 ` [PATCH v4 2/2] GitLab: Add "Feature Request" issue template John Snow
@ 2021-06-08  8:33 ` Stefan Hajnoczi
  2021-06-15  0:03 ` John Snow
  2021-06-23  9:25 ` Alex Bennée
  4 siblings, 0 replies; 11+ messages in thread
From: Stefan Hajnoczi @ 2021-06-08  8:33 UTC (permalink / raw)
  To: John Snow
  Cc: Peter Maydell, Thomas Huth, Peter Krempa,
	Daniel P . Berrangé,
	qemu-devel, Paolo Bonzini, Alex Bennée

[-- Attachment #1: Type: text/plain, Size: 1965 bytes --]

On Mon, Jun 07, 2021 at 11:31:53AM -0400, John Snow wrote:
> Add "Bug" and "Feature Request" templates to the Gitlab interface to
> help improve the quality of newly reported issues.
> 
> To see what this looks like, I've temporarily allowed my Gitlab fork to
> diverge with these files merged.  See my fork's "new issue" page to see
> it in action: https://gitlab.com/jsnow/qemu/-/issues/new?issue
> 
> (It's outdated a bit for V4, but you get the idea.)
> 
> These patches do not add a "default" template, the user still has to
> select one from the list. I recommend that someone with permissions
> updates the default template:
> 
> 1. https://gitlab.com/qemu-project/qemu/edit
> 2. ctrl+f "Default description template for issues"
> 3. Update the default to the (suggested) below:
> 
> ```
> <!-- Select "Type: Issue" and choose one of the Description templates above. -->
> ```
> 
> We can use this cover letter to discuss/review the wording on that
> default template which exists outside of repository data.
> 
> V4:
>  - Change the "build on master" to be more of a nudge than a mandate,
>    with improved instructions (stefanha, danpb)
> 
> V3:
>  - Add pointer to https://www.qemu.org/download/#source
>  - Add pointer to https://www.qemu.org/contribute/security-process/
>  - Remove blurb covering tracing instructions.
> 
> V2:
> - Updated both templates based on feedback from Peter, Daniel, and
>   Thomas.
> 
> John Snow (2):
>   GitLab: Add "Bug" issue reporting template
>   GitLab: Add "Feature Request" issue template.
> 
>  .gitlab/issue_templates/bug.md             | 64 ++++++++++++++++++++++
>  .gitlab/issue_templates/feature_request.md | 32 +++++++++++
>  2 files changed, 96 insertions(+)
>  create mode 100644 .gitlab/issue_templates/bug.md
>  create mode 100644 .gitlab/issue_templates/feature_request.md
> 
> -- 
> 2.31.1
> 
> 

Reviewed-by: Stefan Hajnoczi <stefanha@redhat.com>

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 488 bytes --]

^ permalink raw reply	[flat|nested] 11+ messages in thread

* Re: [PATCH v4 1/2] GitLab: Add "Bug" issue reporting template
  2021-06-07 15:31 ` [PATCH v4 1/2] GitLab: Add "Bug" issue reporting template John Snow
@ 2021-06-08 13:57   ` Alex Bennée
  0 siblings, 0 replies; 11+ messages in thread
From: Alex Bennée @ 2021-06-08 13:57 UTC (permalink / raw)
  To: John Snow
  Cc: Peter Maydell, Thomas Huth, Peter Krempa,
	Daniel P . Berrangé,
	qemu-devel, Stefan Hajnoczi, Paolo Bonzini


John Snow <jsnow@redhat.com> writes:

> Based loosely on libvirt's template, written by Peter Krempa.
>
> CC: Peter Krempa <pkrempa@redhat.com>
> Signed-off-by: John Snow <jsnow@redhat.com>

LGTM:

Reviewed-by: Alex Bennée <alex.bennee@linaro.org>

-- 
Alex Bennée


^ permalink raw reply	[flat|nested] 11+ messages in thread

* Re: [PATCH v4 2/2] GitLab: Add "Feature Request" issue template.
  2021-06-07 15:31 ` [PATCH v4 2/2] GitLab: Add "Feature Request" issue template John Snow
@ 2021-06-08 13:59   ` Alex Bennée
  2021-06-08 14:25     ` John Snow
  0 siblings, 1 reply; 11+ messages in thread
From: Alex Bennée @ 2021-06-08 13:59 UTC (permalink / raw)
  To: John Snow
  Cc: Peter Maydell, Thomas Huth, Peter Krempa,
	Daniel P . Berrangé,
	qemu-devel, Stefan Hajnoczi, Paolo Bonzini


John Snow <jsnow@redhat.com> writes:

> Based on Peter Krempa's libvirt template, feature.md.
>
> CC: Peter Krempa <pkrempa@redhat.com>
> Signed-off-by: John Snow <jsnow@redhat.com>
> Reviewed-by: Stefan Hajnoczi <stefanha@redhat.com>
> Reviewed-by: Thomas Huth <thuth@redhat.com>
> ---
>  .gitlab/issue_templates/feature_request.md | 32 ++++++++++++++++++++++
>  1 file changed, 32 insertions(+)
>  create mode 100644 .gitlab/issue_templates/feature_request.md
>
> diff --git a/.gitlab/issue_templates/feature_request.md b/.gitlab/issue_templates/feature_request.md
> new file mode 100644
> index 0000000000..fc58ca2763
> --- /dev/null
> +++ b/.gitlab/issue_templates/feature_request.md
> @@ -0,0 +1,32 @@
> +<!--
> +This is the upstream QEMU issue tracker.
> +
> +Please note that QEMU, like most open source projects, relies on
> +contributors who have motivation, skills and available time to work on
> +implementing particular features.
> +
> +Feature requests can be helpful for determining demand and interest, but
> +they are not a guarantee that a contributor will volunteer to implement
> +it. We welcome and encourage even draft patches to implement a feature
> +be sent to the mailing list where it can be discussed and developed
> +further by the community.
> +
> +Thank you for your interest in helping us to make QEMU better!
> +-->
> +
> +## Goal
> +<!-- Describe the final result you want to achieve. Avoid design specifics. -->
> +
> +
> +## Technical details
> +<!-- Describe technical details, design specifics, suggestions, versions, etc. -->
> +
> +
> +## Additional information

<!-- Patch or branch references, any other useful information -->?

Either way:

Reviewed-by: Alex Bennée <alex.bennee@linaro.org>


> +
> +
> +<!--
> +The line below ensures that proper tags are added to the issue.
> +Please do not remove it.
> +-->
> +/label ~"kind::Feature Request"


-- 
Alex Bennée


^ permalink raw reply	[flat|nested] 11+ messages in thread

* Re: [PATCH v4 2/2] GitLab: Add "Feature Request" issue template.
  2021-06-08 13:59   ` Alex Bennée
@ 2021-06-08 14:25     ` John Snow
  0 siblings, 0 replies; 11+ messages in thread
From: John Snow @ 2021-06-08 14:25 UTC (permalink / raw)
  To: Alex Bennée
  Cc: Peter Maydell, Thomas Huth, Peter Krempa,
	Daniel P . Berrangé,
	qemu-devel, Stefan Hajnoczi, Paolo Bonzini

On 6/8/21 9:59 AM, Alex Bennée wrote:
> <!-- Patch or branch references, any other useful information -->?
> 
> Either way:
> 
> Reviewed-by: Alex Bennée<alex.bennee@linaro.org>
> 
> 

Thanks. I'm not sure who will merge this -- It might even reasonably 
fall under your jurisdiction. You could squash this in if none of the 
other reviewers object to it.

--js



^ permalink raw reply	[flat|nested] 11+ messages in thread

* Re: [PATCH v4 0/2] Gitlab: Add issue templates
  2021-06-07 15:31 [PATCH v4 0/2] Gitlab: Add issue templates John Snow
                   ` (2 preceding siblings ...)
  2021-06-08  8:33 ` [PATCH v4 0/2] Gitlab: Add issue templates Stefan Hajnoczi
@ 2021-06-15  0:03 ` John Snow
  2021-06-15  8:26   ` Thomas Huth
  2021-06-23  9:25 ` Alex Bennée
  4 siblings, 1 reply; 11+ messages in thread
From: John Snow @ 2021-06-15  0:03 UTC (permalink / raw)
  To: qemu-devel
  Cc: Peter Maydell, Thomas Huth, Peter Krempa,
	Daniel P . Berrangé,
	Stefan Hajnoczi, Paolo Bonzini, Alex Bennée

On 6/7/21 11:31 AM, John Snow wrote:
> Add "Bug" and "Feature Request" templates to the Gitlab interface to
> help improve the quality of newly reported issues.
> 
> To see what this looks like, I've temporarily allowed my Gitlab fork to
> diverge with these files merged.  See my fork's "new issue" page to see
> it in action: https://gitlab.com/jsnow/qemu/-/issues/new?issue
> 
> (It's outdated a bit for V4, but you get the idea.)
> 
> These patches do not add a "default" template, the user still has to
> select one from the list. I recommend that someone with permissions
> updates the default template:
> 
> 1. https://gitlab.com/qemu-project/qemu/edit
> 2. ctrl+f "Default description template for issues"
> 3. Update the default to the (suggested) below:
> 
> ```
> <!-- Select "Type: Issue" and choose one of the Description templates above. -->
> ```
> 
> We can use this cover letter to discuss/review the wording on that
> default template which exists outside of repository data.
> 
> V4:
>   - Change the "build on master" to be more of a nudge than a mandate,
>     with improved instructions (stefanha, danpb)
> 
> V3:
>   - Add pointer to https://www.qemu.org/download/#source
>   - Add pointer to https://www.qemu.org/contribute/security-process/
>   - Remove blurb covering tracing instructions.
> 
> V2:
> - Updated both templates based on feedback from Peter, Daniel, and
>    Thomas.
> 
> John Snow (2):
>    GitLab: Add "Bug" issue reporting template
>    GitLab: Add "Feature Request" issue template.
> 
>   .gitlab/issue_templates/bug.md             | 64 ++++++++++++++++++++++
>   .gitlab/issue_templates/feature_request.md | 32 +++++++++++
>   2 files changed, 96 insertions(+)
>   create mode 100644 .gitlab/issue_templates/bug.md
>   create mode 100644 .gitlab/issue_templates/feature_request.md
> 

Gentle ping. I do not know whose jurisdiction this falls under.

--js



^ permalink raw reply	[flat|nested] 11+ messages in thread

* Re: [PATCH v4 0/2] Gitlab: Add issue templates
  2021-06-15  0:03 ` John Snow
@ 2021-06-15  8:26   ` Thomas Huth
  2021-06-22 13:22     ` John Snow
  0 siblings, 1 reply; 11+ messages in thread
From: Thomas Huth @ 2021-06-15  8:26 UTC (permalink / raw)
  To: John Snow, qemu-devel
  Cc: Peter Maydell, Peter Krempa, Daniel P . Berrangé,
	Stefan Hajnoczi, Paolo Bonzini, Alex Bennée

On 15/06/2021 02.03, John Snow wrote:
> On 6/7/21 11:31 AM, John Snow wrote:
>> Add "Bug" and "Feature Request" templates to the Gitlab interface to
>> help improve the quality of newly reported issues.
>>
>> To see what this looks like, I've temporarily allowed my Gitlab fork to
>> diverge with these files merged.  See my fork's "new issue" page to see
>> it in action: https://gitlab.com/jsnow/qemu/-/issues/new?issue
>>
>> (It's outdated a bit for V4, but you get the idea.)
>>
>> These patches do not add a "default" template, the user still has to
>> select one from the list. I recommend that someone with permissions
>> updates the default template:
>>
>> 1. https://gitlab.com/qemu-project/qemu/edit
>> 2. ctrl+f "Default description template for issues"
>> 3. Update the default to the (suggested) below:
>>
>> ```
>> <!-- Select "Type: Issue" and choose one of the Description templates 
>> above. -->
>> ```
>>
>> We can use this cover letter to discuss/review the wording on that
>> default template which exists outside of repository data.
>>
>> V4:
>>   - Change the "build on master" to be more of a nudge than a mandate,
>>     with improved instructions (stefanha, danpb)
>>
>> V3:
>>   - Add pointer to https://www.qemu.org/download/#source
>>   - Add pointer to https://www.qemu.org/contribute/security-process/
>>   - Remove blurb covering tracing instructions.
>>
>> V2:
>> - Updated both templates based on feedback from Peter, Daniel, and
>>    Thomas.
>>
>> John Snow (2):
>>    GitLab: Add "Bug" issue reporting template
>>    GitLab: Add "Feature Request" issue template.
>>
>>   .gitlab/issue_templates/bug.md             | 64 ++++++++++++++++++++++
>>   .gitlab/issue_templates/feature_request.md | 32 +++++++++++
>>   2 files changed, 96 insertions(+)
>>   create mode 100644 .gitlab/issue_templates/bug.md
>>   create mode 100644 .gitlab/issue_templates/feature_request.md
>>
> 
> Gentle ping. I do not know whose jurisdiction this falls under.

I assume this should be merged by someone who has maintainer rights in the 
qemu-project on gitlab (for also updating the default template)?

  Thomas



^ permalink raw reply	[flat|nested] 11+ messages in thread

* Re: [PATCH v4 0/2] Gitlab: Add issue templates
  2021-06-15  8:26   ` Thomas Huth
@ 2021-06-22 13:22     ` John Snow
  0 siblings, 0 replies; 11+ messages in thread
From: John Snow @ 2021-06-22 13:22 UTC (permalink / raw)
  To: Alex Bennée
  Cc: Peter Maydell, Thomas Huth, Peter Krempa,
	Daniel P . Berrangé,
	QEMU Developers, Stefan Hajnoczi, Paolo Bonzini,
	Alex Bennée

Alex, do you want to stage this one with your test pulls? (You could 
amend patch #2 with your suggestion when you do?)

On 6/15/21 4:26 AM, Thomas Huth wrote:
> On 15/06/2021 02.03, John Snow wrote:
>> On 6/7/21 11:31 AM, John Snow wrote:
>>> Add "Bug" and "Feature Request" templates to the Gitlab interface to
>>> help improve the quality of newly reported issues.
>>>
>>> To see what this looks like, I've temporarily allowed my Gitlab fork to
>>> diverge with these files merged.  See my fork's "new issue" page to see
>>> it in action: https://gitlab.com/jsnow/qemu/-/issues/new?issue
>>>
>>> (It's outdated a bit for V4, but you get the idea.)
>>>
>>> These patches do not add a "default" template, the user still has to
>>> select one from the list. I recommend that someone with permissions
>>> updates the default template:
>>>
>>> 1. https://gitlab.com/qemu-project/qemu/edit
>>> 2. ctrl+f "Default description template for issues"
>>> 3. Update the default to the (suggested) below:
>>>
>>> ```
>>> <!-- Select "Type: Issue" and choose one of the Description templates 
>>> above. -->
>>> ```
>>>
>>> We can use this cover letter to discuss/review the wording on that
>>> default template which exists outside of repository data.
>>>
>>> V4:
>>>   - Change the "build on master" to be more of a nudge than a mandate,
>>>     with improved instructions (stefanha, danpb)
>>>
>>> V3:
>>>   - Add pointer to https://www.qemu.org/download/#source
>>>   - Add pointer to https://www.qemu.org/contribute/security-process/
>>>   - Remove blurb covering tracing instructions.
>>>
>>> V2:
>>> - Updated both templates based on feedback from Peter, Daniel, and
>>>    Thomas.
>>>
>>> John Snow (2):
>>>    GitLab: Add "Bug" issue reporting template
>>>    GitLab: Add "Feature Request" issue template.
>>>
>>>   .gitlab/issue_templates/bug.md             | 64 ++++++++++++++++++++++
>>>   .gitlab/issue_templates/feature_request.md | 32 +++++++++++
>>>   2 files changed, 96 insertions(+)
>>>   create mode 100644 .gitlab/issue_templates/bug.md
>>>   create mode 100644 .gitlab/issue_templates/feature_request.md
>>>
>>
>> Gentle ping. I do not know whose jurisdiction this falls under.
> 
> I assume this should be merged by someone who has maintainer rights in 
> the qemu-project on gitlab (for also updating the default template)?
> 
>   Thomas
> 
> 



^ permalink raw reply	[flat|nested] 11+ messages in thread

* Re: [PATCH v4 0/2] Gitlab: Add issue templates
  2021-06-07 15:31 [PATCH v4 0/2] Gitlab: Add issue templates John Snow
                   ` (3 preceding siblings ...)
  2021-06-15  0:03 ` John Snow
@ 2021-06-23  9:25 ` Alex Bennée
  4 siblings, 0 replies; 11+ messages in thread
From: Alex Bennée @ 2021-06-23  9:25 UTC (permalink / raw)
  To: John Snow
  Cc: Peter Maydell, Thomas Huth, Peter Krempa,
	Daniel P . Berrangé,
	qemu-devel, Stefan Hajnoczi, Paolo Bonzini


John Snow <jsnow@redhat.com> writes:

> Add "Bug" and "Feature Request" templates to the Gitlab interface to
> help improve the quality of newly reported issues.
>
> To see what this looks like, I've temporarily allowed my Gitlab fork to
> diverge with these files merged.  See my fork's "new issue" page to see
> it in action: https://gitlab.com/jsnow/qemu/-/issues/new?issue
>
> (It's outdated a bit for V4, but you get the idea.)
>
> These patches do not add a "default" template, the user still has to
> select one from the list. I recommend that someone with permissions
> updates the default template:
>
> 1. https://gitlab.com/qemu-project/qemu/edit
> 2. ctrl+f "Default description template for issues"
> 3. Update the default to the (suggested) below:

Queued to testing/next, thanks.

-- 
Alex Bennée


^ permalink raw reply	[flat|nested] 11+ messages in thread

end of thread, other threads:[~2021-06-23  9:27 UTC | newest]

Thread overview: 11+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-06-07 15:31 [PATCH v4 0/2] Gitlab: Add issue templates John Snow
2021-06-07 15:31 ` [PATCH v4 1/2] GitLab: Add "Bug" issue reporting template John Snow
2021-06-08 13:57   ` Alex Bennée
2021-06-07 15:31 ` [PATCH v4 2/2] GitLab: Add "Feature Request" issue template John Snow
2021-06-08 13:59   ` Alex Bennée
2021-06-08 14:25     ` John Snow
2021-06-08  8:33 ` [PATCH v4 0/2] Gitlab: Add issue templates Stefan Hajnoczi
2021-06-15  0:03 ` John Snow
2021-06-15  8:26   ` Thomas Huth
2021-06-22 13:22     ` John Snow
2021-06-23  9:25 ` Alex Bennée

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.