diff --git a/.github/CODEOWNERS b/.github/CODEOWNERS new file mode 100644 index 0000000..fc0f5de --- /dev/null +++ b/.github/CODEOWNERS @@ -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 newline at end of file diff --git a/.github/ISSUE_TEMPLATE/bug_report.md b/.github/ISSUE_TEMPLATE/bug_report.md new file mode 100644 index 0000000..fc4af01 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/bug_report.md @@ -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. diff --git a/.github/ISSUE_TEMPLATE/feature_request.md b/.github/ISSUE_TEMPLATE/feature_request.md new file mode 100644 index 0000000..dc9ce34 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/feature_request.md @@ -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. diff --git a/.github/pull_request_template.md b/.github/pull_request_template.md new file mode 100644 index 0000000..2acdcd9 --- /dev/null +++ b/.github/pull_request_template.md @@ -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