getRun

@GET(value = "/")
abstract fun getRun(): Call<Run>

Retrieves information about a run.

Return

A Call object representing the API call that can be executed asynchronously.


@GET(value = "/actions/runs/{id}")
abstract fun getRun(@Query(value = "id") runId: RunId?): Call<Run>

Retrieves information about a specific run.

Return

A Call object representing the API call that can be executed asynchronously.

Parameters

runId

The ID of the run.