Skip to content

Commit 1a851f2

Browse files
authored
Merge pull request #292 from Calinou/add-issue-templates
Add issue templates
2 parents 182f2f7 + 27c1152 commit 1a851f2

File tree

3 files changed

+124
-0
lines changed

3 files changed

+124
-0
lines changed
Lines changed: 59 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,59 @@
1+
name: Bug report
2+
description: Report a bug in Godot Git Plugin
3+
labels:
4+
- bug
5+
body:
6+
7+
- type: markdown
8+
attributes:
9+
value: |
10+
- Write a descriptive issue title above.
11+
- Search [open](https://github.com/godotengine/godot-git-plugin/issues) and [closed](https://github.com/godotengine/godot-git-plugin/issues?q=is%3Aissue+is%3Aclosed) issues to ensure it has not already been reported.
12+
- Verify that you are using a [supported Godot version](https://docs.godotengine.org/en/stable/about/release_policy.html).
13+
- This repository only contains the Git integration. Issues pertaining to the Godot editor itself or the general version control UI should be reported on the [main Godot repository](https://github.com/godotengine/godot/issues).
14+
15+
- type: input
16+
attributes:
17+
label: Godot version
18+
description: >
19+
Specify the Git commit hash if using a development or non-official build.
20+
If you use a custom build, please test if your issue is reproducible in official builds too.
21+
placeholder: 4.4.1.stable, 4.5.dev4 (209a446e3)
22+
validations:
23+
required: true
24+
25+
- type: input
26+
attributes:
27+
label: Godot Git Plugin version
28+
description: >
29+
Specify the Git commit hash if using a development or non-official build.
30+
If you use a custom build, please test if your issue is reproducible in official builds too.
31+
placeholder: "3.2.0"
32+
validations:
33+
required: true
34+
35+
- type: input
36+
attributes:
37+
label: System information
38+
description: |
39+
Specify the OS version, and when relevant hardware information.
40+
placeholder: Windows 10
41+
validations:
42+
required: true
43+
44+
- type: textarea
45+
attributes:
46+
label: Issue description
47+
description: |
48+
Describe your issue briefly. What doesn't work, and how do you expect it to work instead?
49+
You can include images or videos with drag and drop, and format code blocks or logs with <code>```</code> tags.
50+
validations:
51+
required: true
52+
53+
- type: textarea
54+
attributes:
55+
label: Steps to reproduce
56+
description: |
57+
List of steps or sample code that reproduces the issue. Having reproducible issues is a prerequisite for contributors to be able to solve them.
58+
validations:
59+
required: true

.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: false
2+
3+
contact_links:
4+
- name: Godot community channels
5+
url: https://godotengine.org/community
6+
about: Please ask for technical support on one of the other community channels, not here.
Lines changed: 59 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,59 @@
1+
name: Feature request
2+
description: Request a new feature to be added or improved in Godot Git Plugin
3+
labels:
4+
- enhancement
5+
body:
6+
7+
- type: markdown
8+
attributes:
9+
value: |
10+
- Write a descriptive issue title above.
11+
- Search [open](https://github.com/godotengine/godot-git-plugin/issues) and [closed](https://github.com/godotengine/godot-git-plugin/issues?q=is%3Aissue+is%3Aclosed) issues to ensure it has not already been reported.
12+
- Verify that you are using a [supported Godot version](https://docs.godotengine.org/en/stable/about/release_policy.html).
13+
- This repository only contains the Git integration. Issues pertaining to the Godot editor itself or the general version control UI should be reported on the [main Godot repository](https://github.com/godotengine/godot/issues).
14+
15+
- type: input
16+
attributes:
17+
label: Godot version
18+
description: >
19+
Specify the Git commit hash if using a development or non-official build.
20+
If you use a custom build, please test if your issue is reproducible in official builds too.
21+
placeholder: 4.4.1.stable, 4.5.dev4 (209a446e3)
22+
validations:
23+
required: true
24+
25+
- type: input
26+
attributes:
27+
label: Godot Git Plugin version
28+
description: >
29+
Specify the Git commit hash if using a development or non-official build.
30+
If you use a custom build, please test if your issue is reproducible in official builds too.
31+
placeholder: "3.2.0"
32+
validations:
33+
required: true
34+
35+
- type: input
36+
attributes:
37+
label: System information
38+
description: |
39+
Specify the OS version, and when relevant hardware information.
40+
placeholder: Windows 10
41+
validations:
42+
required: true
43+
44+
- type: textarea
45+
attributes:
46+
label: Problem statement
47+
description: |
48+
Describe the problem or limitation you're currently facing with the Godot Git Plugin.
49+
validations:
50+
required: true
51+
52+
- type: textarea
53+
attributes:
54+
label: Proposed solution
55+
description: |
56+
Describe your proposed solution and how it resolves the problem or limitation mentioned above.
57+
You can include images or videos with drag and drop, and format code blocks or logs with <code>```</code> tags.
58+
validations:
59+
required: true

0 commit comments

Comments
 (0)