question on deploying to AEMaaCS (dev env) | Community
Skip to main content
jayv25585659
Level 8
September 29, 2025
Solved

question on deploying to AEMaaCS (dev env)

  • September 29, 2025
  • 2 replies
  • 529 views

If I set the dev pipeline to run on "git changes" and I made 3 changes (3 merged requests) to the branch in a 3 minute interval.

 

Is the dev pipeline running 3 times as well to deploy those changes? Thanks!

Best answer by giuseppebaglio

hi @jayv25585659,

Only one run executes at a time per pipeline; the first merge will start a run, and subsequent merges arriving while that run is executing will be picked up by a single follow‑up run that builds the latest commit on the branch when it starts.

Intermediate “queued” runs may be collapsed so the follow‑up run uses the latest commit, reducing redundant builds and deployments.

2 replies

giuseppebaglio
giuseppebaglioAccepted solution
Level 10
September 29, 2025

hi @jayv25585659,

Only one run executes at a time per pipeline; the first merge will start a run, and subsequent merges arriving while that run is executing will be picked up by a single follow‑up run that builds the latest commit on the branch when it starts.

Intermediate “queued” runs may be collapsed so the follow‑up run uses the latest commit, reducing redundant builds and deployments.

jayv25585659
Level 8
September 29, 2025

thank you.

Syed_Shaik
Level 3
September 30, 2025

Hi @jayv25585659  

A pipeline only executes one run at a time. The first merge triggers a run, and if more merges happen while that run is still in progress, they get grouped together. Once the current run finishes, the next run will pick up the newest commit on the branch.