Bir CI/CD pipeline, kodun commit'ten deployment'a kadar geçtiği — tipik olarak build, test ve deploy adımlarını içeren — otomatik aşamaların sıralı bir dizisidir. Bir kod değişikliğini dağıtılmış bir release'e dönüştüren otomatik yolu tanımlar.
Pipeline kavramı
A PIPELINE is an automated workflow of STAGES that run in sequence on each code change:
→ triggered by an event (a push, a PR, a merge, a schedule)
→ each stage runs automatically; if a stage FAILS, the pipeline STOPS (broken code
doesn't proceed to later stages or production)
→ provides automation, consistency, and fast feedback
