This change introduces three new issue templates for DXC. The three
issue templates are:

* feature_request - Issues filed with this template will get
automatically tagged with the `enhancement` label
* bug_report - Issues filed with this template will get automatically
get tagged with the `bug` label
* bug_report_spirv - Issues filed with this template will get
automatically tagged with the `bug` and `spirv` labels

The bug_report and bug_report_spirv templates are otherwise identical,
but could diverge to better meet the needs of the supporting teams.

Fixes #4975.
This commit is contained in:
Chris B 2023-06-29 12:23:54 -05:00 коммит произвёл GitHub
Родитель c462faa844
Коммит d599cd98b0
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
3 изменённых файлов: 77 добавлений и 0 удалений

27
.github/ISSUE_TEMPLATE/bug_report.md поставляемый Normal file
Просмотреть файл

@ -0,0 +1,27 @@
---
name: Bug Report
about: Report an issue with DXC
title: ''
labels: ['bug', 'needs-triage']
assignees: ''
---
**Description**
<!--- Please provide a few sentences describing the issue you encountered. --->
**Steps to Reproduce**
<!--- Provide a description of how to reproduce the error. If possible please
provide source and tool command line options. If the issue reproduces on
Compiler Explorer (https://godbolt.org/) or Shader Playground
(https://shader-playground.timjones.io/) please provide a link. If the source is
split across multiple files, please preprocess into a single file using DXC's
command line `-P -Fi <path>`. --->
**Actual Behavior**
<!--- Please provide error output or a description of the observed issue. --->
**Environment**
- DXC version <!-- replace with the output of 'dxc --version' -->
- Host Operating System <!--- Host operating system and version --->

27
.github/ISSUE_TEMPLATE/bug_report_spirv.md поставляемый Normal file
Просмотреть файл

@ -0,0 +1,27 @@
---
name: SPIR-V Bug Report
about: Report an issue with DXC SPIR-V generation
title: '[SPIR-V]'
labels: ['bug', 'spirv', 'needs-triage']
assignees: ''
---
**Description**
<!--- Please provide a few sentences describing the issue you encountered. --->
**Steps to Reproduce**
<!--- Provide a description of how to reproduce the error. If possible please
provide source and tool command line options. If the issue reproduces on
Compiler Explorer (https://godbolt.org/) or Shader Playground
(https://shader-playground.timjones.io/) please provide a link. If the source is
split across multiple files, please preprocess into a single file using DXC's
command line `-P -Fi <path>`. --->
**Actual Behavior**
<!--- Please provide error output or a description of the observed issue. --->
**Environment**
- DXC version <!-- replace with the output of 'dxc --version' -->
- Host Operating System <!--- Host operating system and version --->

23
.github/ISSUE_TEMPLATE/feature_request.md поставляемый Normal file
Просмотреть файл

@ -0,0 +1,23 @@
---
name: Feature request
about: Suggest an idea for this project
title: '[Feature Request]'
labels: ['enhancement', 'needs-triage']
assignees: ''
---
<!--- If this is a language feature request please file the issue against the
hlsl-specs repository: https://github.com/microsoft/hlsl-specs/issues/new --->
**Is your feature request related to a problem? Please describe.**
Describe the problem that led you to request this feature in as much detail as you can.
**Describe the solution you'd like**
A clear and concise description of what you want to happen.
**Describe alternatives you've considered**
A clear and concise description of any alternative solutions or features you've considered.
**Additional context**
Add any other context or screenshots about the feature request here.