dry-journalist-60579
03/22/2023, 7:10 PMpulumi up
on every commit that happens on a branch, say, the main
branch. This would mean that only after you merge a PR does pulumi
run. What do people do to preview changes during the branch development?lemon-agent-27707
03/22/2023, 8:25 PMdry-journalist-60579
03/22/2023, 8:25 PMpreview
on the PR and then once it merges it runs up
?lemon-agent-27707
03/22/2023, 8:25 PMdry-journalist-60579
03/22/2023, 8:26 PMlemon-agent-27707
03/22/2023, 9:12 PMAnd for local development during the branchThere are a couple of options here: 1. you can create a new branch and a new stack, and then set deployment settings on that branch, including OIDC, etc. That way a developer can just push commits to a branch and the stack automatically gets updated in the background. 2. you can create a new branch and stack, and then have the developer run
pulumi up
locally, but this requires giving them cloud credentials on their local machine
Both are great workflows.dry-journalist-60579
03/22/2023, 9:25 PM