리포지토리 태그에 대한 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 RequiredThe account owner of the repository. The name is not case sensitive.  | 
repo string RequiredThe 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 RequiredThe account owner of the repository. The name is not case sensitive.  | 
repo string RequiredThe name of the repository without the   | 
| 속성, 형식, 설명 | 
|---|
pattern string RequiredAn 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 RequiredThe account owner of the repository. The name is not case sensitive.  | 
repo string RequiredThe name of the repository without the   | 
tag_protection_id integer RequiredThe 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