此版本的 GitHub Enterprise Server 将于以下日期停止服务 2026-03-17. 即使针对重大安全问题,也不会发布补丁。 为了获得更好的性能、更高的安全性和新功能,请升级到最新版本的 GitHub Enterprise。 如需升级帮助,请联系 GitHub Enterprise 支持。
存储库标记的 REST API 终结点
使用 REST API 管理存储库的标记。
Closing down - List tag protection states for a repository
Warning
Closing down notice: This operation is closing down and will be removed after August 30, 2024. Use the "Repository Rulesets" endpoint instead.
This returns the tag protection states of a repository.
This information is only available to repository administrators.
“Closing down - List tag protection states for a repository”的细粒度访问令牌
此端点支持以下精细令牌类型:
精细令牌必须具有以下权限集:
- "Administration" repository permissions (read)
 
“Closing down - List tag protection states for a repository”的参数
| 名称, 类型, 说明 | 
|---|
accept string Setting to   | 
| 名称, 类型, 说明 | 
|---|
owner string 必须The account owner of the repository. The name is not case sensitive.  | 
repo string 必须The name of the repository without the   | 
“Closing down - List tag protection states for a repository”的 HTTP 响应状态代码
| 状态代码 | 说明 | 
|---|---|
200 | OK  | 
403 | Forbidden  | 
404 | Resource not found  | 
“Closing down - List tag protection states for a repository”的示例代码
请求示例
curl -L \
  -H "Accept: application/vnd.github+json" \
  -H "Authorization: Bearer <YOUR-TOKEN>" \
  -H "X-GitHub-Api-Version: 2022-11-28" \
  http(s)://HOSTNAME/api/v3/repos/OWNER/REPO/tags/protectionResponse
Status: 200[
  {
    "id": 2,
    "pattern": "v1.*"
  }
]Closing down - Create a tag protection state for a repository
Warning
Closing down notice: This operation is closing down and will be removed after August 30, 2024. Use the "Repository Rulesets" endpoint instead.
This creates a tag protection state for a repository. This endpoint is only available to repository administrators.
“Closing down - Create a tag protection state for a repository”的细粒度访问令牌
此端点支持以下精细令牌类型:
精细令牌必须具有以下权限集:
- "Administration" repository permissions (write)
 
“Closing down - Create a tag protection state for a repository”的参数
| 名称, 类型, 说明 | 
|---|
accept string Setting to   | 
| 名称, 类型, 说明 | 
|---|
owner string 必须The account owner of the repository. The name is not case sensitive.  | 
repo string 必须The name of the repository without the   | 
| 名称, 类型, 说明 | 
|---|
pattern string 必须An optional glob pattern to match against when enforcing tag protection.  | 
“Closing down - Create a tag protection state for a repository”的 HTTP 响应状态代码
| 状态代码 | 说明 | 
|---|---|
201 | Created  | 
403 | Forbidden  | 
404 | Resource not found  | 
“Closing down - Create a tag protection state for a repository”的示例代码
请求示例
curl -L \
  -X POST \
  -H "Accept: application/vnd.github+json" \
  -H "Authorization: Bearer <YOUR-TOKEN>" \
  -H "X-GitHub-Api-Version: 2022-11-28" \
  http(s)://HOSTNAME/api/v3/repos/OWNER/REPO/tags/protection \
  -d '{"pattern":"v1.*"}'Response
Status: 201{
  "enabled": true
}Closing down - Delete a tag protection state for a repository
Warning
Closing down notice: This operation is closing down and will be removed after August 30, 2024. Use the "Repository Rulesets" endpoint instead.
This deletes a tag protection state for a repository. This endpoint is only available to repository administrators.
“Closing down - Delete a tag protection state for a repository”的细粒度访问令牌
此端点支持以下精细令牌类型:
精细令牌必须具有以下权限集:
- "Administration" repository permissions (write)
 
“Closing down - Delete a tag protection state for a repository”的参数
| 名称, 类型, 说明 | 
|---|
accept string Setting to   | 
| 名称, 类型, 说明 | 
|---|
owner string 必须The account owner of the repository. The name is not case sensitive.  | 
repo string 必须The name of the repository without the   | 
tag_protection_id integer 必须The unique identifier of the tag protection.  | 
“Closing down - Delete a tag protection state for a repository”的 HTTP 响应状态代码
| 状态代码 | 说明 | 
|---|---|
204 | No Content  | 
403 | Forbidden  | 
404 | Resource not found  | 
“Closing down - Delete a tag protection state for a repository”的示例代码
请求示例
curl -L \
  -X DELETE \
  -H "Accept: application/vnd.github+json" \
  -H "Authorization: Bearer <YOUR-TOKEN>" \
  -H "X-GitHub-Api-Version: 2022-11-28" \
  http(s)://HOSTNAME/api/v3/repos/OWNER/REPO/tags/protection/TAG_PROTECTION_IDResponse
Status: 204