Remove acquire jobs (#4)

This commit is contained in:
Francesco Renzi
2025-10-30 14:52:11 +01:00
committed by GitHub
parent b1dcbc44e6
commit 39ffa2e560
3 changed files with 0 additions and 277 deletions
-16
View File
@@ -6,22 +6,6 @@ import (
"github.com/google/uuid"
)
type AcquirableJobList struct {
Count int `json:"count"`
Jobs []AcquirableJob `json:"value"`
}
type AcquirableJob struct {
AcquireJobURL string `json:"acquireJobUrl"`
MessageType string `json:"messageType"`
RunnerRequestID int64 `json:"runnerRequestId"`
RepositoryName string `json:"repositoryName"`
OwnerName string `json:"ownerName"`
JobWorkflowRef string `json:"jobWorkflowRef"`
EventName string `json:"eventName"`
RequestLabels []string `json:"requestLabels"`
}
type Int64List struct {
Count int `json:"count"`
Value []int64 `json:"value"`