I have the following workflow:
jobs: job-1: strategy: matrix: app: [workflow1, workflow2, workflow3] uses: ${{ app }}
Like this I get the error that GitHub can't find ${{app}} workflow. Is it possible to make this somehow work?
${{app}}