-
Hi, It's a real shame as it's a good function. @keithconvictional Any thoughts on why the inputs don't work? Thanks, |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
Got this working now. On your downstream repo setup workflow_dispatch to take inputs e.g. on: From your invoker repo yaml using trigger-workflow-and-wait, add this tag inputs: '{ "testurl" :"http://xyz.com" }' |
Beta Was this translation helpful? Give feedback.
Got this working now. On your downstream repo setup workflow_dispatch to take inputs e.g.
on:
workflow_dispatch:
# Inputs the workflow accepts.
inputs:
testurl:
description: 'Which URL to test with'
default: 'http://abcd.com'
required: true
From your invoker repo yaml using trigger-workflow-and-wait, add this tag
inputs: '{ "testurl" :"http://xyz.com" }'