How would I go about creating an orchestration workflow where called workflows have access to the original prompt?
on:
workflow_dispatch:
issues:
types: [opened, reopened]
...
safe-outputs:
dispatch-workflow:
workflows: [create-document-worker, write-code-worker]
max: 10
Above is an example of a workflow triggered from someone creating an issue, I want to pass the issue contents to the write-code-worker
If you could point me in the write direction that would be much appreciated.
Thanks
How would I go about creating an orchestration workflow where called workflows have access to the original prompt?
Above is an example of a workflow triggered from someone creating an issue, I want to pass the issue contents to the
write-code-workerIf you could point me in the write direction that would be much appreciated.
Thanks