Skip to content

Commit d11dc85

Browse files
authored
Merge pull request github#28373 from github/repo-sync
Repo sync
2 parents 3652f31 + 1bcb6d3 commit d11dc85

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

content/webhooks/about-webhooks.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ Webhooks are a method of communication that allows users to subscribe to events
3535

3636
You can create webhooks for{% ifversion ghec or ghes or ghae %} a {% data variables.product.prodname_enterprise %},{% endif %} an organization, a repository, or a {% data variables.product.prodname_github_app %}.{% ifversion fpt or ghec %} You can also create webhooks to subscribe to events relating to {% data variables.product.prodname_sponsors %} and {% data variables.product.prodname_marketplace %}. {% endif %}
3737

38-
You can create up to {% ifversion ghec or ghes or ghae %}250{% else %}20{% endif %} webhooks for each event on each installation target {% ifversion ghes or ghae %}({% data variables.product.prodname_ghe_server %} instance, specific organization, or specific repository).{% else %}(specific organization or specific repository).{% endif %}
38+
You can create up to {% ifversion ghes or ghae %}250{% else %}20{% endif %} webhooks for each event on each installation target {% ifversion ghes or ghae %}({% data variables.product.prodname_ghe_server %} instance, specific organization, or specific repository).{% else %}(specific organization or specific repository).{% endif %}
3939

4040
For more information about creating webhooks, see "[AUTOTITLE](/webhooks/using-webhooks/creating-webhooks)."
4141

src/secret-scanning/lib/secret-scanning-schema.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -53,19 +53,19 @@ export default {
5353
versions: versionsProps,
5454
isPublic: {
5555
description: 'whether the secret is publicly available',
56-
type: 'boolean',
56+
type: ['boolean', 'string'],
5757
},
5858
isPrivateWithGhas: {
5959
description: 'whether the secret is available in GHAS',
60-
type: 'boolean',
60+
type: ['boolean', 'string'],
6161
},
6262
hasPushProtection: {
6363
description: 'whether the secret has push protection',
64-
type: 'boolean',
64+
type: ['boolean', 'string'],
6565
},
6666
hasValidityCheck: {
6767
description: 'whether the secret has its validation status checked',
68-
type: 'boolean',
68+
type: ['boolean', 'string'],
6969
},
7070
},
7171
},

0 commit comments

Comments
 (0)