convictional / trigger-workflow-and-wait

Trigger a workflow in another (or same) repository and wait for the job to finish.
MIT License
311 stars 151 forks source link

Problems Running in an Enterprise environment (Syntax error?) #48

Open RemusCM opened 2 years ago

RemusCM commented 2 years ago

I have changed both URLs (API and Server) to our own. However, when trying to run the workflow, there is a syntax error in the entrypoint.sh file:

image

However, I am not sure if I can just remove line 144 or not. Line 144 was unchanged from the code: join -v2 <(echo "$OLD_RUNS") <(echo "$NEW_RUNS")

This error pops up on the Run command.

The only thing different otherwise (apart from our own server and api links) that we may have is that we're using alpine version 3.14.1. Is this version okay too?

Thank you, and have a nice day.

rabih commented 1 year ago

All that line does is merge the output of $OLD_RUNS and $NEW_RUNS. I believe it is used to ensure a run isn't duplicated.