-
Notifications
You must be signed in to change notification settings - Fork 41
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(typescript): new
deployment
object for CheckRunEvent #381
- Loading branch information
1 parent
86d79ec
commit b2b91c5
Showing
9 changed files
with
131 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
34 changes: 34 additions & 0 deletions
34
payload-schemas/schemas/common/check-run-deployment.schema.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
{ | ||
"$schema": "http://json-schema.org/draft-07/schema", | ||
"$id": "common/check-run-deployment.schema.json", | ||
"type": "object", | ||
"required": [ | ||
"url", | ||
"id", | ||
"node_id", | ||
"task", | ||
"original_environment", | ||
"environment", | ||
"description", | ||
"created_at", | ||
"updated_at", | ||
"statuses_url", | ||
"repository_url" | ||
], | ||
"properties": { | ||
"url": { "type": "string", "format": "uri" }, | ||
"id": { "type": "integer" }, | ||
"node_id": { "type": "string" }, | ||
"task": { "type": "string" }, | ||
"original_environment": { "type": "string" }, | ||
"environment": { "type": "string" }, | ||
"description": { "type": ["string", "null"] }, | ||
"created_at": { "type": "string", "format": "date-time" }, | ||
"updated_at": { "type": "string", "format": "date-time" }, | ||
"statuses_url": { "type": "string", "format": "uri" }, | ||
"repository_url": { "type": "string", "format": "uri" } | ||
}, | ||
"additionalProperties": false, | ||
"description": "A deployment to a repository environment. This will only be populated if the check run was created by a GitHub Actions workflow job that references an environment.", | ||
"title": "Check Run Deployment" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters