I have one file build.yml which have jobs, steps for a react app deployment. I have another workflow file issue.yml which is responsible for creating an issue if any steps gets failed in build.yml.
I would like to trigger workflow file issue.yml only when workflow file build.yml have an issue. I know, I can achieve it, if I created another step in workflow file build.yml to create an issue and use condition if failure().
Just wanted to check if anyone have idea to achieve it by using 2 different workflow files.