From ec83ee9e3351aef05a75fa23843a6ac26a390be1 Mon Sep 17 00:00:00 2001 From: Clay McGinnis Date: Thu, 29 Jan 2026 08:59:58 -0800 Subject: [PATCH] chore: add PR template and size labeler workflow --- .github/PULL_REQUEST_TEMPLATE.md | 32 ++++++++++++++++++++++++++ .github/workflows/pr-size-labeler.yaml | 10 ++++++++ 2 files changed, 42 insertions(+) create mode 100644 .github/PULL_REQUEST_TEMPLATE.md create mode 100644 .github/workflows/pr-size-labeler.yaml diff --git a/.github/PULL_REQUEST_TEMPLATE.md b/.github/PULL_REQUEST_TEMPLATE.md new file mode 100644 index 0000000..8691323 --- /dev/null +++ b/.github/PULL_REQUEST_TEMPLATE.md @@ -0,0 +1,32 @@ +## Summary + + +## Related Issues + + +--- + +## Requester Checklist +*Complete these before marking Ready for Review* + +- [ ] I have self-reviewed my own code +- [ ] I have added/updated tests that prove my fix/feature works +- [ ] I have included visual proof (screenshot, video, or test output) if applicable +- [ ] All CI checks are passing +- [ ] PR size is S/M, OR I have justified the size and added a walkthrough +- [ ] I have updated documentation if needed + +### Visual Proof + + +### Size Justification (if L/XL) + + +--- + +## Reviewer Checklist +*If these are not met, close the tab — this PR is not ready for review* + +- [ ] Requester checklist above is complete +- [ ] All CI checks are passing +- [ ] Tests adequately cover the changes diff --git a/.github/workflows/pr-size-labeler.yaml b/.github/workflows/pr-size-labeler.yaml new file mode 100644 index 0000000..11c056c --- /dev/null +++ b/.github/workflows/pr-size-labeler.yaml @@ -0,0 +1,10 @@ +name: PR Size Labeler + +on: + pull_request: + types: [opened, synchronize, reopened] + +jobs: + label-size: + uses: wherobots/ci-tools/.github/workflows/pr-size-labeler.yaml@main + secrets: inherit