You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
To contribute a fix for this issue, leave a comment (and link to your pull request, if you've opened one already)
Issue details
The actions output is quite spammy if you have many resources in the stack, because all of them are shown in the output.
It would be useful to have an option to match the behaviour to the usual "pulumi preview" command, which only shows the changes.
Steps to reproduce
Use the actions with many resources
We've got 200 resources and it's hard to understand what's actually changing.
Expected: compact output
Actual: spammy output
Extra details
I tried to figure it out myself, and it seems like:
Actions use pulumi automation SDK, which itself uses the Pulumi CLI.
Pulumi CLI always shows spammy output in non-interactive mode.
My thinking was to try and make it "interactive" with "--yes" flag/parameter passed. Should theoretically work with PULUMI_DISABLE_CI_DETECTION=true PULUMI_SKIP_CONFIRMATIONS=true pulumi preview in Actions, right?
Thank you, the diff option did make it better! When I was reading the docs it didn't seem to give me less output with diff enabled.
comment-on-pr was already enabled, but was still hard to parse through ~200 lines.
Still, would be nice to have an option to have --show-sames disabled.
Hello!
Issue details
The actions output is quite spammy if you have many resources in the stack, because all of them are shown in the output.
It would be useful to have an option to match the behaviour to the usual "pulumi preview" command, which only shows the changes.
Steps to reproduce
Expected: compact output
Actual: spammy output
Extra details
I tried to figure it out myself, and it seems like:
PULUMI_DISABLE_CI_DETECTION=true PULUMI_SKIP_CONFIRMATIONS=true pulumi preview
in Actions, right?The text was updated successfully, but these errors were encountered: