Skip to content

Commit 2816e85

Browse files
committed
chore: github form templates
1 parent f222552 commit 2816e85

File tree

4 files changed

+92
-24
lines changed

4 files changed

+92
-24
lines changed

.github/ISSUE_TEMPLATE/bug.yml

Lines changed: 71 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,71 @@
1+
# https://docs.github.com/en/communities/using-templates-to-encourage-useful-issues-and-pull-requests/syntax-for-githubs-form-schema
2+
name: Bug Report
3+
description: Report a bug
4+
labels:
5+
- status/triage
6+
7+
body:
8+
- type: checkboxes
9+
attributes:
10+
label: Support guidelines
11+
description: Please read the support guidelines before proceeding.
12+
options:
13+
- label: I've read the [support guidelines](https://github.com/crazy-max/gohealthchecks/blob/master/.github/SUPPORT.md)
14+
required: true
15+
16+
- type: checkboxes
17+
attributes:
18+
label: I've found a bug and checked that ...
19+
description: |
20+
Make sure that your request fulfills all of the following requirements. If one requirement cannot be satisfied, explain in detail why.
21+
options:
22+
- label: ... the documentation does not mention anything about my problem
23+
- label: ... there are no open or closed issues that are related to my problem
24+
25+
- type: textarea
26+
attributes:
27+
label: Description
28+
description: |
29+
Please provide a brief description of the bug in 1-2 sentences.
30+
validations:
31+
required: true
32+
33+
- type: textarea
34+
attributes:
35+
label: Expected behaviour
36+
description: |
37+
Please describe precisely what you'd expect to happen.
38+
validations:
39+
required: true
40+
41+
- type: textarea
42+
attributes:
43+
label: Actual behaviour
44+
description: |
45+
Please describe precisely what is actually happening.
46+
validations:
47+
required: true
48+
49+
- type: textarea
50+
attributes:
51+
label: Steps to reproduce
52+
description: |
53+
Please describe the steps to reproduce the bug.
54+
placeholder: |
55+
1. ...
56+
2. ...
57+
3. ...
58+
validations:
59+
required: true
60+
61+
- type: input
62+
attributes:
63+
label: gohealthchecks version
64+
validations:
65+
required: true
66+
67+
- type: textarea
68+
attributes:
69+
label: Additional info
70+
description: |
71+
Please provide any additional information that seem useful.

.github/ISSUE_TEMPLATE/bug_report.md

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

.github/ISSUE_TEMPLATE/config.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
# https://docs.github.com/en/communities/using-templates-to-encourage-useful-issues-and-pull-requests/configuring-issue-templates-for-your-repository#configuring-the-template-chooser
2+
blank_issues_enabled: true
3+
contact_links:
4+
- name: Questions and Discussions
5+
url: https://github.com/crazy-max/gohealthchecks/discussions/new
6+
about: Use Github Discussions to ask questions and/or open discussion topics.

.github/ISSUE_TEMPLATE/feature.yml

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
# https://docs.github.com/en/communities/using-templates-to-encourage-useful-issues-and-pull-requests/syntax-for-githubs-form-schema
2+
name: Feature request
3+
description: Missing functionality? Come tell us about it!
4+
labels:
5+
- kind/enhancement
6+
- status/triage
7+
8+
body:
9+
- type: textarea
10+
id: description
11+
attributes:
12+
label: Description
13+
description: What is the feature you want to see?
14+
validations:
15+
required: true

0 commit comments

Comments
 (0)