WIP: Save agent roles integration work before CHORUS rebrand
- Agent roles and coordination features - Chat API integration testing - New configuration and workspace management 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
		
							
								
								
									
										99
									
								
								vendor/github.com/google/go-github/v57/github/repos_keys.go
									
									
									
										generated
									
									
										vendored
									
									
										Normal file
									
								
							
							
						
						
									
										99
									
								
								vendor/github.com/google/go-github/v57/github/repos_keys.go
									
									
									
										generated
									
									
										vendored
									
									
										Normal file
									
								
							| @@ -0,0 +1,99 @@ | ||||
| // Copyright 2013 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" | ||||
| ) | ||||
|  | ||||
| // The Key type is defined in users_keys.go | ||||
|  | ||||
| // ListKeys lists the deploy keys for a repository. | ||||
| // | ||||
| // GitHub API docs: https://docs.github.com/rest/deploy-keys/deploy-keys#list-deploy-keys | ||||
| // | ||||
| //meta:operation GET /repos/{owner}/{repo}/keys | ||||
| func (s *RepositoriesService) ListKeys(ctx context.Context, owner string, repo string, opts *ListOptions) ([]*Key, *Response, error) { | ||||
| 	u := fmt.Sprintf("repos/%v/%v/keys", owner, repo) | ||||
| 	u, err := addOptions(u, opts) | ||||
| 	if err != nil { | ||||
| 		return nil, nil, err | ||||
| 	} | ||||
|  | ||||
| 	req, err := s.client.NewRequest("GET", u, nil) | ||||
| 	if err != nil { | ||||
| 		return nil, nil, err | ||||
| 	} | ||||
|  | ||||
| 	var keys []*Key | ||||
| 	resp, err := s.client.Do(ctx, req, &keys) | ||||
| 	if err != nil { | ||||
| 		return nil, resp, err | ||||
| 	} | ||||
|  | ||||
| 	return keys, resp, nil | ||||
| } | ||||
|  | ||||
| // GetKey fetches a single deploy key. | ||||
| // | ||||
| // GitHub API docs: https://docs.github.com/rest/deploy-keys/deploy-keys#get-a-deploy-key | ||||
| // | ||||
| //meta:operation GET /repos/{owner}/{repo}/keys/{key_id} | ||||
| func (s *RepositoriesService) GetKey(ctx context.Context, owner string, repo string, id int64) (*Key, *Response, error) { | ||||
| 	u := fmt.Sprintf("repos/%v/%v/keys/%v", owner, repo, id) | ||||
|  | ||||
| 	req, err := s.client.NewRequest("GET", u, nil) | ||||
| 	if err != nil { | ||||
| 		return nil, nil, err | ||||
| 	} | ||||
|  | ||||
| 	key := new(Key) | ||||
| 	resp, err := s.client.Do(ctx, req, key) | ||||
| 	if err != nil { | ||||
| 		return nil, resp, err | ||||
| 	} | ||||
|  | ||||
| 	return key, resp, nil | ||||
| } | ||||
|  | ||||
| // CreateKey adds a deploy key for a repository. | ||||
| // | ||||
| // GitHub API docs: https://docs.github.com/rest/deploy-keys/deploy-keys#create-a-deploy-key | ||||
| // | ||||
| //meta:operation POST /repos/{owner}/{repo}/keys | ||||
| func (s *RepositoriesService) CreateKey(ctx context.Context, owner string, repo string, key *Key) (*Key, *Response, error) { | ||||
| 	u := fmt.Sprintf("repos/%v/%v/keys", owner, repo) | ||||
|  | ||||
| 	req, err := s.client.NewRequest("POST", u, key) | ||||
| 	if err != nil { | ||||
| 		return nil, nil, err | ||||
| 	} | ||||
|  | ||||
| 	k := new(Key) | ||||
| 	resp, err := s.client.Do(ctx, req, k) | ||||
| 	if err != nil { | ||||
| 		return nil, resp, err | ||||
| 	} | ||||
|  | ||||
| 	return k, resp, nil | ||||
| } | ||||
|  | ||||
| // DeleteKey deletes a deploy key. | ||||
| // | ||||
| // GitHub API docs: https://docs.github.com/rest/deploy-keys/deploy-keys#delete-a-deploy-key | ||||
| // | ||||
| //meta:operation DELETE /repos/{owner}/{repo}/keys/{key_id} | ||||
| func (s *RepositoriesService) DeleteKey(ctx context.Context, owner string, repo string, id int64) (*Response, error) { | ||||
| 	u := fmt.Sprintf("repos/%v/%v/keys/%v", owner, repo, id) | ||||
|  | ||||
| 	req, err := s.client.NewRequest("DELETE", u, nil) | ||||
| 	if err != nil { | ||||
| 		return nil, err | ||||
| 	} | ||||
|  | ||||
| 	return s.client.Do(ctx, req, nil) | ||||
| } | ||||
		Reference in New Issue
	
	Block a user
	 anthonyrawlins
					anthonyrawlins