diff --git a/.github/workflows/ready-for-doc-review.yml b/.github/workflows/ready-for-doc-review.yml index 02defd0589b5..40c944732540 100644 --- a/.github/workflows/ready-for-doc-review.yml +++ b/.github/workflows/ready-for-doc-review.yml @@ -49,17 +49,25 @@ jobs: env: GITHUB_TOKEN: ${{ secrets.DOCS_BOT_PAT_WRITEORG_PROJECT }} run: | + echo "Extracting issue numbers from PR description..." ISSUE_NUMS=$(echo "${{ github.event.pull_request.body }}" | grep -oE '(https://github.com/github/docs-content/issues/[0-9]+|github/docs-content#[0-9]+|#[0-9]+)' | grep -oE '[0-9]+$') + echo "Extracted issue numbers: $ISSUE_NUMS" if [ -n "$ISSUE_NUMS" ]; then for ISSUE_NUM in $ISSUE_NUMS; do # Check if the issue exists in the docs-content repository + echo "Checking issue $ISSUE_NUM in the docs-content repository..." if gh issue view $ISSUE_NUM --repo github/docs-content --json labels > /dev/null 2>&1; then + echo "Issue $ISSUE_NUM exists in docs-content. Fetching labels..." # Fetch labels for the issue LABELS=$(gh issue view $ISSUE_NUM --repo github/docs-content --json labels --jq '.labels[].name' || echo "") + echo "Labels for issue $ISSUE_NUM: $LABELS" if echo "$LABELS" | grep -q 'DIY docs'; then + echo "DIY docs label found for issue $ISSUE_NUM." echo "DIY_DOCS_LABEL=true" >> $GITHUB_ENV break + else + echo "DIY docs label not found for issue #$ISSUE_NUM." fi else echo "Issue $ISSUE_NUM does not exist in the docs-content repository." diff --git a/src/github-apps/lib/config.json b/src/github-apps/lib/config.json index 0b47bf12289e..a07d51bcf0be 100644 --- a/src/github-apps/lib/config.json +++ b/src/github-apps/lib/config.json @@ -60,5 +60,5 @@ "2022-11-28" ] }, - "sha": "fd8b14666d8a4e34411bee8dbd103edc8b81d0e3" + "sha": "dd7e0cab3399025166a33575ce09af6ff60bb26a" } \ No newline at end of file diff --git a/src/rest/data/fpt-2022-11-28/schema.json b/src/rest/data/fpt-2022-11-28/schema.json index eebc3059e6d5..3689bc5f8616 100644 --- a/src/rest/data/fpt-2022-11-28/schema.json +++ b/src/rest/data/fpt-2022-11-28/schema.json @@ -291233,7 +291233,7 @@ "type": "string or null", "name": "type", "in": "body", - "description": "
The name of the issue type to associate with this issue.
" + "description": "The name of the issue type to associate with this issue. NOTE: Only users with push access can set the type for new issues. The type is silently dropped otherwise.
" } ], "progAccess": { @@ -297388,7 +297388,7 @@ "type": "string or null", "name": "type", "in": "body", - "description": "The name of the issue type to associate with this issue or use null
to remove the current issue type.
The name of the issue type to associate with this issue or use null
to remove the current issue type. Only users with push access can set the type for issues. Without push access to the repository, type changes are silently dropped.
Lists all issue types for an organization.
", + "descriptionHTML": "Lists all issue types for an organization. OAuth app tokens and personal access tokens (classic) need the read:org scope to use this endpoint.
", "statusCodes": [ { "httpStatusCode": "200", @@ -393349,7 +393349,7 @@ } ], "previews": [], - "descriptionHTML": "Create a new issue type for an organization.
\nYou can find out more about issue types in Managing issue types in an organization.
", + "descriptionHTML": "Create a new issue type for an organization.
\nYou can find out more about issue types in Managing issue types in an organization.
\nTo use this endpoint, the authenticated user must be an administrator for the organization. OAuth app tokens and\npersonal access tokens (classic) need the admin:org
scope to use this endpoint.
Updates an issue type for an organization.
\nYou can find out more about issue types in Managing issue types in an organization.
", + "descriptionHTML": "Updates an issue type for an organization.
\nYou can find out more about issue types in Managing issue types in an organization.
\nTo use this endpoint, the authenticated user must be an administrator for the organization. OAuth app tokens and\npersonal access tokens (classic) need the admin:org
scope to use this endpoint.
Deletes an issue type for an organization.
\nYou can find out more about issue types in Managing issue types in an organization.
", + "descriptionHTML": "Deletes an issue type for an organization.
\nYou can find out more about issue types in Managing issue types in an organization.
\nTo use this endpoint, the authenticated user must be an administrator for the organization. OAuth app tokens and\npersonal access tokens (classic) need the admin:org
scope to use this endpoint.
Prevent commits that include changes in specified file paths from being pushed to the commit graph.
", + "description": "Prevent commits that include changes in specified file and folder paths from being pushed to the commit graph. This includes absolute paths that contain file names.
", "isRequired": [ "type" ], @@ -407968,7 +407968,7 @@ { "type": "object", "name": "max_file_path_length", - "description": "Prevent commits that include file paths that exceed a specified character limit from being pushed to the commit graph.
", + "description": "Prevent commits that include file paths that exceed the specified character limit from being pushed to the commit graph.
", "isRequired": [ "type" ], @@ -407990,7 +407990,7 @@ { "type": "integer", "name": "max_file_path_length", - "description": "The maximum amount of characters allowed in file paths
", + "description": "The maximum amount of characters allowed in file paths.
", "isRequired": true } ] @@ -408032,7 +408032,7 @@ { "type": "object", "name": "max_file_size", - "description": "Prevent commits that exceed a specified file size limit from being pushed to the commit graph.
", + "description": "Prevent commits with individual files that exceed the specified limit from being pushed to the commit graph.
", "isRequired": [ "type" ], @@ -409299,7 +409299,7 @@ }, { "title": "file_path_restriction", - "description": "Prevent commits that include changes in specified file paths from being pushed to the commit graph.", + "description": "Prevent commits that include changes in specified file and folder paths from being pushed to the commit graph. This includes absolute paths that contain file names.", "type": "object", "required": [ "type" @@ -409330,7 +409330,7 @@ }, { "title": "max_file_path_length", - "description": "Prevent commits that include file paths that exceed a specified character limit from being pushed to the commit graph.", + "description": "Prevent commits that include file paths that exceed the specified character limit from being pushed to the commit graph.", "type": "object", "required": [ "type" @@ -409347,7 +409347,7 @@ "properties": { "max_file_path_length": { "type": "integer", - "description": "The maximum amount of characters allowed in file paths", + "description": "The maximum amount of characters allowed in file paths.", "minimum": 1, "maximum": 256 } @@ -409391,7 +409391,7 @@ }, { "title": "max_file_size", - "description": "Prevent commits that exceed a specified file size limit from being pushed to the commit graph.", + "description": "Prevent commits with individual files that exceed the specified limit from being pushed to the commit graph.", "type": "object", "required": [ "type" @@ -410670,7 +410670,7 @@ }, { "title": "file_path_restriction", - "description": "Prevent commits that include changes in specified file paths from being pushed to the commit graph.", + "description": "Prevent commits that include changes in specified file and folder paths from being pushed to the commit graph. This includes absolute paths that contain file names.", "type": "object", "required": [ "type" @@ -410701,7 +410701,7 @@ }, { "title": "max_file_path_length", - "description": "Prevent commits that include file paths that exceed a specified character limit from being pushed to the commit graph.", + "description": "Prevent commits that include file paths that exceed the specified character limit from being pushed to the commit graph.", "type": "object", "required": [ "type" @@ -410718,7 +410718,7 @@ "properties": { "max_file_path_length": { "type": "integer", - "description": "The maximum amount of characters allowed in file paths", + "description": "The maximum amount of characters allowed in file paths.", "minimum": 1, "maximum": 256 } @@ -410762,7 +410762,7 @@ }, { "title": "max_file_size", - "description": "Prevent commits that exceed a specified file size limit from being pushed to the commit graph.", + "description": "Prevent commits with individual files that exceed the specified limit from being pushed to the commit graph.", "type": "object", "required": [ "type" @@ -411862,7 +411862,7 @@ { "type": "object", "name": "file_path_restriction", - "description": "Prevent commits that include changes in specified file paths from being pushed to the commit graph.
", + "description": "Prevent commits that include changes in specified file and folder paths from being pushed to the commit graph. This includes absolute paths that contain file names.
", "isRequired": [ "type" ], @@ -411894,7 +411894,7 @@ { "type": "object", "name": "max_file_path_length", - "description": "Prevent commits that include file paths that exceed a specified character limit from being pushed to the commit graph.
", + "description": "Prevent commits that include file paths that exceed the specified character limit from being pushed to the commit graph.
", "isRequired": [ "type" ], @@ -411916,7 +411916,7 @@ { "type": "integer", "name": "max_file_path_length", - "description": "The maximum amount of characters allowed in file paths
", + "description": "The maximum amount of characters allowed in file paths.
", "isRequired": true } ] @@ -411958,7 +411958,7 @@ { "type": "object", "name": "max_file_size", - "description": "Prevent commits that exceed a specified file size limit from being pushed to the commit graph.
", + "description": "Prevent commits with individual files that exceed the specified limit from being pushed to the commit graph.
", "isRequired": [ "type" ], @@ -413226,7 +413226,7 @@ }, { "title": "file_path_restriction", - "description": "Prevent commits that include changes in specified file paths from being pushed to the commit graph.", + "description": "Prevent commits that include changes in specified file and folder paths from being pushed to the commit graph. This includes absolute paths that contain file names.", "type": "object", "required": [ "type" @@ -413257,7 +413257,7 @@ }, { "title": "max_file_path_length", - "description": "Prevent commits that include file paths that exceed a specified character limit from being pushed to the commit graph.", + "description": "Prevent commits that include file paths that exceed the specified character limit from being pushed to the commit graph.", "type": "object", "required": [ "type" @@ -413274,7 +413274,7 @@ "properties": { "max_file_path_length": { "type": "integer", - "description": "The maximum amount of characters allowed in file paths", + "description": "The maximum amount of characters allowed in file paths.", "minimum": 1, "maximum": 256 } @@ -413318,7 +413318,7 @@ }, { "title": "max_file_size", - "description": "Prevent commits that exceed a specified file size limit from being pushed to the commit graph.", + "description": "Prevent commits with individual files that exceed the specified limit from being pushed to the commit graph.", "type": "object", "required": [ "type" @@ -539481,7 +539481,7 @@ "allOf": [ { "title": "file_path_restriction", - "description": "Prevent commits that include changes in specified file paths from being pushed to the commit graph.", + "description": "Prevent commits that include changes in specified file and folder paths from being pushed to the commit graph. This includes absolute paths that contain file names.", "type": "object", "required": [ "type" @@ -539538,7 +539538,7 @@ "allOf": [ { "title": "max_file_path_length", - "description": "Prevent commits that include file paths that exceed a specified character limit from being pushed to the commit graph.", + "description": "Prevent commits that include file paths that exceed the specified character limit from being pushed to the commit graph.", "type": "object", "required": [ "type" @@ -539555,7 +539555,7 @@ "properties": { "max_file_path_length": { "type": "integer", - "description": "The maximum amount of characters allowed in file paths", + "description": "The maximum amount of characters allowed in file paths.", "minimum": 1, "maximum": 256 } @@ -539651,7 +539651,7 @@ "allOf": [ { "title": "max_file_size", - "description": "Prevent commits that exceed a specified file size limit from being pushed to the commit graph.", + "description": "Prevent commits with individual files that exceed the specified limit from being pushed to the commit graph.", "type": "object", "required": [ "type" @@ -541013,7 +541013,7 @@ }, { "title": "file_path_restriction", - "description": "Prevent commits that include changes in specified file paths from being pushed to the commit graph.", + "description": "Prevent commits that include changes in specified file and folder paths from being pushed to the commit graph. This includes absolute paths that contain file names.", "type": "object", "required": [ "type" @@ -541044,7 +541044,7 @@ }, { "title": "max_file_path_length", - "description": "Prevent commits that include file paths that exceed a specified character limit from being pushed to the commit graph.", + "description": "Prevent commits that include file paths that exceed the specified character limit from being pushed to the commit graph.", "type": "object", "required": [ "type" @@ -541061,7 +541061,7 @@ "properties": { "max_file_path_length": { "type": "integer", - "description": "The maximum amount of characters allowed in file paths", + "description": "The maximum amount of characters allowed in file paths.", "minimum": 1, "maximum": 256 } @@ -541105,7 +541105,7 @@ }, { "title": "max_file_size", - "description": "Prevent commits that exceed a specified file size limit from being pushed to the commit graph.", + "description": "Prevent commits with individual files that exceed the specified limit from being pushed to the commit graph.", "type": "object", "required": [ "type" @@ -542043,7 +542043,7 @@ { "type": "object", "name": "file_path_restriction", - "description": "Prevent commits that include changes in specified file paths from being pushed to the commit graph.
", + "description": "Prevent commits that include changes in specified file and folder paths from being pushed to the commit graph. This includes absolute paths that contain file names.
", "isRequired": [ "type" ], @@ -542075,7 +542075,7 @@ { "type": "object", "name": "max_file_path_length", - "description": "Prevent commits that include file paths that exceed a specified character limit from being pushed to the commit graph.
", + "description": "Prevent commits that include file paths that exceed the specified character limit from being pushed to the commit graph.
", "isRequired": [ "type" ], @@ -542097,7 +542097,7 @@ { "type": "integer", "name": "max_file_path_length", - "description": "The maximum amount of characters allowed in file paths
", + "description": "The maximum amount of characters allowed in file paths.
", "isRequired": true } ] @@ -542139,7 +542139,7 @@ { "type": "object", "name": "max_file_size", - "description": "Prevent commits that exceed a specified file size limit from being pushed to the commit graph.
", + "description": "Prevent commits with individual files that exceed the specified limit from being pushed to the commit graph.
", "isRequired": [ "type" ], @@ -543387,7 +543387,7 @@ }, { "title": "file_path_restriction", - "description": "Prevent commits that include changes in specified file paths from being pushed to the commit graph.", + "description": "Prevent commits that include changes in specified file and folder paths from being pushed to the commit graph. This includes absolute paths that contain file names.", "type": "object", "required": [ "type" @@ -543418,7 +543418,7 @@ }, { "title": "max_file_path_length", - "description": "Prevent commits that include file paths that exceed a specified character limit from being pushed to the commit graph.", + "description": "Prevent commits that include file paths that exceed the specified character limit from being pushed to the commit graph.", "type": "object", "required": [ "type" @@ -543435,7 +543435,7 @@ "properties": { "max_file_path_length": { "type": "integer", - "description": "The maximum amount of characters allowed in file paths", + "description": "The maximum amount of characters allowed in file paths.", "minimum": 1, "maximum": 256 } @@ -543479,7 +543479,7 @@ }, { "title": "max_file_size", - "description": "Prevent commits that exceed a specified file size limit from being pushed to the commit graph.", + "description": "Prevent commits with individual files that exceed the specified limit from being pushed to the commit graph.", "type": "object", "required": [ "type" @@ -544769,7 +544769,7 @@ }, { "title": "file_path_restriction", - "description": "Prevent commits that include changes in specified file paths from being pushed to the commit graph.", + "description": "Prevent commits that include changes in specified file and folder paths from being pushed to the commit graph. This includes absolute paths that contain file names.", "type": "object", "required": [ "type" @@ -544800,7 +544800,7 @@ }, { "title": "max_file_path_length", - "description": "Prevent commits that include file paths that exceed a specified character limit from being pushed to the commit graph.", + "description": "Prevent commits that include file paths that exceed the specified character limit from being pushed to the commit graph.", "type": "object", "required": [ "type" @@ -544817,7 +544817,7 @@ "properties": { "max_file_path_length": { "type": "integer", - "description": "The maximum amount of characters allowed in file paths", + "description": "The maximum amount of characters allowed in file paths.", "minimum": 1, "maximum": 256 } @@ -544861,7 +544861,7 @@ }, { "title": "max_file_size", - "description": "Prevent commits that exceed a specified file size limit from being pushed to the commit graph.", + "description": "Prevent commits with individual files that exceed the specified limit from being pushed to the commit graph.", "type": "object", "required": [ "type" @@ -545804,7 +545804,7 @@ { "type": "object", "name": "file_path_restriction", - "description": "Prevent commits that include changes in specified file paths from being pushed to the commit graph.
", + "description": "Prevent commits that include changes in specified file and folder paths from being pushed to the commit graph. This includes absolute paths that contain file names.
", "isRequired": [ "type" ], @@ -545836,7 +545836,7 @@ { "type": "object", "name": "max_file_path_length", - "description": "Prevent commits that include file paths that exceed a specified character limit from being pushed to the commit graph.
", + "description": "Prevent commits that include file paths that exceed the specified character limit from being pushed to the commit graph.
", "isRequired": [ "type" ], @@ -545858,7 +545858,7 @@ { "type": "integer", "name": "max_file_path_length", - "description": "The maximum amount of characters allowed in file paths
", + "description": "The maximum amount of characters allowed in file paths.
", "isRequired": true } ] @@ -545900,7 +545900,7 @@ { "type": "object", "name": "max_file_size", - "description": "Prevent commits that exceed a specified file size limit from being pushed to the commit graph.
", + "description": "Prevent commits with individual files that exceed the specified limit from being pushed to the commit graph.
", "isRequired": [ "type" ], @@ -547149,7 +547149,7 @@ }, { "title": "file_path_restriction", - "description": "Prevent commits that include changes in specified file paths from being pushed to the commit graph.", + "description": "Prevent commits that include changes in specified file and folder paths from being pushed to the commit graph. This includes absolute paths that contain file names.", "type": "object", "required": [ "type" @@ -547180,7 +547180,7 @@ }, { "title": "max_file_path_length", - "description": "Prevent commits that include file paths that exceed a specified character limit from being pushed to the commit graph.", + "description": "Prevent commits that include file paths that exceed the specified character limit from being pushed to the commit graph.", "type": "object", "required": [ "type" @@ -547197,7 +547197,7 @@ "properties": { "max_file_path_length": { "type": "integer", - "description": "The maximum amount of characters allowed in file paths", + "description": "The maximum amount of characters allowed in file paths.", "minimum": 1, "maximum": 256 } @@ -547241,7 +547241,7 @@ }, { "title": "max_file_size", - "description": "Prevent commits that exceed a specified file size limit from being pushed to the commit graph.", + "description": "Prevent commits with individual files that exceed the specified limit from being pushed to the commit graph.", "type": "object", "required": [ "type" diff --git a/src/rest/data/ghec-2022-11-28/schema.json b/src/rest/data/ghec-2022-11-28/schema.json index f581954f4518..a4e1ebc9cad7 100644 --- a/src/rest/data/ghec-2022-11-28/schema.json +++ b/src/rest/data/ghec-2022-11-28/schema.json @@ -284241,7 +284241,7 @@ { "type": "object", "name": "file_path_restriction", - "description": "Prevent commits that include changes in specified file paths from being pushed to the commit graph.
", + "description": "Prevent commits that include changes in specified file and folder paths from being pushed to the commit graph. This includes absolute paths that contain file names.
", "isRequired": [ "type" ], @@ -284273,7 +284273,7 @@ { "type": "object", "name": "max_file_path_length", - "description": "Prevent commits that include file paths that exceed a specified character limit from being pushed to the commit graph.
", + "description": "Prevent commits that include file paths that exceed the specified character limit from being pushed to the commit graph.
", "isRequired": [ "type" ], @@ -284295,7 +284295,7 @@ { "type": "integer", "name": "max_file_path_length", - "description": "The maximum amount of characters allowed in file paths
", + "description": "The maximum amount of characters allowed in file paths.
", "isRequired": true } ] @@ -284337,7 +284337,7 @@ { "type": "object", "name": "max_file_size", - "description": "Prevent commits that exceed a specified file size limit from being pushed to the commit graph.
", + "description": "Prevent commits with individual files that exceed the specified limit from being pushed to the commit graph.
", "isRequired": [ "type" ], @@ -285570,7 +285570,7 @@ }, { "title": "file_path_restriction", - "description": "Prevent commits that include changes in specified file paths from being pushed to the commit graph.", + "description": "Prevent commits that include changes in specified file and folder paths from being pushed to the commit graph. This includes absolute paths that contain file names.", "type": "object", "required": [ "type" @@ -285601,7 +285601,7 @@ }, { "title": "max_file_path_length", - "description": "Prevent commits that include file paths that exceed a specified character limit from being pushed to the commit graph.", + "description": "Prevent commits that include file paths that exceed the specified character limit from being pushed to the commit graph.", "type": "object", "required": [ "type" @@ -285618,7 +285618,7 @@ "properties": { "max_file_path_length": { "type": "integer", - "description": "The maximum amount of characters allowed in file paths", + "description": "The maximum amount of characters allowed in file paths.", "minimum": 1, "maximum": 256 } @@ -285662,7 +285662,7 @@ }, { "title": "max_file_size", - "description": "Prevent commits that exceed a specified file size limit from being pushed to the commit graph.", + "description": "Prevent commits with individual files that exceed the specified limit from being pushed to the commit graph.", "type": "object", "required": [ "type" @@ -286922,7 +286922,7 @@ }, { "title": "file_path_restriction", - "description": "Prevent commits that include changes in specified file paths from being pushed to the commit graph.", + "description": "Prevent commits that include changes in specified file and folder paths from being pushed to the commit graph. This includes absolute paths that contain file names.", "type": "object", "required": [ "type" @@ -286953,7 +286953,7 @@ }, { "title": "max_file_path_length", - "description": "Prevent commits that include file paths that exceed a specified character limit from being pushed to the commit graph.", + "description": "Prevent commits that include file paths that exceed the specified character limit from being pushed to the commit graph.", "type": "object", "required": [ "type" @@ -286970,7 +286970,7 @@ "properties": { "max_file_path_length": { "type": "integer", - "description": "The maximum amount of characters allowed in file paths", + "description": "The maximum amount of characters allowed in file paths.", "minimum": 1, "maximum": 256 } @@ -287014,7 +287014,7 @@ }, { "title": "max_file_size", - "description": "Prevent commits that exceed a specified file size limit from being pushed to the commit graph.", + "description": "Prevent commits with individual files that exceed the specified limit from being pushed to the commit graph.", "type": "object", "required": [ "type" @@ -288282,7 +288282,7 @@ { "type": "object", "name": "file_path_restriction", - "description": "Prevent commits that include changes in specified file paths from being pushed to the commit graph.
", + "description": "Prevent commits that include changes in specified file and folder paths from being pushed to the commit graph. This includes absolute paths that contain file names.
", "isRequired": [ "type" ], @@ -288314,7 +288314,7 @@ { "type": "object", "name": "max_file_path_length", - "description": "Prevent commits that include file paths that exceed a specified character limit from being pushed to the commit graph.
", + "description": "Prevent commits that include file paths that exceed the specified character limit from being pushed to the commit graph.
", "isRequired": [ "type" ], @@ -288336,7 +288336,7 @@ { "type": "integer", "name": "max_file_path_length", - "description": "The maximum amount of characters allowed in file paths
", + "description": "The maximum amount of characters allowed in file paths.
", "isRequired": true } ] @@ -288378,7 +288378,7 @@ { "type": "object", "name": "max_file_size", - "description": "Prevent commits that exceed a specified file size limit from being pushed to the commit graph.
", + "description": "Prevent commits with individual files that exceed the specified limit from being pushed to the commit graph.
", "isRequired": [ "type" ], @@ -289612,7 +289612,7 @@ }, { "title": "file_path_restriction", - "description": "Prevent commits that include changes in specified file paths from being pushed to the commit graph.", + "description": "Prevent commits that include changes in specified file and folder paths from being pushed to the commit graph. This includes absolute paths that contain file names.", "type": "object", "required": [ "type" @@ -289643,7 +289643,7 @@ }, { "title": "max_file_path_length", - "description": "Prevent commits that include file paths that exceed a specified character limit from being pushed to the commit graph.", + "description": "Prevent commits that include file paths that exceed the specified character limit from being pushed to the commit graph.", "type": "object", "required": [ "type" @@ -289660,7 +289660,7 @@ "properties": { "max_file_path_length": { "type": "integer", - "description": "The maximum amount of characters allowed in file paths", + "description": "The maximum amount of characters allowed in file paths.", "minimum": 1, "maximum": 256 } @@ -289704,7 +289704,7 @@ }, { "title": "max_file_size", - "description": "Prevent commits that exceed a specified file size limit from being pushed to the commit graph.", + "description": "Prevent commits with individual files that exceed the specified limit from being pushed to the commit graph.", "type": "object", "required": [ "type" @@ -323960,7 +323960,7 @@ "type": "string or null", "name": "type", "in": "body", - "description": "The name of the issue type to associate with this issue.
" + "description": "The name of the issue type to associate with this issue. NOTE: Only users with push access can set the type for new issues. The type is silently dropped otherwise.
" } ], "progAccess": { @@ -330115,7 +330115,7 @@ "type": "string or null", "name": "type", "in": "body", - "description": "The name of the issue type to associate with this issue or use null
to remove the current issue type.
The name of the issue type to associate with this issue or use null
to remove the current issue type. Only users with push access can set the type for issues. Without push access to the repository, type changes are silently dropped.
Lists all issue types for an organization.
", + "descriptionHTML": "Lists all issue types for an organization. OAuth app tokens and personal access tokens (classic) need the read:org scope to use this endpoint.
", "statusCodes": [ { "httpStatusCode": "200", @@ -430263,7 +430263,7 @@ } ], "previews": [], - "descriptionHTML": "Create a new issue type for an organization.
\nYou can find out more about issue types in Managing issue types in an organization.
", + "descriptionHTML": "Create a new issue type for an organization.
\nYou can find out more about issue types in Managing issue types in an organization.
\nTo use this endpoint, the authenticated user must be an administrator for the organization. OAuth app tokens and\npersonal access tokens (classic) need the admin:org
scope to use this endpoint.
Updates an issue type for an organization.
\nYou can find out more about issue types in Managing issue types in an organization.
", + "descriptionHTML": "Updates an issue type for an organization.
\nYou can find out more about issue types in Managing issue types in an organization.
\nTo use this endpoint, the authenticated user must be an administrator for the organization. OAuth app tokens and\npersonal access tokens (classic) need the admin:org
scope to use this endpoint.
Deletes an issue type for an organization.
\nYou can find out more about issue types in Managing issue types in an organization.
", + "descriptionHTML": "Deletes an issue type for an organization.
\nYou can find out more about issue types in Managing issue types in an organization.
\nTo use this endpoint, the authenticated user must be an administrator for the organization. OAuth app tokens and\npersonal access tokens (classic) need the admin:org
scope to use this endpoint.
Prevent commits that include changes in specified file paths from being pushed to the commit graph.
", + "description": "Prevent commits that include changes in specified file and folder paths from being pushed to the commit graph. This includes absolute paths that contain file names.
", "isRequired": [ "type" ], @@ -445847,7 +445847,7 @@ { "type": "object", "name": "max_file_path_length", - "description": "Prevent commits that include file paths that exceed a specified character limit from being pushed to the commit graph.
", + "description": "Prevent commits that include file paths that exceed the specified character limit from being pushed to the commit graph.
", "isRequired": [ "type" ], @@ -445869,7 +445869,7 @@ { "type": "integer", "name": "max_file_path_length", - "description": "The maximum amount of characters allowed in file paths
", + "description": "The maximum amount of characters allowed in file paths.
", "isRequired": true } ] @@ -445911,7 +445911,7 @@ { "type": "object", "name": "max_file_size", - "description": "Prevent commits that exceed a specified file size limit from being pushed to the commit graph.
", + "description": "Prevent commits with individual files that exceed the specified limit from being pushed to the commit graph.
", "isRequired": [ "type" ], @@ -447179,7 +447179,7 @@ }, { "title": "file_path_restriction", - "description": "Prevent commits that include changes in specified file paths from being pushed to the commit graph.", + "description": "Prevent commits that include changes in specified file and folder paths from being pushed to the commit graph. This includes absolute paths that contain file names.", "type": "object", "required": [ "type" @@ -447210,7 +447210,7 @@ }, { "title": "max_file_path_length", - "description": "Prevent commits that include file paths that exceed a specified character limit from being pushed to the commit graph.", + "description": "Prevent commits that include file paths that exceed the specified character limit from being pushed to the commit graph.", "type": "object", "required": [ "type" @@ -447227,7 +447227,7 @@ "properties": { "max_file_path_length": { "type": "integer", - "description": "The maximum amount of characters allowed in file paths", + "description": "The maximum amount of characters allowed in file paths.", "minimum": 1, "maximum": 256 } @@ -447271,7 +447271,7 @@ }, { "title": "max_file_size", - "description": "Prevent commits that exceed a specified file size limit from being pushed to the commit graph.", + "description": "Prevent commits with individual files that exceed the specified limit from being pushed to the commit graph.", "type": "object", "required": [ "type" @@ -448551,7 +448551,7 @@ }, { "title": "file_path_restriction", - "description": "Prevent commits that include changes in specified file paths from being pushed to the commit graph.", + "description": "Prevent commits that include changes in specified file and folder paths from being pushed to the commit graph. This includes absolute paths that contain file names.", "type": "object", "required": [ "type" @@ -448582,7 +448582,7 @@ }, { "title": "max_file_path_length", - "description": "Prevent commits that include file paths that exceed a specified character limit from being pushed to the commit graph.", + "description": "Prevent commits that include file paths that exceed the specified character limit from being pushed to the commit graph.", "type": "object", "required": [ "type" @@ -448599,7 +448599,7 @@ "properties": { "max_file_path_length": { "type": "integer", - "description": "The maximum amount of characters allowed in file paths", + "description": "The maximum amount of characters allowed in file paths.", "minimum": 1, "maximum": 256 } @@ -448643,7 +448643,7 @@ }, { "title": "max_file_size", - "description": "Prevent commits that exceed a specified file size limit from being pushed to the commit graph.", + "description": "Prevent commits with individual files that exceed the specified limit from being pushed to the commit graph.", "type": "object", "required": [ "type" @@ -449744,7 +449744,7 @@ { "type": "object", "name": "file_path_restriction", - "description": "Prevent commits that include changes in specified file paths from being pushed to the commit graph.
", + "description": "Prevent commits that include changes in specified file and folder paths from being pushed to the commit graph. This includes absolute paths that contain file names.
", "isRequired": [ "type" ], @@ -449776,7 +449776,7 @@ { "type": "object", "name": "max_file_path_length", - "description": "Prevent commits that include file paths that exceed a specified character limit from being pushed to the commit graph.
", + "description": "Prevent commits that include file paths that exceed the specified character limit from being pushed to the commit graph.
", "isRequired": [ "type" ], @@ -449798,7 +449798,7 @@ { "type": "integer", "name": "max_file_path_length", - "description": "The maximum amount of characters allowed in file paths
", + "description": "The maximum amount of characters allowed in file paths.
", "isRequired": true } ] @@ -449840,7 +449840,7 @@ { "type": "object", "name": "max_file_size", - "description": "Prevent commits that exceed a specified file size limit from being pushed to the commit graph.
", + "description": "Prevent commits with individual files that exceed the specified limit from being pushed to the commit graph.
", "isRequired": [ "type" ], @@ -451109,7 +451109,7 @@ }, { "title": "file_path_restriction", - "description": "Prevent commits that include changes in specified file paths from being pushed to the commit graph.", + "description": "Prevent commits that include changes in specified file and folder paths from being pushed to the commit graph. This includes absolute paths that contain file names.", "type": "object", "required": [ "type" @@ -451140,7 +451140,7 @@ }, { "title": "max_file_path_length", - "description": "Prevent commits that include file paths that exceed a specified character limit from being pushed to the commit graph.", + "description": "Prevent commits that include file paths that exceed the specified character limit from being pushed to the commit graph.", "type": "object", "required": [ "type" @@ -451157,7 +451157,7 @@ "properties": { "max_file_path_length": { "type": "integer", - "description": "The maximum amount of characters allowed in file paths", + "description": "The maximum amount of characters allowed in file paths.", "minimum": 1, "maximum": 256 } @@ -451201,7 +451201,7 @@ }, { "title": "max_file_size", - "description": "Prevent commits that exceed a specified file size limit from being pushed to the commit graph.", + "description": "Prevent commits with individual files that exceed the specified limit from being pushed to the commit graph.", "type": "object", "required": [ "type" @@ -578537,7 +578537,7 @@ "allOf": [ { "title": "file_path_restriction", - "description": "Prevent commits that include changes in specified file paths from being pushed to the commit graph.", + "description": "Prevent commits that include changes in specified file and folder paths from being pushed to the commit graph. This includes absolute paths that contain file names.", "type": "object", "required": [ "type" @@ -578594,7 +578594,7 @@ "allOf": [ { "title": "max_file_path_length", - "description": "Prevent commits that include file paths that exceed a specified character limit from being pushed to the commit graph.", + "description": "Prevent commits that include file paths that exceed the specified character limit from being pushed to the commit graph.", "type": "object", "required": [ "type" @@ -578611,7 +578611,7 @@ "properties": { "max_file_path_length": { "type": "integer", - "description": "The maximum amount of characters allowed in file paths", + "description": "The maximum amount of characters allowed in file paths.", "minimum": 1, "maximum": 256 } @@ -578707,7 +578707,7 @@ "allOf": [ { "title": "max_file_size", - "description": "Prevent commits that exceed a specified file size limit from being pushed to the commit graph.", + "description": "Prevent commits with individual files that exceed the specified limit from being pushed to the commit graph.", "type": "object", "required": [ "type" @@ -580070,7 +580070,7 @@ }, { "title": "file_path_restriction", - "description": "Prevent commits that include changes in specified file paths from being pushed to the commit graph.", + "description": "Prevent commits that include changes in specified file and folder paths from being pushed to the commit graph. This includes absolute paths that contain file names.", "type": "object", "required": [ "type" @@ -580101,7 +580101,7 @@ }, { "title": "max_file_path_length", - "description": "Prevent commits that include file paths that exceed a specified character limit from being pushed to the commit graph.", + "description": "Prevent commits that include file paths that exceed the specified character limit from being pushed to the commit graph.", "type": "object", "required": [ "type" @@ -580118,7 +580118,7 @@ "properties": { "max_file_path_length": { "type": "integer", - "description": "The maximum amount of characters allowed in file paths", + "description": "The maximum amount of characters allowed in file paths.", "minimum": 1, "maximum": 256 } @@ -580162,7 +580162,7 @@ }, { "title": "max_file_size", - "description": "Prevent commits that exceed a specified file size limit from being pushed to the commit graph.", + "description": "Prevent commits with individual files that exceed the specified limit from being pushed to the commit graph.", "type": "object", "required": [ "type" @@ -581101,7 +581101,7 @@ { "type": "object", "name": "file_path_restriction", - "description": "Prevent commits that include changes in specified file paths from being pushed to the commit graph.
", + "description": "Prevent commits that include changes in specified file and folder paths from being pushed to the commit graph. This includes absolute paths that contain file names.
", "isRequired": [ "type" ], @@ -581133,7 +581133,7 @@ { "type": "object", "name": "max_file_path_length", - "description": "Prevent commits that include file paths that exceed a specified character limit from being pushed to the commit graph.
", + "description": "Prevent commits that include file paths that exceed the specified character limit from being pushed to the commit graph.
", "isRequired": [ "type" ], @@ -581155,7 +581155,7 @@ { "type": "integer", "name": "max_file_path_length", - "description": "The maximum amount of characters allowed in file paths
", + "description": "The maximum amount of characters allowed in file paths.
", "isRequired": true } ] @@ -581197,7 +581197,7 @@ { "type": "object", "name": "max_file_size", - "description": "Prevent commits that exceed a specified file size limit from being pushed to the commit graph.
", + "description": "Prevent commits with individual files that exceed the specified limit from being pushed to the commit graph.
", "isRequired": [ "type" ], @@ -582446,7 +582446,7 @@ }, { "title": "file_path_restriction", - "description": "Prevent commits that include changes in specified file paths from being pushed to the commit graph.", + "description": "Prevent commits that include changes in specified file and folder paths from being pushed to the commit graph. This includes absolute paths that contain file names.", "type": "object", "required": [ "type" @@ -582477,7 +582477,7 @@ }, { "title": "max_file_path_length", - "description": "Prevent commits that include file paths that exceed a specified character limit from being pushed to the commit graph.", + "description": "Prevent commits that include file paths that exceed the specified character limit from being pushed to the commit graph.", "type": "object", "required": [ "type" @@ -582494,7 +582494,7 @@ "properties": { "max_file_path_length": { "type": "integer", - "description": "The maximum amount of characters allowed in file paths", + "description": "The maximum amount of characters allowed in file paths.", "minimum": 1, "maximum": 256 } @@ -582538,7 +582538,7 @@ }, { "title": "max_file_size", - "description": "Prevent commits that exceed a specified file size limit from being pushed to the commit graph.", + "description": "Prevent commits with individual files that exceed the specified limit from being pushed to the commit graph.", "type": "object", "required": [ "type" @@ -583829,7 +583829,7 @@ }, { "title": "file_path_restriction", - "description": "Prevent commits that include changes in specified file paths from being pushed to the commit graph.", + "description": "Prevent commits that include changes in specified file and folder paths from being pushed to the commit graph. This includes absolute paths that contain file names.", "type": "object", "required": [ "type" @@ -583860,7 +583860,7 @@ }, { "title": "max_file_path_length", - "description": "Prevent commits that include file paths that exceed a specified character limit from being pushed to the commit graph.", + "description": "Prevent commits that include file paths that exceed the specified character limit from being pushed to the commit graph.", "type": "object", "required": [ "type" @@ -583877,7 +583877,7 @@ "properties": { "max_file_path_length": { "type": "integer", - "description": "The maximum amount of characters allowed in file paths", + "description": "The maximum amount of characters allowed in file paths.", "minimum": 1, "maximum": 256 } @@ -583921,7 +583921,7 @@ }, { "title": "max_file_size", - "description": "Prevent commits that exceed a specified file size limit from being pushed to the commit graph.", + "description": "Prevent commits with individual files that exceed the specified limit from being pushed to the commit graph.", "type": "object", "required": [ "type" @@ -584865,7 +584865,7 @@ { "type": "object", "name": "file_path_restriction", - "description": "Prevent commits that include changes in specified file paths from being pushed to the commit graph.
", + "description": "Prevent commits that include changes in specified file and folder paths from being pushed to the commit graph. This includes absolute paths that contain file names.
", "isRequired": [ "type" ], @@ -584897,7 +584897,7 @@ { "type": "object", "name": "max_file_path_length", - "description": "Prevent commits that include file paths that exceed a specified character limit from being pushed to the commit graph.
", + "description": "Prevent commits that include file paths that exceed the specified character limit from being pushed to the commit graph.
", "isRequired": [ "type" ], @@ -584919,7 +584919,7 @@ { "type": "integer", "name": "max_file_path_length", - "description": "The maximum amount of characters allowed in file paths
", + "description": "The maximum amount of characters allowed in file paths.
", "isRequired": true } ] @@ -584961,7 +584961,7 @@ { "type": "object", "name": "max_file_size", - "description": "Prevent commits that exceed a specified file size limit from being pushed to the commit graph.
", + "description": "Prevent commits with individual files that exceed the specified limit from being pushed to the commit graph.
", "isRequired": [ "type" ], @@ -586211,7 +586211,7 @@ }, { "title": "file_path_restriction", - "description": "Prevent commits that include changes in specified file paths from being pushed to the commit graph.", + "description": "Prevent commits that include changes in specified file and folder paths from being pushed to the commit graph. This includes absolute paths that contain file names.", "type": "object", "required": [ "type" @@ -586242,7 +586242,7 @@ }, { "title": "max_file_path_length", - "description": "Prevent commits that include file paths that exceed a specified character limit from being pushed to the commit graph.", + "description": "Prevent commits that include file paths that exceed the specified character limit from being pushed to the commit graph.", "type": "object", "required": [ "type" @@ -586259,7 +586259,7 @@ "properties": { "max_file_path_length": { "type": "integer", - "description": "The maximum amount of characters allowed in file paths", + "description": "The maximum amount of characters allowed in file paths.", "minimum": 1, "maximum": 256 } @@ -586303,7 +586303,7 @@ }, { "title": "max_file_size", - "description": "Prevent commits that exceed a specified file size limit from being pushed to the commit graph.", + "description": "Prevent commits with individual files that exceed the specified limit from being pushed to the commit graph.", "type": "object", "required": [ "type" diff --git a/src/rest/data/ghes-3.12-2022-11-28/schema.json b/src/rest/data/ghes-3.12-2022-11-28/schema.json index 165ee8249b17..3223c52ad7ca 100644 --- a/src/rest/data/ghes-3.12-2022-11-28/schema.json +++ b/src/rest/data/ghes-3.12-2022-11-28/schema.json @@ -248105,7 +248105,7 @@ "type": "string or null", "name": "type", "in": "body", - "description": "The name of the issue type to associate with this issue.
" + "description": "The name of the issue type to associate with this issue. NOTE: Only users with push access can set the type for new issues. The type is silently dropped otherwise.
" } ], "progAccess": { @@ -254248,7 +254248,7 @@ "type": "string or null", "name": "type", "in": "body", - "description": "The name of the issue type to associate with this issue or use null
to remove the current issue type.
The name of the issue type to associate with this issue or use null
to remove the current issue type. Only users with push access can set the type for issues. Without push access to the repository, type changes are silently dropped.
The name of the issue type to associate with this issue.
" + "description": "The name of the issue type to associate with this issue. NOTE: Only users with push access can set the type for new issues. The type is silently dropped otherwise.
" } ], "progAccess": { @@ -254448,7 +254448,7 @@ "type": "string or null", "name": "type", "in": "body", - "description": "The name of the issue type to associate with this issue or use null
to remove the current issue type.
The name of the issue type to associate with this issue or use null
to remove the current issue type. Only users with push access can set the type for issues. Without push access to the repository, type changes are silently dropped.
The name of the issue type to associate with this issue.
" + "description": "The name of the issue type to associate with this issue. NOTE: Only users with push access can set the type for new issues. The type is silently dropped otherwise.
" } ], "progAccess": { @@ -254448,7 +254448,7 @@ "type": "string or null", "name": "type", "in": "body", - "description": "The name of the issue type to associate with this issue or use null
to remove the current issue type.
The name of the issue type to associate with this issue or use null
to remove the current issue type. Only users with push access can set the type for issues. Without push access to the repository, type changes are silently dropped.
The name of the issue type to associate with this issue.
" + "description": "The name of the issue type to associate with this issue. NOTE: Only users with push access can set the type for new issues. The type is silently dropped otherwise.
" } ], "progAccess": { @@ -257399,7 +257399,7 @@ "type": "string or null", "name": "type", "in": "body", - "description": "The name of the issue type to associate with this issue or use null
to remove the current issue type.
The name of the issue type to associate with this issue or use null
to remove the current issue type. Only users with push access can set the type for issues. Without push access to the repository, type changes are silently dropped.
The name of the issue type to associate with this issue.
" + "description": "The name of the issue type to associate with this issue. NOTE: Only users with push access can set the type for new issues. The type is silently dropped otherwise.
" } ], "progAccess": { @@ -262630,7 +262630,7 @@ "type": "string or null", "name": "type", "in": "body", - "description": "The name of the issue type to associate with this issue or use null
to remove the current issue type.
The name of the issue type to associate with this issue or use null
to remove the current issue type. Only users with push access can set the type for issues. Without push access to the repository, type changes are silently dropped.
Prevent commits that include changes in specified file paths from being pushed to the commit graph.
", + "description": "Prevent commits that include changes in specified file and folder paths from being pushed to the commit graph. This includes absolute paths that contain file names.
", "isRequired": [ "type" ], @@ -210475,7 +210475,7 @@ { "type": "object", "name": "max_file_path_length", - "description": "Prevent commits that include file paths that exceed a specified character limit from being pushed to the commit graph.
", + "description": "Prevent commits that include file paths that exceed the specified character limit from being pushed to the commit graph.
", "isRequired": [ "type" ], @@ -210497,7 +210497,7 @@ { "type": "integer", "name": "max_file_path_length", - "description": "The maximum amount of characters allowed in file paths
", + "description": "The maximum amount of characters allowed in file paths.
", "isRequired": true } ] @@ -210539,7 +210539,7 @@ { "type": "object", "name": "max_file_size", - "description": "Prevent commits that exceed a specified file size limit from being pushed to the commit graph.
", + "description": "Prevent commits with individual files that exceed the specified limit from being pushed to the commit graph.
", "isRequired": [ "type" ], @@ -211543,7 +211543,7 @@ { "type": "object", "name": "file_path_restriction", - "description": "Prevent commits that include changes in specified file paths from being pushed to the commit graph.
", + "description": "Prevent commits that include changes in specified file and folder paths from being pushed to the commit graph. This includes absolute paths that contain file names.
", "isRequired": [ "type" ], @@ -211575,7 +211575,7 @@ { "type": "object", "name": "max_file_path_length", - "description": "Prevent commits that include file paths that exceed a specified character limit from being pushed to the commit graph.
", + "description": "Prevent commits that include file paths that exceed the specified character limit from being pushed to the commit graph.
", "isRequired": [ "type" ], @@ -211597,7 +211597,7 @@ { "type": "integer", "name": "max_file_path_length", - "description": "The maximum amount of characters allowed in file paths
", + "description": "The maximum amount of characters allowed in file paths.
", "isRequired": true } ] @@ -211639,7 +211639,7 @@ { "type": "object", "name": "max_file_size", - "description": "Prevent commits that exceed a specified file size limit from being pushed to the commit graph.
", + "description": "Prevent commits with individual files that exceed the specified limit from being pushed to the commit graph.
", "isRequired": [ "type" ], @@ -212643,7 +212643,7 @@ { "type": "object", "name": "file_path_restriction", - "description": "Prevent commits that include changes in specified file paths from being pushed to the commit graph.
", + "description": "Prevent commits that include changes in specified file and folder paths from being pushed to the commit graph. This includes absolute paths that contain file names.
", "isRequired": [ "type" ], @@ -212675,7 +212675,7 @@ { "type": "object", "name": "max_file_path_length", - "description": "Prevent commits that include file paths that exceed a specified character limit from being pushed to the commit graph.
", + "description": "Prevent commits that include file paths that exceed the specified character limit from being pushed to the commit graph.
", "isRequired": [ "type" ], @@ -212697,7 +212697,7 @@ { "type": "integer", "name": "max_file_path_length", - "description": "The maximum amount of characters allowed in file paths
", + "description": "The maximum amount of characters allowed in file paths.
", "isRequired": true } ] @@ -212739,7 +212739,7 @@ { "type": "object", "name": "max_file_size", - "description": "Prevent commits that exceed a specified file size limit from being pushed to the commit graph.
", + "description": "Prevent commits with individual files that exceed the specified limit from being pushed to the commit graph.
", "isRequired": [ "type" ], @@ -213716,7 +213716,7 @@ { "type": "object", "name": "file_path_restriction", - "description": "Prevent commits that include changes in specified file paths from being pushed to the commit graph.
", + "description": "Prevent commits that include changes in specified file and folder paths from being pushed to the commit graph. This includes absolute paths that contain file names.
", "isRequired": [ "type" ], @@ -213748,7 +213748,7 @@ { "type": "object", "name": "max_file_path_length", - "description": "Prevent commits that include file paths that exceed a specified character limit from being pushed to the commit graph.
", + "description": "Prevent commits that include file paths that exceed the specified character limit from being pushed to the commit graph.
", "isRequired": [ "type" ], @@ -213770,7 +213770,7 @@ { "type": "integer", "name": "max_file_path_length", - "description": "The maximum amount of characters allowed in file paths
", + "description": "The maximum amount of characters allowed in file paths.
", "isRequired": true } ] @@ -213812,7 +213812,7 @@ { "type": "object", "name": "max_file_size", - "description": "Prevent commits that exceed a specified file size limit from being pushed to the commit graph.
", + "description": "Prevent commits with individual files that exceed the specified limit from being pushed to the commit graph.
", "isRequired": [ "type" ], @@ -214601,7 +214601,7 @@ { "type": "object", "name": "file_path_restriction", - "description": "Prevent commits that include changes in specified file paths from being pushed to the commit graph.
", + "description": "Prevent commits that include changes in specified file and folder paths from being pushed to the commit graph. This includes absolute paths that contain file names.
", "isRequired": [ "type" ], @@ -214633,7 +214633,7 @@ { "type": "object", "name": "max_file_path_length", - "description": "Prevent commits that include file paths that exceed a specified character limit from being pushed to the commit graph.
", + "description": "Prevent commits that include file paths that exceed the specified character limit from being pushed to the commit graph.
", "isRequired": [ "type" ], @@ -214655,7 +214655,7 @@ { "type": "integer", "name": "max_file_path_length", - "description": "The maximum amount of characters allowed in file paths
", + "description": "The maximum amount of characters allowed in file paths.
", "isRequired": true } ] @@ -214697,7 +214697,7 @@ { "type": "object", "name": "max_file_size", - "description": "Prevent commits that exceed a specified file size limit from being pushed to the commit graph.
", + "description": "Prevent commits with individual files that exceed the specified limit from being pushed to the commit graph.
", "isRequired": [ "type" ], @@ -215491,7 +215491,7 @@ { "type": "object", "name": "file_path_restriction", - "description": "Prevent commits that include changes in specified file paths from being pushed to the commit graph.
", + "description": "Prevent commits that include changes in specified file and folder paths from being pushed to the commit graph. This includes absolute paths that contain file names.
", "isRequired": [ "type" ], @@ -215523,7 +215523,7 @@ { "type": "object", "name": "max_file_path_length", - "description": "Prevent commits that include file paths that exceed a specified character limit from being pushed to the commit graph.
", + "description": "Prevent commits that include file paths that exceed the specified character limit from being pushed to the commit graph.
", "isRequired": [ "type" ], @@ -215545,7 +215545,7 @@ { "type": "integer", "name": "max_file_path_length", - "description": "The maximum amount of characters allowed in file paths
", + "description": "The maximum amount of characters allowed in file paths.
", "isRequired": true } ] @@ -215587,7 +215587,7 @@ { "type": "object", "name": "max_file_size", - "description": "Prevent commits that exceed a specified file size limit from being pushed to the commit graph.
", + "description": "Prevent commits with individual files that exceed the specified limit from being pushed to the commit graph.
", "isRequired": [ "type" ], diff --git a/src/webhooks/data/ghec/schema.json b/src/webhooks/data/ghec/schema.json index 906a427a1d3a..f92a9d8b2d1a 100644 --- a/src/webhooks/data/ghec/schema.json +++ b/src/webhooks/data/ghec/schema.json @@ -1154,7 +1154,7 @@ "bypass_request_push_ruleset": { "cancelled": { "descriptionHtml": "A push ruleset bypass request was cancelled.
", - "summaryHtml": "This event occurs when there is activity related to a user's request to bypass a set of push rules.
\nFor more information, see \"Managing requests to bypass push rulesets.\"
\nTo subscribe to this event, a GitHub App must have at least read-level access for the \"Administration\" repository permission.
\nNote: Delegated bypass for push rules is currently in public preview and subject to change.
", + "summaryHtml": "This event occurs when there is activity related to a user's request to bypass a set of push rules.
\nFor more information, see \"Managing requests to bypass push rulesets.\"
\nTo subscribe to this event, a GitHub App must have at least read-level access for the \"Administration\" repository permission.
", "bodyParameters": [ { "type": "string", @@ -1347,7 +1347,7 @@ }, "completed": { "descriptionHtml": "A push ruleset bypass request was completed.
", - "summaryHtml": "This event occurs when there is activity related to a user's request to bypass a set of push rules.
\nFor more information, see \"Managing requests to bypass push rulesets.\"
\nTo subscribe to this event, a GitHub App must have at least read-level access for the \"Administration\" repository permission.
\nNote: Delegated bypass for push rules is currently in public preview and subject to change.
", + "summaryHtml": "This event occurs when there is activity related to a user's request to bypass a set of push rules.
\nFor more information, see \"Managing requests to bypass push rulesets.\"
\nTo subscribe to this event, a GitHub App must have at least read-level access for the \"Administration\" repository permission.
", "bodyParameters": [ { "type": "string", @@ -1540,7 +1540,7 @@ }, "created": { "descriptionHtml": "A push ruleset bypass request was created.
", - "summaryHtml": "This event occurs when there is activity related to a user's request to bypass a set of push rules.
\nFor more information, see \"Managing requests to bypass push rulesets.\"
\nTo subscribe to this event, a GitHub App must have at least read-level access for the \"Administration\" repository permission.
\nNote: Delegated bypass for push rules is currently in public preview and subject to change.
", + "summaryHtml": "This event occurs when there is activity related to a user's request to bypass a set of push rules.
\nFor more information, see \"Managing requests to bypass push rulesets.\"
\nTo subscribe to this event, a GitHub App must have at least read-level access for the \"Administration\" repository permission.
", "bodyParameters": [ { "type": "string", @@ -1733,7 +1733,7 @@ }, "response_dismissed": { "descriptionHtml": "A push ruleset bypass response was dismissed.
", - "summaryHtml": "This event occurs when there is activity related to a user's request to bypass a set of push rules.
\nFor more information, see \"Managing requests to bypass push rulesets.\"
\nTo subscribe to this event, a GitHub App must have at least read-level access for the \"Administration\" repository permission.
\nNote: Delegated bypass for push rules is currently in public preview and subject to change.
", + "summaryHtml": "This event occurs when there is activity related to a user's request to bypass a set of push rules.
\nFor more information, see \"Managing requests to bypass push rulesets.\"
\nTo subscribe to this event, a GitHub App must have at least read-level access for the \"Administration\" repository permission.
", "bodyParameters": [ { "type": "string", @@ -1970,7 +1970,7 @@ }, "response_submitted": { "descriptionHtml": "A response either approving or rejecting the push ruleset bypass request was submitted.
", - "summaryHtml": "This event occurs when there is activity related to a user's request to bypass a set of push rules.
\nFor more information, see \"Managing requests to bypass push rulesets.\"
\nTo subscribe to this event, a GitHub App must have at least read-level access for the \"Administration\" repository permission.
\nNote: Delegated bypass for push rules is currently in public preview and subject to change.
", + "summaryHtml": "This event occurs when there is activity related to a user's request to bypass a set of push rules.
\nFor more information, see \"Managing requests to bypass push rulesets.\"
\nTo subscribe to this event, a GitHub App must have at least read-level access for the \"Administration\" repository permission.
", "bodyParameters": [ { "type": "string", @@ -214105,7 +214105,7 @@ { "type": "object", "name": "file_path_restriction", - "description": "Prevent commits that include changes in specified file paths from being pushed to the commit graph.
", + "description": "Prevent commits that include changes in specified file and folder paths from being pushed to the commit graph. This includes absolute paths that contain file names.
", "isRequired": [ "type" ], @@ -214137,7 +214137,7 @@ { "type": "object", "name": "max_file_path_length", - "description": "Prevent commits that include file paths that exceed a specified character limit from being pushed to the commit graph.
", + "description": "Prevent commits that include file paths that exceed the specified character limit from being pushed to the commit graph.
", "isRequired": [ "type" ], @@ -214159,7 +214159,7 @@ { "type": "integer", "name": "max_file_path_length", - "description": "The maximum amount of characters allowed in file paths
", + "description": "The maximum amount of characters allowed in file paths.
", "isRequired": true } ] @@ -214201,7 +214201,7 @@ { "type": "object", "name": "max_file_size", - "description": "Prevent commits that exceed a specified file size limit from being pushed to the commit graph.
", + "description": "Prevent commits with individual files that exceed the specified limit from being pushed to the commit graph.
", "isRequired": [ "type" ], @@ -215206,7 +215206,7 @@ { "type": "object", "name": "file_path_restriction", - "description": "Prevent commits that include changes in specified file paths from being pushed to the commit graph.
", + "description": "Prevent commits that include changes in specified file and folder paths from being pushed to the commit graph. This includes absolute paths that contain file names.
", "isRequired": [ "type" ], @@ -215238,7 +215238,7 @@ { "type": "object", "name": "max_file_path_length", - "description": "Prevent commits that include file paths that exceed a specified character limit from being pushed to the commit graph.
", + "description": "Prevent commits that include file paths that exceed the specified character limit from being pushed to the commit graph.
", "isRequired": [ "type" ], @@ -215260,7 +215260,7 @@ { "type": "integer", "name": "max_file_path_length", - "description": "The maximum amount of characters allowed in file paths
", + "description": "The maximum amount of characters allowed in file paths.
", "isRequired": true } ] @@ -215302,7 +215302,7 @@ { "type": "object", "name": "max_file_size", - "description": "Prevent commits that exceed a specified file size limit from being pushed to the commit graph.
", + "description": "Prevent commits with individual files that exceed the specified limit from being pushed to the commit graph.
", "isRequired": [ "type" ], @@ -216307,7 +216307,7 @@ { "type": "object", "name": "file_path_restriction", - "description": "Prevent commits that include changes in specified file paths from being pushed to the commit graph.
", + "description": "Prevent commits that include changes in specified file and folder paths from being pushed to the commit graph. This includes absolute paths that contain file names.
", "isRequired": [ "type" ], @@ -216339,7 +216339,7 @@ { "type": "object", "name": "max_file_path_length", - "description": "Prevent commits that include file paths that exceed a specified character limit from being pushed to the commit graph.
", + "description": "Prevent commits that include file paths that exceed the specified character limit from being pushed to the commit graph.
", "isRequired": [ "type" ], @@ -216361,7 +216361,7 @@ { "type": "integer", "name": "max_file_path_length", - "description": "The maximum amount of characters allowed in file paths
", + "description": "The maximum amount of characters allowed in file paths.
", "isRequired": true } ] @@ -216403,7 +216403,7 @@ { "type": "object", "name": "max_file_size", - "description": "Prevent commits that exceed a specified file size limit from being pushed to the commit graph.
", + "description": "Prevent commits with individual files that exceed the specified limit from being pushed to the commit graph.
", "isRequired": [ "type" ], @@ -217380,7 +217380,7 @@ { "type": "object", "name": "file_path_restriction", - "description": "Prevent commits that include changes in specified file paths from being pushed to the commit graph.
", + "description": "Prevent commits that include changes in specified file and folder paths from being pushed to the commit graph. This includes absolute paths that contain file names.
", "isRequired": [ "type" ], @@ -217412,7 +217412,7 @@ { "type": "object", "name": "max_file_path_length", - "description": "Prevent commits that include file paths that exceed a specified character limit from being pushed to the commit graph.
", + "description": "Prevent commits that include file paths that exceed the specified character limit from being pushed to the commit graph.
", "isRequired": [ "type" ], @@ -217434,7 +217434,7 @@ { "type": "integer", "name": "max_file_path_length", - "description": "The maximum amount of characters allowed in file paths
", + "description": "The maximum amount of characters allowed in file paths.
", "isRequired": true } ] @@ -217476,7 +217476,7 @@ { "type": "object", "name": "max_file_size", - "description": "Prevent commits that exceed a specified file size limit from being pushed to the commit graph.
", + "description": "Prevent commits with individual files that exceed the specified limit from being pushed to the commit graph.
", "isRequired": [ "type" ], @@ -218265,7 +218265,7 @@ { "type": "object", "name": "file_path_restriction", - "description": "Prevent commits that include changes in specified file paths from being pushed to the commit graph.
", + "description": "Prevent commits that include changes in specified file and folder paths from being pushed to the commit graph. This includes absolute paths that contain file names.
", "isRequired": [ "type" ], @@ -218297,7 +218297,7 @@ { "type": "object", "name": "max_file_path_length", - "description": "Prevent commits that include file paths that exceed a specified character limit from being pushed to the commit graph.
", + "description": "Prevent commits that include file paths that exceed the specified character limit from being pushed to the commit graph.
", "isRequired": [ "type" ], @@ -218319,7 +218319,7 @@ { "type": "integer", "name": "max_file_path_length", - "description": "The maximum amount of characters allowed in file paths
", + "description": "The maximum amount of characters allowed in file paths.
", "isRequired": true } ] @@ -218361,7 +218361,7 @@ { "type": "object", "name": "max_file_size", - "description": "Prevent commits that exceed a specified file size limit from being pushed to the commit graph.
", + "description": "Prevent commits with individual files that exceed the specified limit from being pushed to the commit graph.
", "isRequired": [ "type" ], @@ -219155,7 +219155,7 @@ { "type": "object", "name": "file_path_restriction", - "description": "Prevent commits that include changes in specified file paths from being pushed to the commit graph.
", + "description": "Prevent commits that include changes in specified file and folder paths from being pushed to the commit graph. This includes absolute paths that contain file names.
", "isRequired": [ "type" ], @@ -219187,7 +219187,7 @@ { "type": "object", "name": "max_file_path_length", - "description": "Prevent commits that include file paths that exceed a specified character limit from being pushed to the commit graph.
", + "description": "Prevent commits that include file paths that exceed the specified character limit from being pushed to the commit graph.
", "isRequired": [ "type" ], @@ -219209,7 +219209,7 @@ { "type": "integer", "name": "max_file_path_length", - "description": "The maximum amount of characters allowed in file paths
", + "description": "The maximum amount of characters allowed in file paths.
", "isRequired": true } ] @@ -219251,7 +219251,7 @@ { "type": "object", "name": "max_file_size", - "description": "Prevent commits that exceed a specified file size limit from being pushed to the commit graph.
", + "description": "Prevent commits with individual files that exceed the specified limit from being pushed to the commit graph.
", "isRequired": [ "type" ], diff --git a/src/webhooks/data/ghes-3.16/schema.json b/src/webhooks/data/ghes-3.16/schema.json index f9a2e1a29ee5..485617ed12f7 100644 --- a/src/webhooks/data/ghes-3.16/schema.json +++ b/src/webhooks/data/ghes-3.16/schema.json @@ -1154,7 +1154,7 @@ "bypass_request_push_ruleset": { "cancelled": { "descriptionHtml": "A push ruleset bypass request was cancelled.
", - "summaryHtml": "This event occurs when there is activity related to a user's request to bypass a set of push rules.
\nFor more information, see \"Managing requests to bypass push rulesets.\"
\nTo subscribe to this event, a GitHub App must have at least read-level access for the \"Administration\" repository permission.
\nNote: Delegated bypass for push rules is currently in public preview and subject to change.
", + "summaryHtml": "This event occurs when there is activity related to a user's request to bypass a set of push rules.
\nFor more information, see \"Managing requests to bypass push rulesets.\"
\nTo subscribe to this event, a GitHub App must have at least read-level access for the \"Administration\" repository permission.
", "bodyParameters": [ { "type": "string", @@ -1347,7 +1347,7 @@ }, "completed": { "descriptionHtml": "A push ruleset bypass request was completed.
", - "summaryHtml": "This event occurs when there is activity related to a user's request to bypass a set of push rules.
\nFor more information, see \"Managing requests to bypass push rulesets.\"
\nTo subscribe to this event, a GitHub App must have at least read-level access for the \"Administration\" repository permission.
\nNote: Delegated bypass for push rules is currently in public preview and subject to change.
", + "summaryHtml": "This event occurs when there is activity related to a user's request to bypass a set of push rules.
\nFor more information, see \"Managing requests to bypass push rulesets.\"
\nTo subscribe to this event, a GitHub App must have at least read-level access for the \"Administration\" repository permission.
", "bodyParameters": [ { "type": "string", @@ -1540,7 +1540,7 @@ }, "created": { "descriptionHtml": "A push ruleset bypass request was created.
", - "summaryHtml": "This event occurs when there is activity related to a user's request to bypass a set of push rules.
\nFor more information, see \"Managing requests to bypass push rulesets.\"
\nTo subscribe to this event, a GitHub App must have at least read-level access for the \"Administration\" repository permission.
\nNote: Delegated bypass for push rules is currently in public preview and subject to change.
", + "summaryHtml": "This event occurs when there is activity related to a user's request to bypass a set of push rules.
\nFor more information, see \"Managing requests to bypass push rulesets.\"
\nTo subscribe to this event, a GitHub App must have at least read-level access for the \"Administration\" repository permission.
", "bodyParameters": [ { "type": "string", @@ -1733,7 +1733,7 @@ }, "response_dismissed": { "descriptionHtml": "A push ruleset bypass response was dismissed.
", - "summaryHtml": "This event occurs when there is activity related to a user's request to bypass a set of push rules.
\nFor more information, see \"Managing requests to bypass push rulesets.\"
\nTo subscribe to this event, a GitHub App must have at least read-level access for the \"Administration\" repository permission.
\nNote: Delegated bypass for push rules is currently in public preview and subject to change.
", + "summaryHtml": "This event occurs when there is activity related to a user's request to bypass a set of push rules.
\nFor more information, see \"Managing requests to bypass push rulesets.\"
\nTo subscribe to this event, a GitHub App must have at least read-level access for the \"Administration\" repository permission.
", "bodyParameters": [ { "type": "string", @@ -1970,7 +1970,7 @@ }, "response_submitted": { "descriptionHtml": "A response either approving or rejecting the push ruleset bypass request was submitted.
", - "summaryHtml": "This event occurs when there is activity related to a user's request to bypass a set of push rules.
\nFor more information, see \"Managing requests to bypass push rulesets.\"
\nTo subscribe to this event, a GitHub App must have at least read-level access for the \"Administration\" repository permission.
\nNote: Delegated bypass for push rules is currently in public preview and subject to change.
", + "summaryHtml": "This event occurs when there is activity related to a user's request to bypass a set of push rules.
\nFor more information, see \"Managing requests to bypass push rulesets.\"
\nTo subscribe to this event, a GitHub App must have at least read-level access for the \"Administration\" repository permission.
", "bodyParameters": [ { "type": "string", diff --git a/src/webhooks/lib/config.json b/src/webhooks/lib/config.json index 28961cb66e8f..2777b5e73b3f 100644 --- a/src/webhooks/lib/config.json +++ b/src/webhooks/lib/config.json @@ -1,3 +1,3 @@ { - "sha": "fd8b14666d8a4e34411bee8dbd103edc8b81d0e3" + "sha": "dd7e0cab3399025166a33575ce09af6ff60bb26a" } \ No newline at end of file