We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6eb076c commit 40d21abCopy full SHA for 40d21ab
lib/interface/cli/commands/trigger/create.cmd.js
@@ -35,7 +35,7 @@ const command = new Command({
35
const { 'event-uri': event, pipeline } = argv;
36
37
const filters = prepareKeyValueFromCLIEnvOption(argv.filter);
38
- await sdk.triggers.create({ event, pipeline }, { filters });
+ await sdk.triggers.create({ event: encodeURIComponent(event), pipeline }, { filters });
39
console.log(`Trigger: ${event} was successfully linked to the pipeline: ${pipeline}`);
40
},
41
});
package.json
@@ -1,6 +1,6 @@
1
{
2
"name": "codefresh",
3
- "version": "0.43.12",
+ "version": "0.43.13",
4
"description": "Codefresh command line utility",
5
"main": "index.js",
6
"preferGlobal": true,
0 commit comments