Skip to content

Commit b942dd8

Browse files
authored
Merge pull request #311 from u5surf/issue_template
Add issue template
2 parents dcb995a + f12ad50 commit b942dd8

File tree

3 files changed

+137
-0
lines changed

3 files changed

+137
-0
lines changed
Lines changed: 57 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,57 @@
1+
name: Bug Report
2+
description: Report incorrect behavior in this module
3+
title: "BUG: "
4+
labels: [bug]
5+
6+
body:
7+
- type: checkboxes
8+
id: checks
9+
attributes:
10+
label: module version checks
11+
options:
12+
- label: >
13+
I have checked that this issue has not already been reported.
14+
required: true
15+
- type: textarea
16+
id: problem
17+
attributes:
18+
label: Issue Description
19+
description: >
20+
Please provide a description of the issue shown in the reproducible example.
21+
validations:
22+
required: true
23+
- type: textarea
24+
id: expected-behavior
25+
attributes:
26+
label: Expected Behavior
27+
description: >
28+
Please describe or show a code example of the expected behavior.
29+
validations:
30+
required: true
31+
- type: textarea
32+
id: version
33+
attributes:
34+
label: Installed Versions
35+
placeholder: >
36+
% sudo /usr/local/nginx/sbin/nginx -V
37+
nginx version: nginx/1.27.0
38+
built by gcc 11.4.0 (Ubuntu 11.4.0-1ubuntu1~22.04)
39+
configure arguments: --add-module=../nginx-module-vts
40+
description: >
41+
Please paste the output of ``nginx -V``
42+
value: >
43+
<details>
44+
45+
46+
Replace this line with the output of nginx -V
47+
48+
49+
</details>
50+
validations:
51+
required: true
52+
- type: textarea
53+
id: conf
54+
attributes:
55+
label: Reproducible Example nginx.conf
56+
description: >
57+
Please paste the reproducible nginx.conf
Lines changed: 42 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
name: Feature Request
2+
description: Suggest an idea for this module
3+
title: "ENH: "
4+
labels: [enhancement]
5+
6+
body:
7+
- type: checkboxes
8+
id: checks
9+
attributes:
10+
label: Feature Type
11+
description: Please check what type of feature request you would like to propose.
12+
options:
13+
- label: >
14+
Adding new functionality to this module
15+
- label: >
16+
Changing existing functionality in this module
17+
- label: >
18+
Removing existing functionality in this module
19+
- type: textarea
20+
id: description
21+
attributes:
22+
label: Problem Description
23+
description: >
24+
Please describe what problem the feature would solve, e.g. "I wish I could use this module to ..."
25+
placeholder: >
26+
I wish I could use this module...
27+
validations:
28+
required: true
29+
- type: textarea
30+
id: feature
31+
attributes:
32+
label: Feature Description
33+
description: >
34+
Please describe how the new feature would be implemented, using psudocode if relevant.
35+
validations:
36+
required: true
37+
- type: textarea
38+
id: context
39+
attributes:
40+
label: Additional Context
41+
description: >
42+
Please provide any relevant GitHub issues, code examples or references that help describe and support the feature request.
Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
name: Submit Question
2+
description: Ask a general question about this module
3+
title: ""
4+
labels: [question]
5+
6+
body:
7+
- type: markdown
8+
attributes:
9+
value: ---
10+
- type: textarea
11+
id: question
12+
attributes:
13+
label: Question about this module
14+
- type: textarea
15+
id: version
16+
attributes:
17+
label: Installed Versions
18+
placeholder: >
19+
% sudo /usr/local/nginx/sbin/nginx -V
20+
nginx version: nginx/1.27.0
21+
built by gcc 11.4.0 (Ubuntu 11.4.0-1ubuntu1~22.04)
22+
configure arguments: --add-module=../nginx-module-vts
23+
description: >
24+
Please paste the output of ``nginx -V``
25+
value: >
26+
<details>
27+
28+
29+
Replace this line with the output of nginx -V
30+
31+
32+
</details>
33+
- type: textarea
34+
id: conf
35+
attributes:
36+
label: Reproducible Example nginx.conf
37+
description: >
38+
Please paste the reproducible nginx.conf

0 commit comments

Comments
 (0)