Forgejo · Schema
ActionRunJob
ActionRunJob represents a job of a run
GitSource Code ManagementSelf-HostedDevOpsCI/CDOpen SourceForgeRepositoriesIssuesPull Requests
Properties
| Name | Type | Description |
|---|---|---|
| attempt | integer | How many times the job has been attempted including the current attempt. |
| handle | string | Opaque identifier that uniquely identifies a single attempt of a job. |
| id | integer | Identifier of this job. |
| name | string | the action run job name |
| needs | array | the action run job needed ids |
| owner_id | integer | the owner id |
| repo_id | integer | the repository id |
| run_id | integer | Identifier of the workflow run this job belongs to. |
| runs_on | array | the action run job labels to run on |
| status | string | the action run job status |
| task_id | integer | the action run job latest task id |
JSON Schema
{
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "ActionRunJob",
"description": "ActionRunJob represents a job of a run",
"type": "object",
"properties": {
"attempt": {
"description": "How many times the job has been attempted including the current attempt.",
"type": "integer",
"format": "int64",
"x-go-name": "Attempt"
},
"handle": {
"description": "Opaque identifier that uniquely identifies a single attempt of a job.",
"type": "string",
"x-go-name": "Handle"
},
"id": {
"description": "Identifier of this job.",
"type": "integer",
"format": "int64",
"x-go-name": "ID"
},
"name": {
"description": "the action run job name",
"type": "string",
"x-go-name": "Name"
},
"needs": {
"description": "the action run job needed ids",
"type": "array",
"items": {
"type": "string"
},
"x-go-name": "Needs"
},
"owner_id": {
"description": "the owner id",
"type": "integer",
"format": "int64",
"x-go-name": "OwnerID"
},
"repo_id": {
"description": "the repository id",
"type": "integer",
"format": "int64",
"x-go-name": "RepoID"
},
"run_id": {
"description": "Identifier of the workflow run this job belongs to.",
"type": "integer",
"format": "int64",
"x-go-name": "RunID"
},
"runs_on": {
"description": "the action run job labels to run on",
"type": "array",
"items": {
"type": "string"
},
"x-go-name": "RunsOn"
},
"status": {
"description": "the action run job status",
"type": "string",
"x-go-name": "Status"
},
"task_id": {
"description": "the action run job latest task id",
"type": "integer",
"format": "int64",
"x-go-name": "TaskID"
}
},
"x-go-package": "forgejo.org/modules/structs"
}