Pull Request - CI/CD 用語集の定義
pull request(PR、GitLab では merge request)とは、あるブランチを別のブランチに merge するための提案です。diff、議論、レビューの承認、CI の status check を 1 つの単位にまとめます。
CI のトリガー
pull_request イベントは merge 結果に対してワークフローを実行するため、check は分離されたブランチだけでなく、merge 後にコードがどうなるかを反映します。
関連ガイド
Code Review - CI/CD Glossary DefinitionCode Review: Code review is the practice of having one or more people read a proposed change before it merges…
Trigger (Event) - CI/CD Glossary DefinitionTrigger (Event): A **trigger** is the event that starts a workflow - `push`, `pull_request`, `schedule`, `wor…
What Is a Feature Branch?A feature branch is a short-lived branch where a single feature or fix is developed in isolation before mergi…