Skip to content

Commit 2cb00ec

Browse files
authored
Update Issue template (#4258)
**What type of PR is this?** Other **What does this PR do? Why is it needed?** It appears that the issue template is broken. The main reason for this is a past change by GitHub, which now requires `ISSUE_TEMPLATE` to be a folder instead of a file and uses yaml files instead of the original markdown files. Looks like PR template is working properly. ref: https://docs.github.com/en/communities/using-templates-to-encourage-useful-issues-and-pull-requests/configuring-issue-templates-for-your-repository **Which issues(s) does this PR fix?** Fixes # **Other notes for review** None
1 parent d27ac0a commit 2cb00ec

File tree

2 files changed

+55
-37
lines changed

2 files changed

+55
-37
lines changed

.github/ISSUE_TEMPLATE

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

.github/ISSUE_TEMPLATE/config.yaml

Lines changed: 55 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,55 @@
1+
name: Issue
2+
description: New issue template
3+
body:
4+
- type: textarea
5+
attributes:
6+
label: What version of rules_go are you using?
7+
description: Check io_bazel_rules_go in WORKSPACE if you're not sure
8+
validations:
9+
required: true
10+
- type: textarea
11+
attributes:
12+
label: What version of gazelle are you using?
13+
description: Check bazel_gazelle in WORKSPACE if you're not sure
14+
validations:
15+
required: true
16+
- type: textarea
17+
attributes:
18+
label: What version of Bazel are you using?
19+
description: Run "bazel version" to find out
20+
validations:
21+
required: true
22+
- type: textarea
23+
attributes:
24+
label: Does this issue reproduce with the latest releases of all the above?
25+
validations:
26+
required: true
27+
- type: textarea
28+
attributes:
29+
label: What operating system and processor architecture are you using?
30+
validations:
31+
required: true
32+
- type: textarea
33+
attributes:
34+
label: Any other potentially useful information about your toolchain?
35+
description: C/C++ compiler, custom CROSSTOOL, remote execution?
36+
validations:
37+
required: false
38+
- type: textarea
39+
attributes:
40+
label: What did you do?
41+
description: If possible, provide a minimal recipe for reproducing the error.
42+
validations:
43+
required: false
44+
- type: textarea
45+
attributes:
46+
label: What did you expect to see?
47+
description:
48+
validations:
49+
required: false
50+
- type: textarea
51+
attributes:
52+
label: What did you see instead?
53+
description:
54+
validations:
55+
required: false

0 commit comments

Comments
 (0)