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
119 lines
3.1 KiB
TypeScript
119 lines
3.1 KiB
TypeScript
import type { CreateBranchParams, RefResponse } from '@/tools/github/types'
|
|
import { GIT_REF_OUTPUT_PROPERTIES } from '@/tools/github/types'
|
|
import type { ToolConfig } from '@/tools/types'
|
|
|
|
export const createBranchTool: ToolConfig<CreateBranchParams, RefResponse> = {
|
|
id: 'github_create_branch',
|
|
name: 'GitHub Create Branch',
|
|
description:
|
|
'Create a new branch in a GitHub repository by creating a git reference pointing to a specific commit SHA.',
|
|
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: 'Name of the branch to create',
|
|
},
|
|
sha: {
|
|
type: 'string',
|
|
required: true,
|
|
visibility: 'user-or-llm',
|
|
description: 'Commit SHA to point the branch to',
|
|
},
|
|
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}/git/refs`,
|
|
method: 'POST',
|
|
headers: (params) => ({
|
|
Accept: 'application/vnd.github+json',
|
|
Authorization: `Bearer ${params.apiKey}`,
|
|
'X-GitHub-Api-Version': '2022-11-28',
|
|
'Content-Type': 'application/json',
|
|
}),
|
|
body: (params) => ({
|
|
ref: `refs/heads/${params.branch}`,
|
|
sha: params.sha,
|
|
}),
|
|
},
|
|
|
|
transformResponse: async (response) => {
|
|
const ref = await response.json()
|
|
|
|
// Create a human-readable content string
|
|
const content = `Branch created successfully:
|
|
Branch: ${ref.ref.replace('refs/heads/', '')}
|
|
SHA: ${ref.object.sha}
|
|
URL: ${ref.url}`
|
|
|
|
return {
|
|
success: true,
|
|
output: {
|
|
content,
|
|
metadata: {
|
|
ref: ref.ref,
|
|
url: ref.url,
|
|
sha: ref.object.sha,
|
|
},
|
|
},
|
|
}
|
|
},
|
|
|
|
outputs: {
|
|
content: { type: 'string', description: 'Human-readable branch creation confirmation' },
|
|
metadata: {
|
|
type: 'object',
|
|
description: 'Git reference metadata',
|
|
properties: {
|
|
ref: { type: 'string', description: 'Full reference name (refs/heads/branch)' },
|
|
url: { type: 'string', description: 'API URL for the reference' },
|
|
sha: { type: 'string', description: 'Commit SHA the branch points to' },
|
|
},
|
|
},
|
|
},
|
|
}
|
|
|
|
export const createBranchV2Tool: ToolConfig<CreateBranchParams, any> = {
|
|
id: 'github_create_branch_v2',
|
|
name: createBranchTool.name,
|
|
description: createBranchTool.description,
|
|
version: '2.0.0',
|
|
params: createBranchTool.params,
|
|
request: createBranchTool.request,
|
|
|
|
transformResponse: async (response: Response) => {
|
|
const ref = await response.json()
|
|
return {
|
|
success: true,
|
|
output: {
|
|
ref: ref.ref,
|
|
node_id: ref.node_id,
|
|
url: ref.url,
|
|
object: ref.object,
|
|
},
|
|
}
|
|
},
|
|
|
|
outputs: GIT_REF_OUTPUT_PROPERTIES,
|
|
}
|