MCPcopy
hub / github.com/iterative/cml / runnerById

Method runnerById

src/drivers/gitlab.js:267–283  ·  view source on GitHub ↗
({ id } = {})

Source from the content-addressed store, hash-verified

265 }
266
267 async runnerById({ id } = {}) {
268 const {
269 description,
270 online,
271 tag_list: labels
272 } = await this.request({
273 endpoint: `/runners/${id}`,
274 method: 'GET'
275 });
276
277 return {
278 id,
279 name: description,
280 labels,
281 online
282 };
283 }
284
285 runnerLogPatterns() {
286 return {

Callers

nothing calls this directly

Calls 1

requestMethod · 0.95

Tested by

no test coverage detected