You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
support public trigger-event; by default all events are private (#159)
* support public trigger-event; by default all events are private (account specific)
* update cli to work with trigger-events
* update cli to work with trigger-events
* aligning cli with private triggers
description: 'Define new trigger(s): link pipeline(s) to the specified `trigger-event`',
8
+
command: 'link <event-uri> <pipeline>',
9
+
description: 'Create trigger: link pipeline to `trigger-event`',
10
10
webDocs: {
11
11
category: 'Triggers',
12
12
title: 'Define Pipeline Trigger',
13
13
},
14
14
builder: (yargs)=>{
15
15
yargs
16
16
.positional('event-uri',{
17
-
describe: '`trigger-event` URI (as defined by trigger `type[/kind]`)',
17
+
describe: '`trigger-event` URI',
18
18
require: true,
19
19
})
20
20
.positional('pipeline',{
21
-
describe: 'pipeline(s) to be triggered by the specified `trigger-event`',
21
+
describe: 'pipeline to be triggered by the `trigger-event`',
22
22
require: true,
23
23
})
24
24
.example('codefresh link registry:dockerhub:codefresh:fortune:push 5a439664af73ad0001f3ece0','Setup trigger by linking 5a43... pipeline to the DockerHub `codefresh/fortune` `push` event');
0 commit comments