Skip to content

Commit cc27f53

Browse files
feat: add interactive issue templates (#4397)
Co-authored-by: Raisolution <madjarov@progress.com>
1 parent b8b23a6 commit cc27f53

File tree

7 files changed

+124
-81
lines changed

7 files changed

+124
-81
lines changed
Lines changed: 81 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,81 @@
1+
name: 🐞 Bug Report
2+
description: Please provide a detailed description and include all relevant information about the issue. If you have any doubts regarding the expected behavior, consult our documentation https://www.telerik.com/kendo-angular-ui/components/
3+
labels: ["Bug"]
4+
body:
5+
- type: textarea
6+
attributes:
7+
label: Description
8+
description: Add a concise description of the issue and any relevant information.
9+
validations:
10+
required: true
11+
- type: textarea
12+
attributes:
13+
label: Steps To Reproduce
14+
description: |
15+
Include:
16+
- List of concise steps to replicate the issue
17+
- Runnable demo in StackBlitz or CodeSandBox (You can edit an example from our [documentation](https://www.telerik.com/kendo-angular-ui/components/) through the **EDIT IN** button)
18+
validations:
19+
required: true
20+
- type: textarea
21+
attributes:
22+
label: Screenshots or video
23+
description: Provide screenshots or a video of the issue.
24+
validations:
25+
required: false
26+
- type: textarea
27+
attributes:
28+
label: Actual Behavior
29+
description: A clear and concise description of what is the current behavior.
30+
validations:
31+
required: true
32+
- type: textarea
33+
attributes:
34+
label: Expected Behavior
35+
description: A clear and concise description of what you expected to happen.
36+
validations:
37+
required: true
38+
- type: dropdown
39+
attributes:
40+
label: Browser
41+
description: Select all browsers in which you reproduce the issue.
42+
multiple: true
43+
options:
44+
- All
45+
- Chrome
46+
- Firefox
47+
- Safari
48+
- Microsoft Edge
49+
default: 1
50+
validations:
51+
required: true
52+
- type: input
53+
attributes:
54+
label: Browser version
55+
value: "latest"
56+
validations:
57+
required: true
58+
- type: dropdown
59+
attributes:
60+
label: OS Type
61+
multiple: true
62+
options:
63+
- Windows
64+
- MacOS
65+
- Linux
66+
- Android
67+
- iOS
68+
- Other
69+
default: 1
70+
validations:
71+
required: false
72+
- type: input
73+
attributes:
74+
label: OS version
75+
validations:
76+
required: false
77+
- type: input
78+
attributes:
79+
label: Last working version of the Kendo UI for Angular package (if regression).
80+
validations:
81+
required: false
Lines changed: 41 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
name: 📄 Documentation issue
2+
description: Please provide a detailed description about missing or outdated documentation, broken links and examples.
3+
labels: ["Documentation"]
4+
body:
5+
- type: textarea
6+
attributes:
7+
label: Describe the issue
8+
description: A clear and concise description of the issue and any relevant information.
9+
validations:
10+
required: true
11+
- type: input
12+
attributes:
13+
label: Page URL
14+
description: A link to the affected documentation page.
15+
validations:
16+
required: true
17+
- type: textarea
18+
attributes:
19+
label: Screenshots or video
20+
description: Provide screenshots or a video of the issue.
21+
validations:
22+
required: false
23+
- type: dropdown
24+
attributes:
25+
label: Browser Type
26+
multiple: true
27+
options:
28+
- All
29+
- Chrome
30+
- Safari
31+
- Firefox
32+
- Microsoft Edge
33+
default: 1
34+
validations:
35+
required: true
36+
- type: input
37+
attributes:
38+
label: Browser version
39+
value: "latest"
40+
validations:
41+
required: true

.github/ISSUE_TEMPLATE/bug_report.md

Lines changed: 0 additions & 48 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: false

.github/ISSUE_TEMPLATE/documentation-issue.md

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

.github/ISSUE_TEMPLATE/feature-request.md

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

.github/ISSUE_TEMPLATE/other.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
name: Other
33
about: Ask a question or share additional feedback.
44
title: ''
5-
labels: ''
5+
labels: 'Question'
66
assignees: ''
77

88
---

0 commit comments

Comments
 (0)