Signed-off-by: Andrew Johnson <ajohnson@gocardless.com>
This commit is contained in:
Andrew Johnson
2021-04-06 14:37:22 +01:00
parent 97c5797f4e
commit f7d71b6d9e
@@ -78,16 +78,21 @@ export function createPublishGithubAction(options: {
},
collaborators: {
title: 'Collaborators',
description: 'Provide users with permissions',
type: 'array',
properties: {
access: {
title: 'The type of access for the user',
type: 'string',
enum: ['push', 'pull', 'admin', 'maintain', 'triage'],
},
username: {
title: 'The username or group',
type: 'string',
items: {
type: 'object',
required: ['username', 'access'],
properties: {
access: {
type: 'string',
description: 'The type of access for the user',
enum: ['push', 'pull', 'admin', 'maintain', 'triage'],
},
username: {
type: 'string',
description: 'The username or group',
},
},
},
},