d25d482dc2
Publish CLI Package / publish-npm (push) Waiting to run
Publish Python SDK / publish-pypi (push) Waiting to run
Publish TypeScript SDK / publish-npm (push) Waiting to run
CI / Migrate Dev DB (push) Has been skipped
CI / Detect Version (push) Has been cancelled
CI / Migrate DB (push) Has been cancelled
CI / Build Dev ECR (./docker/app.Dockerfile, ECR_APP) (push) Has been cancelled
CI / Build Dev ECR (./docker/db.Dockerfile, ECR_MIGRATIONS) (push) Has been cancelled
CI / Build Dev ECR (./docker/pii.Dockerfile, ECR_PII) (push) Has been cancelled
CI / Build Dev ECR (./docker/realtime.Dockerfile, ECR_REALTIME) (push) Has been cancelled
CI / Deploy Trigger.dev (Dev) (push) Has been cancelled
CI / Build AMD64 (./docker/app.Dockerfile, ECR_APP, ghcr.io/simstudioai/simstudio) (push) Has been cancelled
CI / Build AMD64 (./docker/db.Dockerfile, ECR_MIGRATIONS, ghcr.io/simstudioai/migrations) (push) Has been cancelled
CI / Build AMD64 (./docker/pii.Dockerfile, ECR_PII, ghcr.io/simstudioai/pii) (push) Has been cancelled
CI / Build AMD64 (./docker/realtime.Dockerfile, ECR_REALTIME, ghcr.io/simstudioai/realtime) (push) Has been cancelled
CI / Build ARM64 (GHCR Only) (./docker/app.Dockerfile, ghcr.io/simstudioai/simstudio) (push) Has been cancelled
CI / Build ARM64 (GHCR Only) (./docker/db.Dockerfile, ghcr.io/simstudioai/migrations) (push) Has been cancelled
CI / Build ARM64 (GHCR Only) (./docker/pii.Dockerfile, ghcr.io/simstudioai/pii) (push) Has been cancelled
CI / Build ARM64 (GHCR Only) (./docker/realtime.Dockerfile, ghcr.io/simstudioai/realtime) (push) Has been cancelled
CI / Create GHCR Manifests (ghcr.io/simstudioai/migrations) (push) Has been cancelled
CI / Create GHCR Manifests (ghcr.io/simstudioai/pii) (push) Has been cancelled
CI / Create GHCR Manifests (ghcr.io/simstudioai/realtime) (push) Has been cancelled
CI / Create GHCR Manifests (ghcr.io/simstudioai/simstudio) (push) Has been cancelled
CI / Check Docs Changes (push) Has been cancelled
CI / Process Docs (push) Has been cancelled
CI / Create GitHub Release (push) Has been cancelled
CI / Test and Build (push) Has been cancelled
216 lines
7.5 KiB
TypeScript
216 lines
7.5 KiB
TypeScript
import type { BranchProtectionResponse, GetBranchProtectionParams } from '@/tools/github/types'
|
|
import { BRANCH_PROTECTION_OUTPUT_PROPERTIES } from '@/tools/github/types'
|
|
import type { ToolConfig } from '@/tools/types'
|
|
|
|
export const getBranchProtectionTool: ToolConfig<
|
|
GetBranchProtectionParams,
|
|
BranchProtectionResponse
|
|
> = {
|
|
id: 'github_get_branch_protection',
|
|
name: 'GitHub Get Branch Protection',
|
|
description:
|
|
'Get the branch protection rules for a specific branch, including status checks, review requirements, and restrictions.',
|
|
version: '1.0.0',
|
|
|
|
params: {
|
|
owner: {
|
|
type: 'string',
|
|
required: true,
|
|
visibility: 'user-or-llm',
|
|
description: 'Repository owner (user or organization)',
|
|
},
|
|
repo: {
|
|
type: 'string',
|
|
required: true,
|
|
visibility: 'user-or-llm',
|
|
description: 'Repository name',
|
|
},
|
|
branch: {
|
|
type: 'string',
|
|
required: true,
|
|
visibility: 'user-or-llm',
|
|
description: 'Branch name',
|
|
},
|
|
apiKey: {
|
|
type: 'string',
|
|
required: true,
|
|
visibility: 'user-only',
|
|
description: 'GitHub Personal Access Token',
|
|
},
|
|
},
|
|
|
|
request: {
|
|
url: (params) =>
|
|
`https://api.github.com/repos/${params.owner}/${params.repo}/branches/${params.branch}/protection`,
|
|
method: 'GET',
|
|
headers: (params) => ({
|
|
Accept: 'application/vnd.github+json',
|
|
Authorization: `Bearer ${params.apiKey}`,
|
|
'X-GitHub-Api-Version': '2022-11-28',
|
|
}),
|
|
},
|
|
|
|
transformResponse: async (response) => {
|
|
const protection = await response.json()
|
|
|
|
let content = `Branch Protection for "${protection.url.split('/branches/')[1].split('/protection')[0]}":
|
|
|
|
Enforce Admins: ${protection.enforce_admins?.enabled ? 'Yes' : 'No'}`
|
|
|
|
if (protection.required_status_checks) {
|
|
content += `\n\nRequired Status Checks:
|
|
- Strict: ${protection.required_status_checks.strict}
|
|
- Contexts: ${protection.required_status_checks.contexts.length > 0 ? protection.required_status_checks.contexts.join(', ') : 'None'}`
|
|
} else {
|
|
content += '\n\nRequired Status Checks: None'
|
|
}
|
|
|
|
if (protection.required_pull_request_reviews) {
|
|
content += `\n\nRequired Pull Request Reviews:
|
|
- Required Approving Reviews: ${protection.required_pull_request_reviews.required_approving_review_count || 0}
|
|
- Dismiss Stale Reviews: ${protection.required_pull_request_reviews.dismiss_stale_reviews ? 'Yes' : 'No'}
|
|
- Require Code Owner Reviews: ${protection.required_pull_request_reviews.require_code_owner_reviews ? 'Yes' : 'No'}`
|
|
} else {
|
|
content += '\n\nRequired Pull Request Reviews: None'
|
|
}
|
|
|
|
if (protection.restrictions) {
|
|
const users = protection.restrictions.users?.map((u: any) => u.login) || []
|
|
const teams = protection.restrictions.teams?.map((t: any) => t.slug) || []
|
|
content += `\n\nRestrictions:
|
|
- Users: ${users.length > 0 ? users.join(', ') : 'None'}
|
|
- Teams: ${teams.length > 0 ? teams.join(', ') : 'None'}`
|
|
} else {
|
|
content += '\n\nRestrictions: None'
|
|
}
|
|
|
|
return {
|
|
success: true,
|
|
output: {
|
|
content,
|
|
metadata: {
|
|
required_status_checks: protection.required_status_checks
|
|
? {
|
|
strict: protection.required_status_checks.strict,
|
|
contexts: protection.required_status_checks.contexts,
|
|
}
|
|
: null,
|
|
enforce_admins: {
|
|
enabled: protection.enforce_admins?.enabled || false,
|
|
},
|
|
required_pull_request_reviews: protection.required_pull_request_reviews
|
|
? {
|
|
required_approving_review_count:
|
|
protection.required_pull_request_reviews.required_approving_review_count || 0,
|
|
dismiss_stale_reviews:
|
|
protection.required_pull_request_reviews.dismiss_stale_reviews || false,
|
|
require_code_owner_reviews:
|
|
protection.required_pull_request_reviews.require_code_owner_reviews || false,
|
|
}
|
|
: null,
|
|
restrictions: protection.restrictions
|
|
? {
|
|
users: protection.restrictions.users?.map((u: any) => u.login) || [],
|
|
teams: protection.restrictions.teams?.map((t: any) => t.slug) || [],
|
|
}
|
|
: null,
|
|
},
|
|
},
|
|
}
|
|
},
|
|
|
|
outputs: {
|
|
content: { type: 'string', description: 'Human-readable branch protection summary' },
|
|
metadata: {
|
|
type: 'object',
|
|
description: 'Branch protection configuration',
|
|
properties: {
|
|
required_status_checks: {
|
|
type: 'object',
|
|
description: 'Status check requirements (null if not configured)',
|
|
properties: {
|
|
strict: { type: 'boolean', description: 'Require branches to be up to date' },
|
|
contexts: {
|
|
type: 'array',
|
|
description: 'Required status check contexts',
|
|
items: { type: 'string' },
|
|
},
|
|
},
|
|
},
|
|
enforce_admins: {
|
|
type: 'object',
|
|
description: 'Admin enforcement settings',
|
|
properties: {
|
|
enabled: { type: 'boolean', description: 'Enforce for administrators' },
|
|
},
|
|
},
|
|
required_pull_request_reviews: {
|
|
type: 'object',
|
|
description: 'Pull request review requirements (null if not configured)',
|
|
properties: {
|
|
required_approving_review_count: {
|
|
type: 'number',
|
|
description: 'Number of approving reviews required',
|
|
},
|
|
dismiss_stale_reviews: {
|
|
type: 'boolean',
|
|
description: 'Dismiss stale pull request approvals',
|
|
},
|
|
require_code_owner_reviews: {
|
|
type: 'boolean',
|
|
description: 'Require review from code owners',
|
|
},
|
|
},
|
|
},
|
|
restrictions: {
|
|
type: 'object',
|
|
description: 'Push restrictions (null if not configured)',
|
|
properties: {
|
|
users: {
|
|
type: 'array',
|
|
description: 'Users who can push',
|
|
items: { type: 'string' },
|
|
},
|
|
teams: {
|
|
type: 'array',
|
|
description: 'Teams who can push',
|
|
items: { type: 'string' },
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
}
|
|
|
|
export const getBranchProtectionV2Tool: ToolConfig<GetBranchProtectionParams, any> = {
|
|
id: 'github_get_branch_protection_v2',
|
|
name: getBranchProtectionTool.name,
|
|
description: getBranchProtectionTool.description,
|
|
version: '2.0.0',
|
|
params: getBranchProtectionTool.params,
|
|
request: getBranchProtectionTool.request,
|
|
|
|
transformResponse: async (response: Response) => {
|
|
const protection = await response.json()
|
|
return {
|
|
success: true,
|
|
output: {
|
|
url: protection.url,
|
|
required_status_checks: protection.required_status_checks ?? null,
|
|
enforce_admins: protection.enforce_admins,
|
|
required_pull_request_reviews: protection.required_pull_request_reviews ?? null,
|
|
restrictions: protection.restrictions ?? null,
|
|
required_linear_history: protection.required_linear_history ?? null,
|
|
allow_force_pushes: protection.allow_force_pushes ?? null,
|
|
allow_deletions: protection.allow_deletions ?? null,
|
|
block_creations: protection.block_creations ?? null,
|
|
required_conversation_resolution: protection.required_conversation_resolution ?? null,
|
|
required_signatures: protection.required_signatures ?? null,
|
|
},
|
|
}
|
|
},
|
|
|
|
outputs: BRANCH_PROTECTION_OUTPUT_PROPERTIES,
|
|
}
|