1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82
|
// Copyright 2022 The go-github AUTHORS. All rights reserved.
//
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
package github
import (
"context"
"fmt"
)
// TagProtection represents a repository tag protection.
type TagProtection struct {
ID *int64 `json:"id"`
Pattern *string `json:"pattern"`
}
// tagProtectionRequest represents a request to create tag protection.
type tagProtectionRequest struct {
// An optional glob pattern to match against when enforcing tag protection.
Pattern string `json:"pattern"`
}
// ListTagProtection lists tag protection of the specified repository.
//
// GitHub API docs: https://docs.github.com/rest/repos/tags#list-tag-protection-states-for-a-repository
//
//meta:operation GET /repos/{owner}/{repo}/tags/protection
func (s *RepositoriesService) ListTagProtection(ctx context.Context, owner, repo string) ([]*TagProtection, *Response, error) {
u := fmt.Sprintf("repos/%v/%v/tags/protection", owner, repo)
req, err := s.client.NewRequest("GET", u, nil)
if err != nil {
return nil, nil, err
}
var tagProtections []*TagProtection
resp, err := s.client.Do(ctx, req, &tagProtections)
if err != nil {
return nil, resp, err
}
return tagProtections, resp, nil
}
// CreateTagProtection creates the tag protection of the specified repository.
//
// GitHub API docs: https://docs.github.com/rest/repos/tags#create-a-tag-protection-state-for-a-repository
//
//meta:operation POST /repos/{owner}/{repo}/tags/protection
func (s *RepositoriesService) CreateTagProtection(ctx context.Context, owner, repo, pattern string) (*TagProtection, *Response, error) {
u := fmt.Sprintf("repos/%v/%v/tags/protection", owner, repo)
r := &tagProtectionRequest{Pattern: pattern}
req, err := s.client.NewRequest("POST", u, r)
if err != nil {
return nil, nil, err
}
tagProtection := new(TagProtection)
resp, err := s.client.Do(ctx, req, tagProtection)
if err != nil {
return nil, resp, err
}
return tagProtection, resp, nil
}
// DeleteTagProtection deletes a tag protection from the specified repository.
//
// GitHub API docs: https://docs.github.com/rest/repos/tags#delete-a-tag-protection-state-for-a-repository
//
//meta:operation DELETE /repos/{owner}/{repo}/tags/protection/{tag_protection_id}
func (s *RepositoriesService) DeleteTagProtection(ctx context.Context, owner, repo string, tagProtectionID int64) (*Response, error) {
u := fmt.Sprintf("repos/%v/%v/tags/protection/%v", owner, repo, tagProtectionID)
req, err := s.client.NewRequest("DELETE", u, nil)
if err != nil {
return nil, err
}
return s.client.Do(ctx, req, nil)
}
|