Skip to content

Commit 2850a3b

Browse files
authored
chore: add GitHub community health files (#117)
* chore: add GitHub community health files * Apply suggestion from @marandaneto
1 parent 7e1cee9 commit 2850a3b

6 files changed

Lines changed: 102 additions & 0 deletions

File tree

.github/CODEOWNERS

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
* @PostHog/team-client-libraries
Lines changed: 41 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
name: 🐞 Bug Report
2+
description: Tell us about something that's not working the way we (probably) intend.
3+
labels: ["bug"]
4+
body:
5+
6+
7+
- type: input
8+
id: version
9+
attributes:
10+
label: Version
11+
description: SDK Version
12+
placeholder: 3.0.0 ← should look like this
13+
validations:
14+
required: true
15+
16+
- type: textarea
17+
id: repro
18+
attributes:
19+
label: Steps to Reproduce
20+
description: How can we see what you're seeing? Specific is terrific.
21+
placeholder: |-
22+
1. foo
23+
2. bar
24+
3. baz
25+
validations:
26+
required: true
27+
28+
- type: textarea
29+
id: expected
30+
attributes:
31+
label: Expected Result
32+
validations:
33+
required: true
34+
35+
- type: textarea
36+
id: actual
37+
attributes:
38+
label: Actual Result
39+
description: Logs? Screenshots? Yes, please.
40+
validations:
41+
required: true

.github/ISSUE_TEMPLATE/config.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
blank_issues_enabled: false
2+
contact_links:
3+
- name: Ask in the forums
4+
url: https://posthog.com/questions
5+
about: A place to ask questions.
Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
name: 💡 Feature Request
2+
description: Tell us about a problem our SDK could solve but doesn't.
3+
labels: ["enhancement"]
4+
body:
5+
- type: textarea
6+
id: problem
7+
attributes:
8+
label: Problem Statement
9+
description: What problem could we solve that it doesn't?
10+
placeholder: |-
11+
I want to make whirled peas, but it doesn't blend.
12+
validations:
13+
required: true
14+
15+
- type: textarea
16+
id: expected
17+
attributes:
18+
label: Solution Brainstorm
19+
description: We know you have bright ideas to share ... share away, friend.
20+
placeholder: |-
21+
Add a blender to it.
22+
validations:
23+
required: false
Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
name: Blank Issue
2+
description: Blank Issue. Reserved for maintainers.
3+
body:
4+
- type: textarea
5+
id: description
6+
attributes:
7+
label: Description
8+
description: Please describe the issue.
9+
validations:
10+
required: true

.github/pull_request_template.md

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
## :bulb: Motivation and Context
2+
<!--- Why is this change required? What problem does it solve? -->
3+
<!--- If it fixes an open issue, please link to the issue here. -->
4+
5+
6+
## :green_heart: How did you test it?
7+
8+
9+
## :pencil: Checklist
10+
<!--- Put an `x` in the boxes that apply -->
11+
12+
- [ ] I reviewed the submitted code.
13+
- [ ] I added tests to verify the changes.
14+
- [ ] I updated the docs if needed.
15+
- [ ] No breaking change or entry added to the changelog.
16+
17+
### If releasing new changes
18+
19+
- [ ] Added the `release` label to the PR
20+
- [ ] Added exactly one version bump label: `bump-patch`, `bump-minor`, or `bump-major`
21+
22+
<!-- For more details check RELEASING.md -->

0 commit comments

Comments
 (0)