Skip to content

Commit 854acec

Browse files
ISSUE_TEMPLATE: migrate to new issue forms workflow
Signed-off-by: Emmanuel Ferdman <[email protected]>
1 parent 7c34736 commit 854acec

File tree

4 files changed

+108
-13
lines changed

4 files changed

+108
-13
lines changed

.github/ISSUE_TEMPLATE.md

Lines changed: 0 additions & 13 deletions
This file was deleted.
Lines changed: 70 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,70 @@
1+
name: Bug Report
2+
title: "Bug: "
3+
description: Report a bug or unexpected behavior
4+
labels: bug
5+
body:
6+
- type: markdown
7+
attributes:
8+
value: |
9+
Thanks for taking the time to report a bug!
10+
11+
- type: textarea
12+
id: expected
13+
attributes:
14+
label: Expected behavior
15+
description: Tell us what should happen.
16+
validations:
17+
required: true
18+
19+
- type: textarea
20+
id: actual
21+
attributes:
22+
label: Actual behavior
23+
description: Tell us what happens instead.
24+
validations:
25+
required: true
26+
27+
- type: textarea
28+
id: logs
29+
attributes:
30+
label: Log, debug output
31+
description: Put any log or error output here.
32+
render: shell
33+
34+
- type: dropdown
35+
id: os
36+
attributes:
37+
label: Operating system
38+
options:
39+
- macOS
40+
- Linux
41+
- Windows
42+
- Other
43+
validations:
44+
required: true
45+
46+
- type: input
47+
id: os-version
48+
attributes:
49+
label: OS version (optional)
50+
description: Add OS version if relevant to the bug.
51+
placeholder: e.g., Ubuntu 22.04, Windows 11
52+
53+
- type: input
54+
id: node-version
55+
attributes:
56+
label: Node.js version
57+
description: Run `node --version` to find this.
58+
placeholder: e.g., v20.10.0
59+
validations:
60+
required: true
61+
62+
- type: input
63+
id: tldr-version
64+
attributes:
65+
label: tldr-node-client version
66+
description: Run `tldr --version` to find this.
67+
placeholder: e.g., 4.0.0
68+
validations:
69+
required: true
70+

.github/ISSUE_TEMPLATE/config.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
blank_issues_enabled: true
2+
contact_links:
3+
- name: tldr pages repository
4+
url: https://github.com/tldr-pages/tldr
5+
about: For issues with tldr page content, not the client
6+
Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
name: Feature Request
2+
title: "Feature: "
3+
description: Suggest a new feature or enhancement
4+
labels: enhancement
5+
body:
6+
- type: markdown
7+
attributes:
8+
value: |
9+
Thanks for suggesting a feature!
10+
11+
- type: textarea
12+
id: description
13+
attributes:
14+
label: Feature description
15+
description: Describe the feature you'd like to see.
16+
validations:
17+
required: true
18+
19+
- type: textarea
20+
id: use-case
21+
attributes:
22+
label: Use case
23+
description: Explain why this feature would be useful.
24+
validations:
25+
required: true
26+
27+
- type: textarea
28+
id: alternatives
29+
attributes:
30+
label: Alternatives considered
31+
description: Describe any alternative solutions or features you've considered.
32+

0 commit comments

Comments
 (0)