I have a workflow that includes three job:
- run terraform plan and save it
- manual approval to ask the user if its ok to apply the plan
- run terraform apply on the saved plan
Most of the time there are no changes but manual approval is still required.
I’d like to skip manual approval if there are no change.
The newly conditional logic feature doesn’t seem to support making decisions based on the output of a job.
Suggestions?