-
-
Notifications
You must be signed in to change notification settings - Fork 17
Description
Hey @Codex-
Usecase:
I am trying to make a workflow dispatch call from our public repo to our private repo using codex-/return-dispatch action.
issue:
The call actually successfully triggers the workflow in the private repo but there are two issues.
Issue1: It is not waiting until 600 seconds which i passed in the workflow_timeout_seconds: 600
Issue2: It always fails after 1 minute stating - "Timed out while attempting to fetch data"
I have run the workflow in debug mode and I can see it is printing - Runs Fetched: [] which means it is not able to fetch the run IDs. however when I use octokit to locally fetch the run IDs it actually works.
This is my calling workflow code - this
My receiving workflow has distinct_id as input params and also the echo step as the first step in the job.
*note - My receiving workflow is again calling 5 child workflows using workflow call.
Please help.