Skip to content

Commit

Permalink
feat: new run_attempt property on workflow_job
Browse files Browse the repository at this point in the history
  • Loading branch information
wolfy1339 committed Nov 22, 2021
1 parent 4aa1c44 commit d87756f
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
Expand Up @@ -5,6 +5,7 @@
"id",
"run_id",
"run_url",
"run_attempt",
"node_id",
"head_sha",
"url",
Expand All @@ -27,11 +28,12 @@
"properties": {
"id": { "type": "integer" },
"run_id": { "type": "number" },
"run_attempt": { "type": "integer" },
"run_url": { "type": "string", "format": "uri" },
"head_sha": { "type": "string" },
"node_id": { "type": "string" },
"name": { "type": "string" },
"check_run_url": { "type": "string", "format": "uri" },
"run_url": { "type": "string", "format": "uri" },
"html_url": { "type": "string", "format": "uri" },
"url": { "type": "string", "format": "uri" },
"status": {
Expand Down
Expand Up @@ -15,6 +15,7 @@
"id",
"run_id",
"run_url",
"run_attempt",
"node_id",
"head_sha",
"url",
Expand All @@ -35,11 +36,12 @@
"properties": {
"id": { "type": "integer" },
"run_id": { "type": "number" },
"run_url": { "type": "string", "format": "uri" },
"run_attempt": { "type": "integer" },
"head_sha": { "type": "string" },
"node_id": { "type": "string" },
"name": { "type": "string" },
"check_run_url": { "type": "string", "format": "uri" },
"run_url": { "type": "string", "format": "uri" },
"html_url": { "type": "string", "format": "uri" },
"url": { "type": "string", "format": "uri" },
"status": { "type": "string", "enum": ["queued"] },
Expand Down

0 comments on commit d87756f

Please sign in to comment.