はじめてのオートメーションをわずか数分で作成できます。Studio Web を試す →
作成者: Internal Labs
0
コネクタ
<100
This is what I want to do.
It's awesome..
But i have no idea how to specify robot name if I want to execute a process on specific robot.
- when: "event.event_type = \"job.completed\" and release.process_key = \"helloworld\""
do:
start_job:
type: Classic
process: respond
strategy: Specific
job_count: 0
robots: mybot
folder: Default
it's not works.
Please guide me.
robots is a list, so the syntax should be something like
start_job:
type: Classic
process: respond
strategy: Specific
job_count: 0
robots:
- mybot
folder: Default
Also, you are using the "Classic" type, so please make extra double sure that you are in a classic folder, not a Modern one.