I would like to modify our the GHE workflow summary with some action's results using GITHUB_STEP_SUMMARY
Here is how it is organized:
- From the
web UIorgh CLI, we launch ageneric workflowwhich build a matrix based on some module's configuration file. - The
generic workflowcalls aspecific workflow(e.g: build_and_test) - The
specific workflowcalls a set of compositeactions(like build, test and so on).
I would like to build a summary from some actions's results.
I first tried using parameters to "escalate" the workflow layers (action->specific workflow->generic workflow) and then with GITHUB_ENV, but it looks that this last option is owned by the file and not the entire mechanic.