Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add .github templates and CODEOWNERS for improved contribution workflow #29

Merged
merged 2 commits into from
Jan 19, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions .github/CODEOWNERS
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
# CODEOWNERS assigns reviewers to pull requests based on file paths - in this example,
# you can specify multiple owners for a path using: path/ @user1 @user2
# e.g. any changes to .github/ directory will request review from @geoffreygarrett
# .github/ @geoffreygarrett # No write access yet, so this errors in GH
22 changes: 22 additions & 0 deletions .github/ISSUE_TEMPLATE/bug_report.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
---
name: Bug Report
about: Report a bug in the project
title: ""
labels: bug
assignees: ""
---

**Describe the bug**
A clear and concise description.

**To Reproduce**
Steps to reproduce:
1.
2.
3.

**Expected behavior**
What you expected to happen.

**Additional context**
Logs, screenshots, or other info.
16 changes: 16 additions & 0 deletions .github/ISSUE_TEMPLATE/feature_request.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
---
name: Feature Request
about: Suggest an idea
title: ""
labels: enhancement
assignees: ""
---

**Is your feature request related to a problem?**
Short description.

**Describe the solution you’d like**
Describe your solution.

**Additional context**
Any other relevant info.
13 changes: 13 additions & 0 deletions .github/pull_request_template.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
**Summary**
Brief overview of the changes.

**Related Issues**
Links (e.g. closes #123).

**Proposed Changes**
-
-

**Checklist**
- [ ] Tests pass locally
- [ ] Documentation updated if needed