Skip to content

Commit

Permalink
feat: new run_attempt, run_started_at and previous_attempt_url
Browse files Browse the repository at this point in the history
…properties for `workflow_run`
  • Loading branch information
wolfy1339 committed Nov 22, 2021
1 parent 579527c commit 7012cb4
Showing 1 changed file with 10 additions and 2 deletions.
12 changes: 10 additions & 2 deletions payload-schemas/api.github.com/common/workflow-run.schema.json
Expand Up @@ -28,7 +28,10 @@
"updated_at",
"url",
"workflow_id",
"workflow_url"
"workflow_url",
"run_attempt",
"run_started_at",
"previous_attempt_url"
],
"type": "object",
"properties": {
Expand Down Expand Up @@ -105,7 +108,12 @@
"updated_at": { "type": "string", "format": "date-time" },
"url": { "type": "string", "format": "uri" },
"workflow_id": { "type": "integer" },
"workflow_url": { "type": "string", "format": "uri" }
"workflow_url": { "type": "string", "format": "uri" },
"run_attempt": { "type": "integer" },
"run_started_at": { "type": "string", "format": "date-time" },
"previous_attempt_url": {
"oneOf": [{ "type": "string", "format": "uri" }, { "type": "null" }]
}
},
"additionalProperties": false,
"title": "Workflow Run"
Expand Down

0 comments on commit 7012cb4

Please sign in to comment.