I have a feature request :sweat_smile: - I'd love ...
# general
m
I have a feature request 😅 - I'd love
pulumi up --yes-if-unchanged
it would make workflows way easier for us
☝️ 1
e
Isn't that no-op
m
I'd like the default prompt "are you sure you want to apply these changes" if there are changes
e.g. right now, for local development, I have a script that pulumi ups like 5-10 stacks
most of them I just want to cycle through, but if there are changes, having the prompt would be useful
e
Oh right I see. I think you could script a little hack around that using
pulumi preview --expect-no-changes
to check if there are any changes, and if not run
up --yes
and if there are just run
up