shy-rain-22908
10/04/2023, 7:21 PMabc
but with different branch in the settings.
stack 1: qa
branch in abc
repo
stack 2: main
branch in abc
repo
Now, every time I create PR for qa and merge it. pulumi preview
and pulumi up
triggers both stack to run.
Am I doing anything wrong here? I want want stack 1 to run when changing qa
branch and only run stack 2 when changing main
branch.lemon-agent-27707
10/05/2023, 7:00 PMNow, every time I create PR for qa and merge it.What are the source and destination branches for this PR?
A preview and up are triggered on both stack1 and stack2?andpulumi preview
triggers both stack to run.pulumi up
shy-rain-22908
10/05/2023, 7:02 PMlemon-agent-27707
10/05/2023, 7:13 PMmain
with deployment settings on branch main
• stack patch
with deployment settings on branch patch
• create a new branch patch2
and open a PR to merge into patch
This only resulted in a preview deployment on stack patch
I wonder if there is more detail you could provide on your setup.main
branch from patch
• PR open against patch
branch from patch2
If I merge the second PR, it triggers an update on stack patch
- and a preview deployment on stack main
This is expected because the first open PR receives new commits when the patch2
PR is merged.