Skip to content

Commit

Permalink
fix: store runner id not run id in runner_id field
Browse files Browse the repository at this point in the history
  • Loading branch information
marcusramberg committed Oct 30, 2024
1 parent aa9f0d3 commit 072a993
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/store/generic_workflow_job.go
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ func storeWorkflowJobEvent(handle *sqlx.DB, event *github.WorkflowJobEvent) erro
StartedAt: job.GetStartedAt().Time.Unix(),
CompletedAt: job.GetCompletedAt().Time.Unix(),
Labels: strings.Join(job.Labels, ","),
RunnerID: job.GetRunID(),
RunnerID: job.GetRunnerID(),
RunnerName: job.GetRunnerName(),
RunnerGroupID: job.GetRunnerGroupID(),
RunnerGroupName: job.GetRunnerGroupName(),
Expand Down

0 comments on commit 072a993

Please sign in to comment.