Ένα pull request (PR) — ή merge request — είναι ένα αίτημα για συγχώνευση αλλαγών από ένα branch σε άλλο, παρέχοντας ένα χώρο για code review, συζήτηση και αυτοματοποιημένους ελέγχους πριν την ενσωμάτωση. Τα PRs είναι κεντρικά στη σύγχρονη συνεργατική ανάπτυξη και ποιότητα κώδικα.
Τι είναι ένα 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.
