Skip to content

Commit

Permalink
Add templates and CODEOWNERS to streamline repository workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
geoffreygarrett authored and lukipuki committed Jan 19, 2025
1 parent a2dd033 commit 7d82811
Show file tree
Hide file tree
Showing 4 changed files with 55 additions and 0 deletions.
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
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

0 comments on commit 7d82811

Please sign in to comment.