-
Notifications
You must be signed in to change notification settings - Fork 2.2k
feat: Add support for getting Copilot cloud agent configuration #4241
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
Open
maishivamhoo123
wants to merge
9
commits into
google:master
Choose a base branch
from
maishivamhoo123:feat/copilot-cloud-agent-configuration
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
+573
−0
Open
Changes from all commits
Commits
Show all changes
9 commits
Select commit
Hold shift + click to select a range
4420993
feat: add support for getting Copilot cloud agent configuration
maishivamhoo123 9168397
Merge branch 'master' into feat/copilot-cloud-agent-configuration
maishivamhoo123 37494ff
Merge branch 'google:master' into feat/copilot-cloud-agent-configuration
maishivamhoo123 0451661
fix: Update CopilotCloudAgentConfiguration to use pointer type
maishivamhoo123 ee505fb
Merge branch 'master' into feat/copilot-cloud-agent-configuration
maishivamhoo123 0d6344c
fixed all the recomended changes
maishivamhoo123 17ca49a
Merge branch 'master' into feat/copilot-cloud-agent-configuration
maishivamhoo123 8310c32
the recommended changes added
maishivamhoo123 ccf2948
added all the recomended changes
maishivamhoo123 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,54 @@ | ||
| // Copyright 2026 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" | ||
| "encoding/json" | ||
| "fmt" | ||
| ) | ||
|
|
||
| // CopilotCloudAgentConfiguration represents the Copilot cloud agent configuration for a repository. | ||
| // | ||
| // GitHub API docs: https://docs.github.com/en/rest/copilot/copilot-cloud-agent-management?apiVersion=2026-03-10#get-copilot-cloud-agent-configuration-for-a-repository | ||
| type CopilotCloudAgentConfiguration struct { | ||
| McpConfiguration *json.RawMessage `json:"mcp_configuration"` | ||
| EnabledTools *CopilotCloudAgentEnabledTools `json:"enabled_tools"` | ||
| RequireActionsWorkflowApproval bool `json:"require_actions_workflow_approval"` | ||
| IsFirewallEnabled bool `json:"is_firewall_enabled"` | ||
| IsFirewallRecommendedAllowlistEnabled bool `json:"is_firewall_recommended_allowlist_enabled"` | ||
| CustomAllowlist []string `json:"custom_allowlist"` | ||
| } | ||
|
|
||
| // CopilotCloudAgentEnabledTools represents the enabled review tools for Copilot cloud agent. | ||
| type CopilotCloudAgentEnabledTools struct { | ||
| Codeql bool `json:"codeql"` | ||
| CopilotCodeReview bool `json:"copilot_code_review"` | ||
| SecretScanning bool `json:"secret_scanning"` | ||
| DependencyVulnerabilityChecks bool `json:"dependency_vulnerability_checks"` | ||
| } | ||
|
|
||
| // GetCloudAgentConfiguration gets the Copilot cloud agent configuration for a repository. | ||
| // | ||
| // GitHub API docs: https://docs.github.com/rest/copilot/copilot-cloud-agent-management?apiVersion=2022-11-28#get-copilot-cloud-agent-configuration-for-a-repository | ||
| // | ||
| //meta:operation GET /repos/{owner}/{repo}/copilot/cloud-agent/configuration | ||
| func (s *CopilotService) GetCloudAgentConfiguration(ctx context.Context, owner, repo string) (*CopilotCloudAgentConfiguration, *Response, error) { | ||
| u := fmt.Sprintf("repos/%v/%v/copilot/cloud-agent/configuration", owner, repo) | ||
|
|
||
| req, err := s.client.NewRequest(ctx, "GET", u, nil) | ||
| if err != nil { | ||
| return nil, nil, err | ||
| } | ||
|
|
||
| var config *CopilotCloudAgentConfiguration | ||
| resp, err := s.client.Do(req, &config) | ||
|
maishivamhoo123 marked this conversation as resolved.
|
||
| if err != nil { | ||
| return nil, resp, err | ||
| } | ||
|
|
||
| return config, resp, nil | ||
| } | ||
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.