From d1bfa41eeaf9d23d9c10e9bfdfe0aff488a8c302 Mon Sep 17 00:00:00 2001 From: Joaquin Dominguez <83036592+j-dominguez9@users.noreply.github.com> Date: Fri, 28 Jun 2024 16:04:00 -0400 Subject: [PATCH] Create PULL_REQUEST_TEMPLATE.md --- .github/workflows/PULL_REQUEST_TEMPLATE.md | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 .github/workflows/PULL_REQUEST_TEMPLATE.md diff --git a/.github/workflows/PULL_REQUEST_TEMPLATE.md b/.github/workflows/PULL_REQUEST_TEMPLATE.md new file mode 100644 index 0000000..68d8bce --- /dev/null +++ b/.github/workflows/PULL_REQUEST_TEMPLATE.md @@ -0,0 +1,20 @@ +#### Context +What is the purpose of this PR? Is it to +- [ ] add a new feature +- [ ] fix a bug +- [ ] update tests and/or documentation +- [ ] other (please add here) + +Please link to any issues this PR addresses. + +#### Changelog +What are the changes made in this PR? + +#### Test plan +Please make sure to do each of the following if applicable to your PR. (If you're not sure about any one of these just ask and we will happily help.) + +- [ ] run pre-commit hooks and linters (make sure you've first installed via `pre-commit install`) +- [ ] add unit tests for any new functionality +- [ ] update docstrings for any new or updated methods or classes +- [ ] run unit tests via `pytest tests` +- [ ] include relevant commands and any other artifacts in this summary (eval results, etc.)