This message was deleted.
# pulumi-deployments
s
This message was deleted.
l
When you open a PR against the main branch a PR should run and comment on the PR automatically.
d
Will it just run
preview
on the PR and then once it merges it runs
up
?
l
yep!
d
oh sweet!
And for local development during the branch, do you recommend working on temporary stacks? https://www.pulumi.com/blog/iac-recommended-practices-developer-stacks-git-branches/
l
And for local development during the branch
There 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.
d
cool, cool, thank you!