MCPcopy
hub / github.com/Dokploy/dokploy / updateGithub

Function updateGithub

packages/server/src/services/github.ts:67–79  ·  view source on GitHub ↗
(
	githubId: string,
	input: Partial<Github>,
)

Source from the content-addressed store, hash-verified

65};
66
67export const updateGithub = async (
68 githubId: string,
69 input: Partial<Github>,
70) => {
71 return await db
72 .update(github)
73 .set({
74 ...input,
75 })
76 .where(eq(github.githubId, githubId))
77 .returning()
78 .then((response) => response[0]);
79};
80
81export const getIssueComment = (
82 appName: string,

Callers 1

github.tsFile · 0.90

Calls

no outgoing calls

Tested by

no test coverage detected