Update schema for secret scanning data (#42842)

This commit is contained in:
Rachael Sewell 2023-09-20 10:51:06 -07:00 коммит произвёл GitHub
Родитель 7bed72b4a0
Коммит 0e8216aae4
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
1 изменённых файлов: 4 добавлений и 4 удалений

Просмотреть файл

@ -53,19 +53,19 @@ export default {
versions: versionsProps,
isPublic: {
description: 'whether the secret is publicly available',
type: 'boolean',
type: ['boolean', 'string'],
},
isPrivateWithGhas: {
description: 'whether the secret is available in GHAS',
type: 'boolean',
type: ['boolean', 'string'],
},
hasPushProtection: {
description: 'whether the secret has push protection',
type: 'boolean',
type: ['boolean', 'string'],
},
hasValidityCheck: {
description: 'whether the secret has its validation status checked',
type: 'boolean',
type: ['boolean', 'string'],
},
},
},