diff --git a/.github/pull_request_template.md b/.github/pull_request_template.md new file mode 100644 index 0000000..bca6742 --- /dev/null +++ b/.github/pull_request_template.md @@ -0,0 +1,44 @@ +## Description + + + +## Related Issue + + + +Closes # + +## Type of Change + + + +- [ ] Bug fix (non-breaking change that fixes an issue) +- [ ] New feature (non-breaking change that adds functionality) +- [ ] Breaking change (fix or feature that would cause existing functionality to change) +- [ ] Documentation update +- [ ] Refactoring / code cleanup (no functional changes) +- [ ] Test update (adding or modifying tests only) + +## Component(s) Affected + + + +- [ ] Library (`library/`) +- [ ] Prototype / Streamlit app (`prototype/`) +- [ ] Data pipeline (`data/`) +- [ ] Analysis / Notebooks (`analysis/`) +- [ ] Documentation (`docs/`) +- [ ] CI / GitHub Actions (`.github/`) +- [ ] Other (please specify): + +## How Has This Been Tested? + + + +## Checklist + +- [ ] I have read the [CONTRIBUTING.md](../CONTRIBUTING.md) guide. +- [ ] My changes follow the existing code style (checked with `uv run ruff check`). +- [ ] I have added or updated tests as appropriate. +- [ ] All tests pass locally (`uv run pytest`). +- [ ] I have updated documentation if needed.