Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

AutoCorrect fix copywriting details index #20815

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion translations/zh-CN/data/reusables/webhooks/app_desc.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,4 @@ ms.contentlocale: zh-CN
ms.lasthandoff: 09/11/2022
ms.locfileid: "145065663"
---
`installation` | `object` | {% data variables.product.prodname_github_app %} 安装。 当为 {% data variables.product.prodname_github_app %} 配置事件并将其发送到时,Webhook 有效负载包含 `installation` 属性。
`installation` | `object` | {% data variables.product.prodname_github_app %} 安装。当为 {% data variables.product.prodname_github_app %} 配置事件并将其发送到时,Webhook 有效负载包含 `installation` 属性。
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,4 @@ ms.contentlocale: zh-CN
ms.lasthandoff: 09/11/2022
ms.locfileid: "145065662"
---
任何人都可以从 [GitHub 帐户设置页面](https://github.com/settings/apps/authorizations)撤销他们对 GitHub 应用的授权。 撤销对 GitHub 应用程序的授权不会卸载 GitHub 应用程序。 您应该编程 GitHub 应用程序,使其在收到此 web 挂钩后,不再代表已撤销令牌的人调用 API。 如果 GitHub 应用继续使用已撤销的访问令牌,它将收到 `401 Bad Credentials` 错误。
任何人都可以从 [GitHub 帐户设置页面](https://github.com/settings/apps/authorizations)撤销他们对 GitHub 应用的授权。撤销对 GitHub 应用程序的授权不会卸载 GitHub 应用程序。您应该编程 GitHub 应用程序,使其在收到此 web 挂钩后,不再代表已撤销令牌的人调用 API。如果 GitHub 应用继续使用已撤销的访问令牌,它将收到 `401 Bad Credentials` 错误。
Original file line number Diff line number Diff line change
Expand Up @@ -8,13 +8,13 @@ ms.locfileid: "145065661"
---
密钥 | 类型 | 说明
----|------|-------------
`action`|`string` | 已执行的操作。 可以是以下选项之一: <ul><li> `created` - 创建了一个新的检查运行。</li><li> `completed` - 检查运行的 `status` 是 `completed`。</li><li> `rerequested` - 有人请求从拉取请求 UI 重新运行检查运行。 有关 GitHub UI 的详细信息,请参阅“[关于状态检查](/articles/about-status-checks#checks)”。 收到 `rerequested` 操作时,需要 [创建新的检查运行](/rest/reference/checks#create-a-check-run)。 只有有人请求重新运行检查的 {% data variables.product.prodname_github_app %} 才会收到 `rerequested` 有效负载。</li><li> `requested_action` - 有人请求执行应用提供的操作。 只有有人请求执行操作的 {% data variables.product.prodname_github_app %} 才会收到 `requested_action` 有效负载。 若要详细了解检查运行和请求的操作,请参阅“[检查运行和请求的操作](/rest/reference/checks#check-runs-and-requested-actions)。”</li></ul>
`action`|`string` | 已执行的操作。可以是以下选项之一: <ul><li> `created` - 创建了一个新的检查运行。</li><li> `completed` - 检查运行的 `status` 是 `completed`。</li><li> `rerequested` - 有人请求从拉取请求 UI 重新运行检查运行。有关 GitHub UI 的详细信息,请参阅“[关于状态检查](/articles/about-status-checks#checks)”。收到 `rerequested` 操作时,需要 [创建新的检查运行](/rest/reference/checks#create-a-check-run)。只有有人请求重新运行检查的 {% data variables.product.prodname_github_app %} 才会收到 `rerequested` 有效负载。</li><li> `requested_action` - 有人请求执行应用提供的操作。只有有人请求执行操作的 {% data variables.product.prodname_github_app %} 才会收到 `requested_action` 有效负载。若要详细了解检查运行和请求的操作,请参阅“[检查运行和请求的操作](/rest/reference/checks#check-runs-and-requested-actions)。”</li></ul>
`check_run`|`object` | [check_run](/rest/reference/checks#get-a-check-run)。
`check_run[status]`|`string` | 检查运行的当前状态。 可以是 `queued`、`in_progress` 或 `completed`。
`check_run[conclusion]`|`string` | 已完成检查运行的结果。 可以是 `success`、`failure`、`neutral`、`cancelled`、`timed_out`、`action_required` 或 `stale` 之一。 在检查运行有 `completed` 之前,此值将是 `null`。
`check_run[status]`|`string` | 检查运行的当前状态。可以是 `queued`、`in_progress` 或 `completed`。
`check_run[conclusion]`|`string` | 已完成检查运行的结果。可以是 `success`、`failure`、`neutral`、`cancelled`、`timed_out`、`action_required` 或 `stale` 之一。在检查运行有 `completed` 之前,此值将是 `null`。
`check_run[name]`|`string` | 检查运行的名称。
`check_run[check_suite][id]`|`integer` | 此检查运行所属检查套件的 ID。
`check_run[check_suite][pull_requests]`|`array`| 匹配此检查套件的拉取请求数组。 如果它们具有相同的 `head_branch`,则拉取请求与检查套件匹配。<br/><br/>**注意:**<ul><li>如果后续推送到 PR,则检查套件的 `head_sha` 可能与拉取请求的 `sha` 不同。</li><li>当检查套件的 `head_branch` 位于分支存储库中时,它将为 `null`,并且 `pull_requests` 数组将为空。</li></ul>
`check_run[check_suite][deployment]`|`object`| 部署到仓库环境。 仅当检查运行由引用环境的 {% data variables.product.prodname_actions %} 工作流作业创建时才会填充。
`check_run[check_suite][pull_requests]`|`array`| 匹配此检查套件的拉取请求数组。如果它们具有相同的 `head_branch`,则拉取请求与检查套件匹配。<br/><br/>**注意:**<ul><li>如果后续推送到 PR,则检查套件的 `head_sha` 可能与拉取请求的 `sha` 不同。</li><li>当检查套件的 `head_branch` 位于分支存储库中时,它将为 `null`,并且 `pull_requests` 数组将为空。</li></ul>
`check_run[check_suite][deployment]`|`object`| 部署到仓库环境。仅当检查运行由引用环境的 {% data variables.product.prodname_actions %} 工作流作业创建时才会填充。
`requested_action`|`object` | 用户请求的操作。
`requested_action[identifier]`|`string` | 用户请求的操作的集成器引用。
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,11 @@ ms.locfileid: "147116191"
---
密钥 | 类型 | 说明
----|------|-------------
`action`|`string` | 已执行的操作。 可以是:<ul><li>`completed` - 检查套件中的所有检查运行已完成。</li><li>`requested` - 新代码被推送到应用程序的存储库时发生。 收到 `requested` 操作事件时,需要 [创建新的检查运行](/rest/reference/checks#create-a-check-run)。</li><li>`rerequested` - 有人请求从拉取请求 UI 重新运行整个检查套件时发生。 收到 `rerequested` 操作事件时,需要 [创建新的检查运行](/rest/reference/checks#create-a-check-run)。 有关 GitHub UI 的详细信息,请参阅“[关于状态检查](/articles/about-status-checks#checks)”。</li></ul>
`action`|`string` | 已执行的操作。可以是:<ul><li>`completed` - 检查套件中的所有检查运行已完成。</li><li>`requested` - 新代码被推送到应用程序的存储库时发生。收到 `requested` 操作事件时,需要 [创建新的检查运行](/rest/reference/checks#create-a-check-run)。</li><li>`rerequested` - 有人请求从拉取请求 UI 重新运行整个检查套件时发生。收到 `rerequested` 操作事件时,需要 [创建新的检查运行](/rest/reference/checks#create-a-check-run)。有关 GitHub UI 的详细信息,请参阅“[关于状态检查](/articles/about-status-checks#checks)”。</li></ul>
`check_suite`|`object` | [check_suite](/rest/reference/checks#suites)。
`check_suite[head_branch]`|`string` | 更改所在的头部分支的名称。
`check_suite[head_sha]`|`string` | 此检查套件的最新提交的 SHA。
`check_suite[status]`|`string` | 检查套件中所有检查运行的摘要状态。 可以是 `queued`、`requested`、`in_progress` 或 `completed`。
`check_suite[conclusion]`|`string`| 检查套件中所有检查运行的摘要结论。 可以是 `success`、`failure`、`neutral`、`cancelled`、`timed_out`、`action_required` 或 `stale`。 在检查运行有 `completed` 之前,此值将是 `null`。
`check_suite[status]`|`string` | 检查套件中所有检查运行的摘要状态。可以是 `queued`、`requested`、`in_progress` 或 `completed`。
`check_suite[conclusion]`|`string`| 检查套件中所有检查运行的摘要结论。可以是 `success`、`failure`、`neutral`、`cancelled`、`timed_out`、`action_required` 或 `stale`。在检查运行有 `completed` 之前,此值将是 `null`。
`check_suite[url]`|`string` | 指向检查套件 API 资源的 URL。
`check_suite[pull_requests]`|`array`| 匹配此检查套件的拉取请求数组。 如果它们具有相同的 `head_branch`,则拉取请求与检查套件匹配。<br/><br/>**注意:**<ul><li>如果后续推送到 PR,则检查套件的 `head_sha` 可能与拉取请求的 `sha` 不同。</li><li>当检查套件的 `head_branch` 位于分支存储库中时,它将为 `null`,并且 `pull_requests` 数组将为空。</li></ul>
`check_suite[pull_requests]`|`array`| 匹配此检查套件的拉取请求数组。如果它们具有相同的 `head_branch`,则拉取请求与检查套件匹配。<br/><br/>**注意:**<ul><li>如果后续推送到 PR,则检查套件的 `head_sha` 可能与拉取请求的 `sha` 不同。</li><li>当检查套件的 `head_branch` 位于分支存储库中时,它将为 `null`,并且 `pull_requests` 数组将为空。</li></ul>
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ ms.locfileid: "145084350"
---
密钥 | 类型 | 说明
----|------|-------------
`action` | `string` | 执行的操作内容. 可以是以下选项之一:`created`、`reopened_by_user`、`closed_by_user`、`fixed`、`appeared_in_branch` 或 `reopened`。
`action` | `string` | 执行的操作内容可以是以下选项之一:`created`、`reopened_by_user`、`closed_by_user`、`fixed`、`appeared_in_branch` 或 `reopened`。
`alert` | `object` | 事件中涉及的代码扫描警报。
`ref` | `string` | 代码扫描警报的 Git 引用。 当操作为 `reopened_by_user` 或 `closed_by_user` 时,事件由 `sender` 触发,此值将为空。
`commit_oid` | `string` | 代码扫描警报的提交 SHA。 当操作为 `reopened_by_user` 或 `closed_by_user` 时,事件由 `sender` 触发,此值将为空。
`ref` | `string` | 代码扫描警报的 Git 引用。当操作为 `reopened_by_user` 或 `closed_by_user` 时,事件由 `sender` 触发,此值将为空。
`commit_oid` | `string` | 代码扫描警报的提交 SHA。当操作为 `reopened_by_user` 或 `closed_by_user` 时,事件由 `sender` 触发,此值将为空。
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,4 @@ ms.contentlocale: zh-CN
ms.lasthandoff: 09/10/2022
ms.locfileid: "145084349"
---
与仓库中的代码扫描警报相关的活动。 活动类型在有效负载对象的操作属性中指定。 有关详细信息,请参阅“[关于代码扫描](/github/finding-security-vulnerabilities-and-errors-in-your-code/about-code-scanning)”。
与仓库中的代码扫描警报相关的活动。活动类型在有效负载对象的操作属性中指定。有关详细信息,请参阅“[关于代码扫描](/github/finding-security-vulnerabilities-and-errors-in-your-code/about-code-scanning)”。
Original file line number Diff line number Diff line change
Expand Up @@ -8,5 +8,5 @@ ms.locfileid: "145084347"
---
密钥 | 类型 | 说明
----|------|-------------
`action`|`string` | 已执行的操作。 可以为 `created`。
`action`|`string` | 已执行的操作。可以为 `created`。
`comment`|`object` | [提交注释](/rest/reference/commits#get-a-commit-comment)资源。
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,4 @@ ms.contentlocale: zh-CN
ms.lasthandoff: 09/11/2022
ms.locfileid: "147881986"
---
新的内容引用为 `created`。 当议题或拉取请求的正文或注释包含与配置的内容引用域匹配的 URL 时,将创建新的内容引用。 有关详细信息,请参阅“[使用内容附件](/apps/using-content-attachments/)”详细了解内容引用和附件。
新的内容引用为 `created`。当议题或拉取请求的正文或注释包含与配置的内容引用域匹配的 URL 时,将创建新的内容引用。有关详细信息,请参阅“[使用内容附件](/apps/using-content-attachments/)”详细了解内容引用和附件。
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,6 @@ ms.locfileid: "147066760"
密钥 | 类型 | 说明
----|------|-------------
`ref`|`string` | [`git ref`](/rest/reference/git#get-a-reference) 资源。
`ref_type`|`string` | 在仓库中创建的 Git ref 对象的类型。 可以为 `branch` 或 `tag`。
`ref_type`|`string` | 在仓库中创建的 Git ref 对象的类型。可以为 `branch` 或 `tag`。
`master_branch`|`string` | 存储库默认分支的名称(通常为 `main`)。
`description`|`string` | 仓库的当前描述。
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,4 @@ ms.contentlocale: zh-CN
ms.lasthandoff: 09/10/2022
ms.locfileid: "145084342"
---
Git 分支或标签已创建。 有关详细信息,请参阅“[Git 数据库](/rest/reference/git#create-a-reference)”REST API。
Git 分支或标签已创建。有关详细信息,请参阅“[Git 数据库](/rest/reference/git#create-a-reference)”REST API。
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,4 @@ ms.locfileid: "147881962"
密钥 | 类型 | 说明
----|------|-------------
`ref`|`string` | [`git ref`](/rest/reference/git#get-a-reference) 资源。
`ref_type`|`string` | 在存储库中删除的 Git 引用对象的类型。 可以为 `branch` 或 `tag`。
`ref_type`|`string` | 在存储库中删除的 Git 引用对象的类型。可以为 `branch` 或 `tag`。
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,4 @@ ms.contentlocale: zh-CN
ms.lasthandoff: 09/09/2022
ms.locfileid: "147875986"
---
Git 分支或标签已删除。 有关详细信息,请参阅“[Git 数据库](/rest/reference/git#delete-a-reference)”REST API。
Git 分支或标签已删除。有关详细信息,请参阅“[Git 数据库](/rest/reference/git#delete-a-reference)”REST API。
Original file line number Diff line number Diff line change
Expand Up @@ -8,5 +8,5 @@ ms.locfileid: "145084331"
---
密钥 | 类型 | 说明
----|------|-------------
`action` |`string` | 已执行的操作。 可以为 `created` 或 `deleted`。
`action` |`string` | 已执行的操作。可以为 `created` 或 `deleted`。
`key` |`object` | [`deploy key`](/rest/reference/deployments#get-a-deploy-key) 资源。
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,4 @@ ms.contentlocale: zh-CN
ms.lasthandoff: 09/10/2022
ms.locfileid: "145084323"
---
站点或仓库管理员启用或禁用匿名 Git 读取权限。 有关详细信息,请参阅“[允许管理员启用对公共存储库的匿名 Git 读取访问](/enterprise/admin/user-management/allowing-admins-to-enable-anonymous-git-read-access-to-public-repositories)”。 此事件在事件 API 中不可用。
站点或仓库管理员启用或禁用匿名 Git 读取权限。有关详细信息,请参阅“[允许管理员启用对公共存储库的匿名 Git 读取访问](/enterprise/admin/user-management/allowing-admins-to-enable-anonymous-git-read-access-to-public-repositories)”。此事件在事件 API 中不可用。
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,4 @@ ms.contentlocale: zh-CN
ms.lasthandoff: 09/11/2022
ms.locfileid: "145084322"
---
[事件对象](#event-object-common-properties)包含所有事件的通用属性。 每个事件对象都包含 `payload` 属性,并且值对于每个事件类型而言都是唯一的。 此事件的 `payload` 对象描述如下。
[事件对象](#event-object-common-properties)包含所有事件的通用属性。每个事件对象都包含 `payload` 属性,并且值对于每个事件类型而言都是唯一的。此事件的 `payload` 对象描述如下。
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,4 @@ ms.contentlocale: zh-CN
ms.lasthandoff: 09/05/2022
ms.locfileid: "145164751"
---
用户复刻仓库。 有关详细信息,请参阅“[复刻](/rest/reference/repos#forks)”REST API。
用户复刻仓库。有关详细信息,请参阅“[复刻](/rest/reference/repos#forks)”REST API。
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,6 @@ ms.locfileid: "145084318"
`pages`|`array` | 已更新的页面。
`pages[][page_name]`|`string` | 页的名称。
`pages[][title]`|`string` | - 当前页标题。
`pages[][action]`|`string` | - 在该页上执行的操作。 可以是 `created` 或 `edited`。
`pages[][action]`|`string` | - 在该页上执行的操作。可以是 `created` 或 `edited`。
`pages[][sha]`|`string` | 页面的最新提交 SHA。
`pages[][html_url]`|`string` | 指向 HTML wiki 页面。
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,4 @@ ms.contentlocale: zh-CN
ms.lasthandoff: 09/10/2022
ms.locfileid: "145084310"
---
创建或更新 wiki 页面。 有关详细信息,请参阅“[关于 Wikis](/communities/documenting-your-project-with-wikis/about-wikis)”。
创建或更新 wiki 页面。有关详细信息,请参阅“[关于 Wikis](/communities/documenting-your-project-with-wikis/about-wikis)”。
Original file line number Diff line number Diff line change
Expand Up @@ -8,5 +8,5 @@ ms.locfileid: "145084309"
---
密钥 | 类型 | 说明
----|------|------------
`action` | `string` | 执行的操作内容. 可以是以下选项之一:<ul><li>`created` - 有人安装 {% data variables.product.prodname_github_app %}。</li><li>`deleted` - 有人卸载 {% data variables.product.prodname_github_app %}</li><li>`suspend` - 有人挂起 {% data variables.product.prodname_github_app %} 安装。</li><li>`unsuspend` - 有人取消挂起 {% data variables.product.prodname_github_app %} 安装。</li><li>`new_permissions_accepted` - 有人接受 {% data variables.product.prodname_github_app %} 安装的新权限。 当 {% data variables.product.prodname_github_app %} 所有者请求新权限时,安装 {% data variables.product.prodname_github_app %} 的人必须接受新权限请求。 </li></ul>
`action` | `string` | 执行的操作内容可以是以下选项之一:<ul><li>`created` - 有人安装 {% data variables.product.prodname_github_app %}。</li><li>`deleted` - 有人卸载 {% data variables.product.prodname_github_app %}</li><li>`suspend` - 有人挂起 {% data variables.product.prodname_github_app %} 安装。</li><li>`unsuspend` - 有人取消挂起 {% data variables.product.prodname_github_app %} 安装。</li><li>`new_permissions_accepted` - 有人接受 {% data variables.product.prodname_github_app %} 安装的新权限。当 {% data variables.product.prodname_github_app %} 所有者请求新权限时,安装 {% data variables.product.prodname_github_app %} 的人必须接受新权限请求。 </li></ul>
`repositories` | `array` | 安装设施可访问的仓库对象数组。
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ ms.locfileid: "145065657"
---
密钥 | 类型 | 说明
----|------|------------
`action` | `string` | 执行的操作内容. 可以为 `added` 或 `removed`。
`repository_selection` | `string` | 安装所在仓库的选择。 可以为 `selected` 或 `all`。
`action` | `string` | 执行的操作内容可以为 `added` 或 `removed`。
`repository_selection` | `string` | 安装所在仓库的选择。可以为 `selected` 或 `all`。
`repositories_added` | `array` | 已添加到安装中的仓库对象数组。
`repositories_removed` | `array` | 已从安装中删除的仓库对象数组。
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,4 @@ ms.locfileid: "145084305"
---
密钥 | 类型 | 说明
----|------|-------------
`action`|`string` | 在评论上执行的操作。 可以是 `created`、`edited` 或 `deleted` 之一。
`action`|`string` | 在评论上执行的操作。可以是 `created`、`edited` 或 `deleted` 之一。
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,4 @@ ms.locfileid: "145164698"
---
密钥 | 类型 | 说明
----|------|-------------
`action`|`string` | 执行的操作内容. 可以是 `opened`、`edited`、`closed`、`reopened`、`assigned`、`unassigned`、`labeled` 或 `unlabeled` 之一。
`action`|`string` | 执行的操作内容可以是 `opened`、`edited`、`closed`、`reopened`、`assigned`、`unassigned`、`labeled` 或 `unlabeled` 之一。
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,4 @@ ms.locfileid: "145084304"
---
密钥 | 类型 | 说明
----|------|-------------
`action`|`string` | 执行的操作内容. 可能是 `opened`、`edited`、`deleted`、`pinned`、`unpinned`、`closed`、`reopened`、`assigned`、`unassigned`、`labeled`、`unlabeled`、`locked`、`unlocked`、`transferred`、`milestoned` 或 `demilestoned` 之一。
`action`|`string` | 执行的操作内容可能是 `opened`、`edited`、`deleted`、`pinned`、`unpinned`、`closed`、`reopened`、`assigned`、`unassigned`、`labeled`、`unlabeled`、`locked`、`unlocked`、`transferred`、`milestoned` 或 `demilestoned` 之一。
Loading