pr-description
Esta página aún no está disponible en tu idioma.
Instructions
-
List the commits on this branch:
git log --oneline main..HEADIf
maindoes not exist, trymaster:git log --oneline master..HEAD -
Get a summary of changed files:
git diff main...HEAD --stat(Use
master...HEADifmaindoes not exist.) -
Write a PR description using the following structure. Output only the description, with no surrounding explanation.
Summary
- What changed, as a bullet list. One bullet per logical change. Focus on the user-visible or caller-visible effect, not the implementation detail.
Motivation
A short paragraph (two to four sentences) explaining the problem being solved. Why does this PR need to exist? What was wrong or missing before?
Test plan
A checklist of specific steps a reviewer can follow to verify the change works:
- Step one
- Step two
- Edge case or error scenario to check
Notes
Anything a reviewer should know that is not obvious from the diff: migrations that need to run, environment variables that need to be set, follow-up work that is intentionally deferred, known limitations.
If there are no reviewer notes, omit this section entirely.
Keep the description factual and concise. Do not pad with filler phrases. If the PR is straightforward, the description should be short.