pull request (PR) — หรือ merge request — คือคำขอให้ merge การเปลี่ยนแปลงจาก branch หนึ่งเข้าไปในอีก branch หนึ่ง โดยให้พื้นที่สำหรับ code review การอภิปราย และการตรวจสอบอัตโนมัติก่อนการผสาน PR เป็นแกนกลางของการพัฒนาแบบทำงานร่วมกันยุคใหม่และคุณภาพของโค้ด
pull request คืออะไร
A PR proposes merging a branch (e.g. a feature) into another (e.g. main):
→ shows the DIFF (what changed), a description, and discussion
→ reviewers comment, request changes, or approve
→ CI runs automated checks (tests, linting, builds) on the PR
→ once approved + checks pass → MERGE into the target branch
→ It's a gate and collaboration point before code is integrated.
