MCPcopy Index your code
hub / github.com/iterative/cml / commitCommentUpdate

Method commitCommentUpdate

src/drivers/github.js:122–133  ·  view source on GitHub ↗
(opts = {})

Source from the content-addressed store, hash-verified

120 }
121
122 async commitCommentUpdate(opts = {}) {
123 const { report: body, id } = opts;
124 const { repos } = octokit(this.token, this.repo);
125
126 return (
127 await repos.updateCommitComment({
128 ...ownerRepo({ uri: this.repo }),
129 comment_id: id,
130 body
131 })
132 ).data.html_url;
133 }
134
135 async commitComments(opts = {}) {
136 const { commitSha } = opts;

Callers

nothing calls this directly

Calls 2

octokitFunction · 0.85
ownerRepoFunction · 0.85

Tested by

no test coverage detected