Skip to content

Commit dfbdec1

Browse files
committed
Remove OS field, not needed for my usecase
1 parent b8b96d0 commit dfbdec1

File tree

2 files changed

+0
-2
lines changed

2 files changed

+0
-2
lines changed

modules/structs/repo_actions.go

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -145,7 +145,6 @@ type ActionRunnerLabel struct {
145145
type ActionRunner struct {
146146
ID int64 `json:"id"`
147147
Name string `json:"name"`
148-
OS string `json:"os"`
149148
Status string `json:"status"`
150149
Busy bool `json:"busy"`
151150
Ephemeral bool `json:"ephemeral"`

services/convert/convert.go

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -271,7 +271,6 @@ func ToActionRunner(ctx context.Context, runner *actions_model.ActionRunner) *ap
271271
return &api.ActionRunner{
272272
ID: runner.ID,
273273
Name: runner.Name,
274-
OS: "Unknown",
275274
Status: apiStatus,
276275
Busy: status == runnerv1.RunnerStatus_RUNNER_STATUS_ACTIVE,
277276
Ephemeral: runner.Ephemeral,

0 commit comments

Comments
 (0)