Skip to content

Commit ac60b87

Browse files
authored
Use bug report form (Azure#25516)
1 parent ce54c81 commit ac60b87

File tree

7 files changed

+113
-58
lines changed

7 files changed

+113
-58
lines changed
Lines changed: 59 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,59 @@
1+
name: Bug report
2+
description: Create a report to help us improve
3+
title: "[BUG]"
4+
5+
body:
6+
- type: input
7+
id: library
8+
attributes:
9+
label: Library name and version
10+
description: Name and version of the Library package used
11+
placeholder: ex. Azure.Storage.Blobs 12.2.0
12+
validations:
13+
required: true
14+
- type: textarea
15+
id: background
16+
attributes:
17+
label: Describe the bug
18+
description: Please provide the description of issue you're seeing.
19+
placeholder: Description
20+
validations:
21+
required: true
22+
- type: textarea
23+
id: expected-behavior
24+
attributes:
25+
label: Expected behavior
26+
description: |
27+
Provide a description of the expected behavior.
28+
placeholder: Expected behavior
29+
validations:
30+
required: true
31+
- type: textarea
32+
id: actual-behavior
33+
attributes:
34+
label: Actual behavior
35+
description: |
36+
Provide a description of the actual behavior observed. If applicable please include any error messages, exception stacktraces or memory dumps.
37+
placeholder: Actual behavior
38+
validations:
39+
required: true
40+
- type: textarea
41+
id: repro-steps
42+
attributes:
43+
label: Reproduction Steps
44+
description: |
45+
Please include minimal steps to reproduce the problem if possible. E.g.: the smallest possible code snippet; or a small project, with steps to run it. If possible include text as text rather than screenshots (so it shows up in searches).
46+
placeholder: Minimal Reproduction
47+
validations:
48+
required: true
49+
- type: textarea
50+
id: environment
51+
attributes:
52+
label: Environment
53+
description: |
54+
Please provide more information on your environment:
55+
* Hosting platform or OS and .NET runtime version (`dotnet --info` output for .NET Core projects): [e.g. Azure AppService or Windows 10 .NET Framework 4.8]
56+
* IDE and version : [e.g. Visual Studio 16.3]
57+
placeholder: Environment
58+
validations:
59+
required: false
Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
name: Feature request
2+
description: Suggest an idea for this project.
3+
title: "[FEATURE REQ]"
4+
5+
body:
6+
- type: input
7+
id: library
8+
attributes:
9+
label: Library name
10+
description: Name of the Library package
11+
placeholder: ex. Azure.Storage.Blobs
12+
validations:
13+
required: true
14+
- type: textarea
15+
id: background
16+
attributes:
17+
label: Please describe the feature.
18+
description: What feature would you like to get added? What problem is it solving?
19+
placeholder: Feature description
20+
validations:
21+
required: true
Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
name: Question/Query
2+
description: Use this template to file a question/query for the SDK team that are not bugs or feature requests.
3+
title: "[QUERY]"
4+
5+
body:
6+
- type: input
7+
id: library
8+
attributes:
9+
label: Library name and version
10+
description: Name and version of the Library package used
11+
placeholder: ex. Azure.Storage.Blobs 12.2.0
12+
validations:
13+
required: true
14+
- type: textarea
15+
id: background
16+
attributes:
17+
label: Query/Question
18+
description: How can we help?
19+
placeholder: Description
20+
validations:
21+
required: true
22+
- type: textarea
23+
id: environment
24+
attributes:
25+
label: Environment
26+
description: |
27+
Please provide more information on your environment:
28+
* Hosting platform or OS and .NET runtime version (`dotnet --info` output for .NET Core projects): [e.g. Azure AppService or Windows 10 .NET Framework 4.8]
29+
* IDE and version : [e.g. Visual Studio 16.3]
30+
placeholder: Environment
31+
validations:
32+
required: false

.github/ISSUE_TEMPLATE/bug_report.md

Lines changed: 0 additions & 28 deletions
This file was deleted.

.github/ISSUE_TEMPLATE/config.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
blank_issues_enabled: true

.github/ISSUE_TEMPLATE/feature_request.md

Lines changed: 0 additions & 14 deletions
This file was deleted.

.github/ISSUE_TEMPLATE/question.md

Lines changed: 0 additions & 16 deletions
This file was deleted.

0 commit comments

Comments
 (0)