I have a GitHub Action workflow that can be triggered in two ways, via a pull_request and via a workflow dispatch.
During a pull_request, one of the steps generates an output that will be used in a later step.
During a workflow dispatch, the user manually inputs a custom output that will be used in a later step.
How do I use that output without running into null values? I can only use one of those outputs to assign to a variable, how can I make it accept both?