Skip to content

Commit c5faaa9

Browse files
authored
Merge pull request #250 from k-takata/add-issue-templates
Add issue templates
2 parents dfd2613 + ba7f55c commit c5faaa9

File tree

3 files changed

+79
-0
lines changed

3 files changed

+79
-0
lines changed
Lines changed: 51 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,51 @@
1+
---
2+
name: Bug report
3+
description: Create a report to help us improve Vim installer.
4+
labels: [bug]
5+
6+
body:
7+
- type: markdown
8+
attributes:
9+
value: |
10+
Thanks for reporting issues of Vim installer!
11+
12+
If you want to report an issue of Vim itself, please go to the [main repository](https://github.com/vim/vim/issues/new/choose).
13+
If you want ask a user question about Vim itself, please go to the [vim_use mailinglist](https://groups.google.com/g/vim_use) or use [vi.stackexchange.com](https://vi.stackexchange.com/).
14+
- type: textarea
15+
attributes:
16+
label: Steps to reproduce
17+
placeholder: |
18+
1.
19+
2.
20+
3.
21+
4.
22+
validations:
23+
required: true
24+
- type: textarea
25+
attributes:
26+
label: Expected behaviour
27+
placeholder: A clear and concise description of what you expected to happen.
28+
validations:
29+
required: true
30+
- type: input
31+
attributes:
32+
label: Version of Vim
33+
description: >
34+
Including patch level, use ":version" to see it [e.g. 8.2.1234]
35+
validations:
36+
required: true
37+
- type: textarea
38+
attributes:
39+
label: Environment
40+
description: >
41+
Windows version [e.g. Windows 10 22H1 (64 bits)], Installer package [e.g. 32-bit self-installer, 64-bit zip package, ...]; anything that might matter
42+
placeholder: |
43+
Windows version:
44+
Installer package:
45+
validations:
46+
required: true
47+
#- type: textarea
48+
# attributes:
49+
# label: Logs and stack traces
50+
# placeholder: Insert log or other text here (if necessary)
51+
# render: shell

.github/ISSUE_TEMPLATE/config.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
blank_issues_enabled: true
2+
contact_links:
3+
- name: Issues in the main repository
4+
url: https://github.com/vim/vim/issues/new/choose
5+
about: If you have any issues with Vim itself, please report to the main repository.
Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
---
2+
name: Feature request
3+
about: Suggest an enhancement for Vim installer
4+
title: ''
5+
labels: enhancement
6+
7+
---
8+
<!--
9+
If you want to report an issue of Vim itself, please go to the [main repository](https://github.com/vim/vim/issues/new/choose).
10+
If you want ask a user question about Vim itself, please go to the [vim_use mailinglist](https://groups.google.com/g/vim_use) or use [vi.stackexchange.com](https://vi.stackexchange.com/).
11+
-->
12+
13+
**Is your feature request about something that is currently impossible or hard to do? Please describe the problem.**
14+
<!-- A clear and concise description of what is hard to do. Ex. It is difficult to [...] when [...] -->
15+
16+
**Describe the solution you'd like**
17+
<!-- A clear and concise description of what you want to happen. -->
18+
19+
**Describe alternatives you've considered**
20+
<!-- A clear and concise description of any alternative solutions or features you've considered. -->
21+
22+
**Additional context**
23+
<!-- Add any other context or screenshots about the feature request here. -->

0 commit comments

Comments
 (0)