Skip to content

Commit 776fbc0

Browse files
authored
Merge pull request #7 from nats-io/templates
Added github templates
2 parents eff38bf + 5bce130 commit 776fbc0

File tree

3 files changed

+83
-0
lines changed

3 files changed

+83
-0
lines changed

.github/ISSUE_TEMPLATE/config.yml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
blank_issues_enabled: false
2+
contact_links:
3+
- name: Discussion
4+
url: https://github.com/nats-io/nkeys.java/discussions
5+
about: Ideal for ideas, feedback, or longer form questions.
6+
- name: Chat
7+
url: https://slack.nats.io
8+
about: Ideal for short, one-off questions, general conversation, and meeting other NATS users!

.github/ISSUE_TEMPLATE/defect.yml

Lines changed: 47 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,47 @@
1+
---
2+
name: Defect
3+
description: Report a defect, such as a bug or regression.
4+
labels:
5+
- defect
6+
body:
7+
- type: textarea
8+
id: observed
9+
attributes:
10+
label: Observed behavior
11+
description: Describe the unexpected behavior or performance regression you are observing.
12+
validations:
13+
required: true
14+
- type: textarea
15+
id: expected
16+
attributes:
17+
label: Expected behavior
18+
description: Describe the expected behavior or performance characteristics.
19+
validations:
20+
required: true
21+
- type: textarea
22+
id: versions
23+
attributes:
24+
label: Server and client version
25+
description: |-
26+
Provide the versions you were using when the detect was observed.
27+
For the server, use `nats-server --version`, check the startup log output, or the image tag pulled from Docker.
28+
For the CLI client, use `nats --version`.
29+
For language-specific clients, check the version downloaded by the language dependency manager.
30+
validations:
31+
required: true
32+
- type: textarea
33+
id: environment
34+
attributes:
35+
label: Host environment
36+
description: |-
37+
Specify any relevant details about the host environment the server and/or client was running in,
38+
such as operating system, CPU architecture, container runtime, etc.
39+
validations:
40+
required: false
41+
- type: textarea
42+
id: steps
43+
attributes:
44+
label: Steps to reproduce
45+
description: Provide as many concrete steps to reproduce the defect.
46+
validations:
47+
required: true
Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
---
2+
name: Proposal
3+
description: Propose an enhancement or new feature.
4+
labels:
5+
- proposal
6+
body:
7+
- type: textarea
8+
id: change
9+
attributes:
10+
label: Proposed change
11+
description: This could be a behavior change, enhanced API, or a new feature.
12+
validations:
13+
required: true
14+
- type: textarea
15+
id: usecase
16+
attributes:
17+
label: Use case
18+
description: What is the use case or general motivation for this proposal?
19+
validations:
20+
required: true
21+
- type: textarea
22+
id: contribute
23+
attributes:
24+
label: Contribution
25+
description: |-
26+
Are you intending or interested in contributing code for this proposal if accepted?
27+
validations:
28+
required: false

0 commit comments

Comments
 (0)