Add ProjectID to the output for #10907

Signed-off-by: Peter Macdonald <macdonald.peter90@gmail.com>
This commit is contained in:
Peter Macdonald
2022-08-24 15:37:25 +02:00
parent 2c246ecebb
commit 290ca43a20
@@ -112,6 +112,10 @@ export function createPublishGitlabAction(options: {
title: 'A URL to the root of the repository',
type: 'string',
},
projectId: {
title: 'The ID of the project',
type: 'string',
},
},
},
},
@@ -214,6 +218,7 @@ export function createPublishGitlabAction(options: {
ctx.output('remoteUrl', remoteUrl);
ctx.output('repoContentsUrl', repoContentsUrl);
ctx.output('projectId', projectId);
},
});
}