Hi there, is there anyway to implement Webhook or ...
# general
c
Hi there, is there anyway to implement Webhook or how to send update to Slack channel when run
pulumi/action
on Github action?
e
I think you could grab the outputs of the pulumi/actions step (see https://github.com/pulumi/actions#stack-outputs) and just run a slack-send step using that: https://github.com/marketplace/actions/slack-send
c
I think stack output is for specific variable, in python is
pulumi.export()
, what I want is send result of command
up
when trigger
pulumi/action
on Github Action
yes,
outputs.output
is what I want 😄