1
0
mirror of synced 2025-12-30 03:01:36 -05:00

Update OpenAPI Descriptions (#26117)

Co-authored-by: Robert Sese <rsese@github.com>
This commit is contained in:
github-openapi-bot
2022-03-13 18:14:01 -07:00
committed by GitHub
parent 6fdd3481bb
commit 856c2d73ea
13 changed files with 397 additions and 335 deletions

View File

@@ -32,12 +32,12 @@
"requestPath": "/orgs/{org}/actions/permissions/repositories/{repository_id}"
},
{
"slug": "get-allowed-actions-for-an-organization",
"slug": "get-allowed-actions-and-workflows-for-an-organization",
"verb": "get",
"requestPath": "/orgs/{org}/actions/permissions/selected-actions"
},
{
"slug": "set-allowed-actions-for-an-organization",
"slug": "set-allowed-actions-and-workflows-for-an-organization",
"verb": "put",
"requestPath": "/orgs/{org}/actions/permissions/selected-actions"
},
@@ -267,12 +267,12 @@
"requestPath": "/repos/{owner}/{repo}/actions/permissions/access"
},
{
"slug": "get-allowed-actions-for-a-repository",
"slug": "get-allowed-actions-and-workflows-for-a-repository",
"verb": "get",
"requestPath": "/repos/{owner}/{repo}/actions/permissions/selected-actions"
},
{
"slug": "set-allowed-actions-for-a-repository",
"slug": "set-allowed-actions-and-workflows-for-a-repository",
"verb": "put",
"requestPath": "/repos/{owner}/{repo}/actions/permissions/selected-actions"
},

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@@ -16859,7 +16859,7 @@
"/enterprises/{enterprise}/actions/permissions": {
"get": {
"summary": "Get GitHub Actions permissions for an enterprise",
"description": "Gets the GitHub Actions permissions policy for organizations and allowed actions in an enterprise.\n\nYou must authenticate using an access token with the `admin:enterprise` scope to use this endpoint.",
"description": "Gets the GitHub Actions permissions policy for organizations and allowed actions and workflows in an enterprise.\n\nYou must authenticate using an access token with the `admin:enterprise` scope to use this endpoint.",
"operationId": "enterprise-admin/get-github-actions-permissions-enterprise",
"tags": [
"enterprise-admin"
@@ -16902,7 +16902,7 @@
},
"allowed_actions": {
"type": "string",
"description": "The permissions policy that controls the actions that are allowed to run. Can be one of: `all`, `local_only`, or `selected`.",
"description": "The permissions policy that controls the actions and workflows that are allowed to run. Can be one of: `all`, `local_only`, or `selected`.",
"enum": [
"all",
"local_only",
@@ -16911,7 +16911,7 @@
},
"selected_actions_url": {
"type": "string",
"description": "The API URL to use to get or set the actions that are allowed to run, when `allowed_actions` is set to `selected`."
"description": "The API URL to use to get or set the actions and workflows that are allowed to run, when `allowed_actions` is set to `selected`."
}
},
"required": [
@@ -16940,7 +16940,7 @@
},
"put": {
"summary": "Set GitHub Actions permissions for an enterprise",
"description": "Sets the GitHub Actions permissions policy for organizations and allowed actions in an enterprise.\n\nYou must authenticate using an access token with the `admin:enterprise` scope to use this endpoint.",
"description": "Sets the GitHub Actions permissions policy for organizations and allowed actions and workflows in an enterprise.\n\nYou must authenticate using an access token with the `admin:enterprise` scope to use this endpoint.",
"operationId": "enterprise-admin/set-github-actions-permissions-enterprise",
"tags": [
"enterprise-admin"
@@ -16983,7 +16983,7 @@
},
"allowed_actions": {
"type": "string",
"description": "The permissions policy that controls the actions that are allowed to run. Can be one of: `all`, `local_only`, or `selected`.",
"description": "The permissions policy that controls the actions and workflows that are allowed to run. Can be one of: `all`, `local_only`, or `selected`.",
"enum": [
"all",
"local_only",
@@ -17332,8 +17332,8 @@
},
"/enterprises/{enterprise}/actions/permissions/selected-actions": {
"get": {
"summary": "Get allowed actions for an enterprise",
"description": "Gets the selected actions that are allowed in an enterprise. To use this endpoint, the enterprise permission policy for `allowed_actions` must be configured to `selected`. For more information, see \"[Set GitHub Actions permissions for an enterprise](#set-github-actions-permissions-for-an-enterprise).\"\n\nYou must authenticate using an access token with the `admin:enterprise` scope to use this endpoint.",
"summary": "Get allowed actions and workflows for an enterprise",
"description": "Gets the selected actions and workflows that are allowed in an enterprise. To use this endpoint, the enterprise permission policy for `allowed_actions` must be configured to `selected`. For more information, see \"[Set GitHub Actions permissions for an enterprise](#set-github-actions-permissions-for-an-enterprise).\"\n\nYou must authenticate using an access token with the `admin:enterprise` scope to use this endpoint.",
"operationId": "enterprise-admin/get-allowed-actions-enterprise",
"tags": [
"enterprise-admin"
@@ -17367,11 +17367,11 @@
},
"verified_allowed": {
"type": "boolean",
"description": "Whether actions in GitHub Marketplace from verified creators are allowed. Set to `true` to allow all GitHub Marketplace actions by verified creators."
"description": "Whether actions from GitHub Marketplace verified creators are allowed. Set to `true` to allow all actions by GitHub Marketplace verified creators."
},
"patterns_allowed": {
"type": "array",
"description": "Specifies a list of string-matching patterns to allow specific action(s). Wildcards, tags, and SHAs are allowed. For example, `monalisa/octocat@*`, `monalisa/octocat@v2`, `monalisa/*`.\"",
"description": "Specifies a list of string-matching patterns to allow specific action(s) and workflow(s). Wildcards, tags, and SHAs are allowed. For example, `monalisa/octocat@*`, `monalisa/octocat@v2`, `monalisa/*`.\"",
"items": {
"type": "string"
}
@@ -17402,8 +17402,8 @@
}
},
"put": {
"summary": "Set allowed actions for an enterprise",
"description": "Sets the actions that are allowed in an enterprise. To use this endpoint, the enterprise permission policy for `allowed_actions` must be configured to `selected`. For more information, see \"[Set GitHub Actions permissions for an enterprise](#set-github-actions-permissions-for-an-enterprise).\"\n\nYou must authenticate using an access token with the `admin:enterprise` scope to use this endpoint.",
"summary": "Set allowed actions and workflows for an enterprise",
"description": "Sets the actions and workflows that are allowed in an enterprise. To use this endpoint, the enterprise permission policy for `allowed_actions` must be configured to `selected`. For more information, see \"[Set GitHub Actions permissions for an enterprise](#set-github-actions-permissions-for-an-enterprise).\"\n\nYou must authenticate using an access token with the `admin:enterprise` scope to use this endpoint.",
"operationId": "enterprise-admin/set-allowed-actions-enterprise",
"tags": [
"enterprise-admin"
@@ -17441,11 +17441,11 @@
},
"verified_allowed": {
"type": "boolean",
"description": "Whether actions in GitHub Marketplace from verified creators are allowed. Set to `true` to allow all GitHub Marketplace actions by verified creators."
"description": "Whether actions from GitHub Marketplace verified creators are allowed. Set to `true` to allow all actions by GitHub Marketplace verified creators."
},
"patterns_allowed": {
"type": "array",
"description": "Specifies a list of string-matching patterns to allow specific action(s). Wildcards, tags, and SHAs are allowed. For example, `monalisa/octocat@*`, `monalisa/octocat@v2`, `monalisa/*`.\"",
"description": "Specifies a list of string-matching patterns to allow specific action(s) and workflow(s). Wildcards, tags, and SHAs are allowed. For example, `monalisa/octocat@*`, `monalisa/octocat@v2`, `monalisa/*`.\"",
"items": {
"type": "string"
}
@@ -55394,7 +55394,7 @@
"/orgs/{org}/actions/permissions": {
"get": {
"summary": "Get GitHub Actions permissions for an organization",
"description": "Gets the GitHub Actions permissions policy for repositories and allowed actions in an organization.\n\nYou must authenticate using an access token with the `admin:org` scope to use this endpoint. GitHub Apps must have the `administration` organization permission to use this API.",
"description": "Gets the GitHub Actions permissions policy for repositories and allowed actions and workflows in an organization.\n\nYou must authenticate using an access token with the `admin:org` scope to use this endpoint. GitHub Apps must have the `administration` organization permission to use this API.",
"operationId": "actions/get-github-actions-permissions-organization",
"tags": [
"actions"
@@ -55436,7 +55436,7 @@
},
"allowed_actions": {
"type": "string",
"description": "The permissions policy that controls the actions that are allowed to run. Can be one of: `all`, `local_only`, or `selected`.",
"description": "The permissions policy that controls the actions and workflows that are allowed to run. Can be one of: `all`, `local_only`, or `selected`.",
"enum": [
"all",
"local_only",
@@ -55445,7 +55445,7 @@
},
"selected_actions_url": {
"type": "string",
"description": "The API URL to use to get or set the actions that are allowed to run, when `allowed_actions` is set to `selected`."
"description": "The API URL to use to get or set the actions and workflows that are allowed to run, when `allowed_actions` is set to `selected`."
}
},
"required": [
@@ -55474,7 +55474,7 @@
},
"put": {
"summary": "Set GitHub Actions permissions for an organization",
"description": "Sets the GitHub Actions permissions policy for repositories and allowed actions in an organization.\n\nIf the organization belongs to an enterprise that has set restrictive permissions at the enterprise level, such as `allowed_actions` to `selected` actions, then you cannot override them for the organization.\n\nYou must authenticate using an access token with the `admin:org` scope to use this endpoint. GitHub Apps must have the `administration` organization permission to use this API.",
"description": "Sets the GitHub Actions permissions policy for repositories and allowed actions and workflows in an organization.\n\nIf the organization belongs to an enterprise that has set restrictive permissions at the enterprise level, such as `allowed_actions` to `selected` actions and workflows, then you cannot override them for the organization.\n\nYou must authenticate using an access token with the `admin:org` scope to use this endpoint. GitHub Apps must have the `administration` organization permission to use this API.",
"operationId": "actions/set-github-actions-permissions-organization",
"tags": [
"actions"
@@ -55516,7 +55516,7 @@
},
"allowed_actions": {
"type": "string",
"description": "The permissions policy that controls the actions that are allowed to run. Can be one of: `all`, `local_only`, or `selected`.",
"description": "The permissions policy that controls the actions and workflows that are allowed to run. Can be one of: `all`, `local_only`, or `selected`.",
"enum": [
"all",
"local_only",
@@ -56997,8 +56997,8 @@
},
"/orgs/{org}/actions/permissions/selected-actions": {
"get": {
"summary": "Get allowed actions for an organization",
"description": "Gets the selected actions that are allowed in an organization. To use this endpoint, the organization permission policy for `allowed_actions` must be configured to `selected`. For more information, see \"[Set GitHub Actions permissions for an organization](#set-github-actions-permissions-for-an-organization).\"\"\n\nYou must authenticate using an access token with the `admin:org` scope to use this endpoint. GitHub Apps must have the `administration` organization permission to use this API.",
"summary": "Get allowed actions and workflows for an organization",
"description": "Gets the selected actions and workflows that are allowed in an organization. To use this endpoint, the organization permission policy for `allowed_actions` must be configured to `selected`. For more information, see \"[Set GitHub Actions permissions for an organization](#set-github-actions-permissions-for-an-organization).\"\"\n\nYou must authenticate using an access token with the `admin:org` scope to use this endpoint. GitHub Apps must have the `administration` organization permission to use this API.",
"operationId": "actions/get-allowed-actions-organization",
"tags": [
"actions"
@@ -57031,11 +57031,11 @@
},
"verified_allowed": {
"type": "boolean",
"description": "Whether actions in GitHub Marketplace from verified creators are allowed. Set to `true` to allow all GitHub Marketplace actions by verified creators."
"description": "Whether actions from GitHub Marketplace verified creators are allowed. Set to `true` to allow all actions by GitHub Marketplace verified creators."
},
"patterns_allowed": {
"type": "array",
"description": "Specifies a list of string-matching patterns to allow specific action(s). Wildcards, tags, and SHAs are allowed. For example, `monalisa/octocat@*`, `monalisa/octocat@v2`, `monalisa/*`.\"",
"description": "Specifies a list of string-matching patterns to allow specific action(s) and workflow(s). Wildcards, tags, and SHAs are allowed. For example, `monalisa/octocat@*`, `monalisa/octocat@v2`, `monalisa/*`.\"",
"items": {
"type": "string"
}
@@ -57066,8 +57066,8 @@
}
},
"put": {
"summary": "Set allowed actions for an organization",
"description": "Sets the actions that are allowed in an organization. To use this endpoint, the organization permission policy for `allowed_actions` must be configured to `selected`. For more information, see \"[Set GitHub Actions permissions for an organization](#set-github-actions-permissions-for-an-organization).\"\n\nIf the organization belongs to an enterprise that has `selected` actions set at the enterprise level, then you cannot override any of the enterprise's allowed actions settings.\n\nTo use the `patterns_allowed` setting for private repositories, the organization must belong to an enterprise. If the organization does not belong to an enterprise, then the `patterns_allowed` setting only applies to public repositories in the organization.\n\nYou must authenticate using an access token with the `admin:org` scope to use this endpoint. GitHub Apps must have the `administration` organization permission to use this API.",
"summary": "Set allowed actions and workflows for an organization",
"description": "Sets the actions and workflows that are allowed in an organization. To use this endpoint, the organization permission policy for `allowed_actions` must be configured to `selected`. For more information, see \"[Set GitHub Actions permissions for an organization](#set-github-actions-permissions-for-an-organization).\"\n\nIf the organization belongs to an enterprise that has `selected` actions and workflows set at the enterprise level, then you cannot override any of the enterprise's allowed actions and workflows settings.\n\nTo use the `patterns_allowed` setting for private repositories, the organization must belong to an enterprise. If the organization does not belong to an enterprise, then the `patterns_allowed` setting only applies to public repositories in the organization.\n\nYou must authenticate using an access token with the `admin:org` scope to use this endpoint. GitHub Apps must have the `administration` organization permission to use this API.",
"operationId": "actions/set-allowed-actions-organization",
"tags": [
"actions"
@@ -57104,11 +57104,11 @@
},
"verified_allowed": {
"type": "boolean",
"description": "Whether actions in GitHub Marketplace from verified creators are allowed. Set to `true` to allow all GitHub Marketplace actions by verified creators."
"description": "Whether actions from GitHub Marketplace verified creators are allowed. Set to `true` to allow all actions by GitHub Marketplace verified creators."
},
"patterns_allowed": {
"type": "array",
"description": "Specifies a list of string-matching patterns to allow specific action(s). Wildcards, tags, and SHAs are allowed. For example, `monalisa/octocat@*`, `monalisa/octocat@v2`, `monalisa/*`.\"",
"description": "Specifies a list of string-matching patterns to allow specific action(s) and workflow(s). Wildcards, tags, and SHAs are allowed. For example, `monalisa/octocat@*`, `monalisa/octocat@v2`, `monalisa/*`.\"",
"items": {
"type": "string"
}
@@ -135757,7 +135757,7 @@
"/repos/{owner}/{repo}/actions/permissions": {
"get": {
"summary": "Get GitHub Actions permissions for a repository",
"description": "Gets the GitHub Actions permissions policy for a repository, including whether GitHub Actions is enabled and the actions allowed to run in the repository.\n\nYou must authenticate using an access token with the `repo` scope to use this\nendpoint. GitHub Apps must have the `administration` repository permission to use this API.",
"description": "Gets the GitHub Actions permissions policy for a repository, including whether GitHub Actions is enabled and the actions and workflows allowed to run in the repository.\n\nYou must authenticate using an access token with the `repo` scope to use this\nendpoint. GitHub Apps must have the `administration` repository permission to use this API.",
"operationId": "actions/get-github-actions-permissions-repository",
"tags": [
"actions"
@@ -135798,7 +135798,7 @@
},
"allowed_actions": {
"type": "string",
"description": "The permissions policy that controls the actions that are allowed to run. Can be one of: `all`, `local_only`, or `selected`.",
"description": "The permissions policy that controls the actions and workflows that are allowed to run. Can be one of: `all`, `local_only`, or `selected`.",
"enum": [
"all",
"local_only",
@@ -135807,7 +135807,7 @@
},
"selected_actions_url": {
"type": "string",
"description": "The API URL to use to get or set the actions that are allowed to run, when `allowed_actions` is set to `selected`."
"description": "The API URL to use to get or set the actions and workflows that are allowed to run, when `allowed_actions` is set to `selected`."
}
},
"required": [
@@ -135836,7 +135836,7 @@
},
"put": {
"summary": "Set GitHub Actions permissions for a repository",
"description": "Sets the GitHub Actions permissions policy for enabling GitHub Actions and allowed actions in the repository.\n\nIf the repository belongs to an organization or enterprise that has set restrictive permissions at the organization or enterprise levels, such as `allowed_actions` to `selected` actions, then you cannot override them for the repository.\n\nYou must authenticate using an access token with the `repo` scope to use this endpoint. GitHub Apps must have the `administration` repository permission to use this API.",
"description": "Sets the GitHub Actions permissions policy for enabling GitHub Actions and allowed actions and workflows in the repository.\n\nIf the repository belongs to an organization or enterprise that has set restrictive permissions at the organization or enterprise levels, such as `allowed_actions` to `selected` actions and workflows, then you cannot override them for the repository.\n\nYou must authenticate using an access token with the `repo` scope to use this endpoint. GitHub Apps must have the `administration` repository permission to use this API.",
"operationId": "actions/set-github-actions-permissions-repository",
"tags": [
"actions"
@@ -135881,7 +135881,7 @@
},
"allowed_actions": {
"type": "string",
"description": "The permissions policy that controls the actions that are allowed to run. Can be one of: `all`, `local_only`, or `selected`.",
"description": "The permissions policy that controls the actions and workflows that are allowed to run. Can be one of: `all`, `local_only`, or `selected`.",
"enum": [
"all",
"local_only",
@@ -136059,8 +136059,8 @@
},
"/repos/{owner}/{repo}/actions/permissions/selected-actions": {
"get": {
"summary": "Get allowed actions for a repository",
"description": "Gets the settings for selected actions that are allowed in a repository. To use this endpoint, the repository policy for `allowed_actions` must be configured to `selected`. For more information, see \"[Set GitHub Actions permissions for a repository](#set-github-actions-permissions-for-a-repository).\"\n\nYou must authenticate using an access token with the `repo` scope to use this endpoint. GitHub Apps must have the `administration` repository permission to use this API.",
"summary": "Get allowed actions and workflows for a repository",
"description": "Gets the settings for selected actions and workflows that are allowed in a repository. To use this endpoint, the repository policy for `allowed_actions` must be configured to `selected`. For more information, see \"[Set GitHub Actions permissions for a repository](#set-github-actions-permissions-for-a-repository).\"\n\nYou must authenticate using an access token with the `repo` scope to use this endpoint. GitHub Apps must have the `administration` repository permission to use this API.",
"operationId": "actions/get-allowed-actions-repository",
"tags": [
"actions"
@@ -136101,11 +136101,11 @@
},
"verified_allowed": {
"type": "boolean",
"description": "Whether actions in GitHub Marketplace from verified creators are allowed. Set to `true` to allow all GitHub Marketplace actions by verified creators."
"description": "Whether actions from GitHub Marketplace verified creators are allowed. Set to `true` to allow all actions by GitHub Marketplace verified creators."
},
"patterns_allowed": {
"type": "array",
"description": "Specifies a list of string-matching patterns to allow specific action(s). Wildcards, tags, and SHAs are allowed. For example, `monalisa/octocat@*`, `monalisa/octocat@v2`, `monalisa/*`.\"",
"description": "Specifies a list of string-matching patterns to allow specific action(s) and workflow(s). Wildcards, tags, and SHAs are allowed. For example, `monalisa/octocat@*`, `monalisa/octocat@v2`, `monalisa/*`.\"",
"items": {
"type": "string"
}
@@ -136136,8 +136136,8 @@
}
},
"put": {
"summary": "Set allowed actions for a repository",
"description": "Sets the actions that are allowed in a repository. To use this endpoint, the repository permission policy for `allowed_actions` must be configured to `selected`. For more information, see \"[Set GitHub Actions permissions for a repository](#set-github-actions-permissions-for-a-repository).\"\n\nIf the repository belongs to an organization or enterprise that has `selected` actions set at the organization or enterprise levels, then you cannot override any of the allowed actions settings.\n\nTo use the `patterns_allowed` setting for private repositories, the repository must belong to an enterprise. If the repository does not belong to an enterprise, then the `patterns_allowed` setting only applies to public repositories.\n\nYou must authenticate using an access token with the `repo` scope to use this endpoint. GitHub Apps must have the `administration` repository permission to use this API.",
"summary": "Set allowed actions and workflows for a repository",
"description": "Sets the actions and workflows that are allowed in a repository. To use this endpoint, the repository permission policy for `allowed_actions` must be configured to `selected`. For more information, see \"[Set GitHub Actions permissions for a repository](#set-github-actions-permissions-for-a-repository).\"\n\nIf the repository belongs to an organization or enterprise that has `selected` actions and workflows set at the organization or enterprise levels, then you cannot override any of the allowed actions and workflows settings.\n\nTo use the `patterns_allowed` setting for private repositories, the repository must belong to an enterprise. If the repository does not belong to an enterprise, then the `patterns_allowed` setting only applies to public repositories.\n\nYou must authenticate using an access token with the `repo` scope to use this endpoint. GitHub Apps must have the `administration` repository permission to use this API.",
"operationId": "actions/set-allowed-actions-repository",
"tags": [
"actions"
@@ -136182,11 +136182,11 @@
},
"verified_allowed": {
"type": "boolean",
"description": "Whether actions in GitHub Marketplace from verified creators are allowed. Set to `true` to allow all GitHub Marketplace actions by verified creators."
"description": "Whether actions from GitHub Marketplace verified creators are allowed. Set to `true` to allow all actions by GitHub Marketplace verified creators."
},
"patterns_allowed": {
"type": "array",
"description": "Specifies a list of string-matching patterns to allow specific action(s). Wildcards, tags, and SHAs are allowed. For example, `monalisa/octocat@*`, `monalisa/octocat@v2`, `monalisa/*`.\"",
"description": "Specifies a list of string-matching patterns to allow specific action(s) and workflow(s). Wildcards, tags, and SHAs are allowed. For example, `monalisa/octocat@*`, `monalisa/octocat@v2`, `monalisa/*`.\"",
"items": {
"type": "string"
}
@@ -144128,6 +144128,8 @@
"id": 30433642,
"name": "Build",
"node_id": "MDEyOldvcmtmbG93IFJ1bjI2OTI4OQ==",
"check_suite_id": 42,
"check_suite_node_id": "MDEwOkNoZWNrU3VpdGU0Mg==",
"head_branch": "master",
"head_sha": "acb5820ced9479c074f688cc328bf03f341a511d",
"run_number": 562,
@@ -144142,6 +144144,48 @@
],
"created_at": "2020-01-22T19:33:08Z",
"updated_at": "2020-01-22T19:33:08Z",
"actor": {
"login": "octocat",
"id": 1,
"node_id": "MDQ6VXNlcjE=",
"avatar_url": "https://github.com/images/error/octocat_happy.gif",
"gravatar_id": "",
"url": "https://api.github.com/users/octocat",
"html_url": "https://github.com/octocat",
"followers_url": "https://api.github.com/users/octocat/followers",
"following_url": "https://api.github.com/users/octocat/following{/other_user}",
"gists_url": "https://api.github.com/users/octocat/gists{/gist_id}",
"starred_url": "https://api.github.com/users/octocat/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/octocat/subscriptions",
"organizations_url": "https://api.github.com/users/octocat/orgs",
"repos_url": "https://api.github.com/users/octocat/repos",
"events_url": "https://api.github.com/users/octocat/events{/privacy}",
"received_events_url": "https://api.github.com/users/octocat/received_events",
"type": "User",
"site_admin": false
},
"run_attempt": 1,
"run_started_at": "2020-01-22T19:33:08Z",
"triggering_actor": {
"login": "octocat",
"id": 1,
"node_id": "MDQ6VXNlcjE=",
"avatar_url": "https://github.com/images/error/octocat_happy.gif",
"gravatar_id": "",
"url": "https://api.github.com/users/octocat",
"html_url": "https://github.com/octocat",
"followers_url": "https://api.github.com/users/octocat/followers",
"following_url": "https://api.github.com/users/octocat/following{/other_user}",
"gists_url": "https://api.github.com/users/octocat/gists{/gist_id}",
"starred_url": "https://api.github.com/users/octocat/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/octocat/subscriptions",
"organizations_url": "https://api.github.com/users/octocat/orgs",
"repos_url": "https://api.github.com/users/octocat/repos",
"events_url": "https://api.github.com/users/octocat/events{/privacy}",
"received_events_url": "https://api.github.com/users/octocat/received_events",
"type": "User",
"site_admin": false
},
"jobs_url": "https://api.github.com/repos/octo-org/octo-repo/actions/runs/30433642/jobs",
"logs_url": "https://api.github.com/repos/octo-org/octo-repo/actions/runs/30433642/logs",
"check_suite_url": "https://api.github.com/repos/octo-org/octo-repo/check-suites/414944374",
@@ -148321,6 +148365,8 @@
"type": "User",
"site_admin": false
},
"run_attempt": 1,
"run_started_at": "2020-01-22T19:33:08Z",
"triggering_actor": {
"login": "octocat",
"id": 1,
@@ -153168,6 +153214,8 @@
"type": "User",
"site_admin": false
},
"run_attempt": 1,
"run_started_at": "2020-01-22T19:33:08Z",
"triggering_actor": {
"login": "octocat",
"id": 1,
@@ -161009,6 +161057,8 @@
"id": 30433642,
"name": "Build",
"node_id": "MDEyOldvcmtmbG93IFJ1bjI2OTI4OQ==",
"check_suite_id": 42,
"check_suite_node_id": "MDEwOkNoZWNrU3VpdGU0Mg==",
"head_branch": "master",
"head_sha": "acb5820ced9479c074f688cc328bf03f341a511d",
"run_number": 562,
@@ -161023,6 +161073,48 @@
],
"created_at": "2020-01-22T19:33:08Z",
"updated_at": "2020-01-22T19:33:08Z",
"actor": {
"login": "octocat",
"id": 1,
"node_id": "MDQ6VXNlcjE=",
"avatar_url": "https://github.com/images/error/octocat_happy.gif",
"gravatar_id": "",
"url": "https://api.github.com/users/octocat",
"html_url": "https://github.com/octocat",
"followers_url": "https://api.github.com/users/octocat/followers",
"following_url": "https://api.github.com/users/octocat/following{/other_user}",
"gists_url": "https://api.github.com/users/octocat/gists{/gist_id}",
"starred_url": "https://api.github.com/users/octocat/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/octocat/subscriptions",
"organizations_url": "https://api.github.com/users/octocat/orgs",
"repos_url": "https://api.github.com/users/octocat/repos",
"events_url": "https://api.github.com/users/octocat/events{/privacy}",
"received_events_url": "https://api.github.com/users/octocat/received_events",
"type": "User",
"site_admin": false
},
"run_attempt": 1,
"run_started_at": "2020-01-22T19:33:08Z",
"triggering_actor": {
"login": "octocat",
"id": 1,
"node_id": "MDQ6VXNlcjE=",
"avatar_url": "https://github.com/images/error/octocat_happy.gif",
"gravatar_id": "",
"url": "https://api.github.com/users/octocat",
"html_url": "https://github.com/octocat",
"followers_url": "https://api.github.com/users/octocat/followers",
"following_url": "https://api.github.com/users/octocat/following{/other_user}",
"gists_url": "https://api.github.com/users/octocat/gists{/gist_id}",
"starred_url": "https://api.github.com/users/octocat/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/octocat/subscriptions",
"organizations_url": "https://api.github.com/users/octocat/orgs",
"repos_url": "https://api.github.com/users/octocat/repos",
"events_url": "https://api.github.com/users/octocat/events{/privacy}",
"received_events_url": "https://api.github.com/users/octocat/received_events",
"type": "User",
"site_admin": false
},
"jobs_url": "https://api.github.com/repos/octo-org/octo-repo/actions/runs/30433642/jobs",
"logs_url": "https://api.github.com/repos/octo-org/octo-repo/actions/runs/30433642/logs",
"check_suite_url": "https://api.github.com/repos/octo-org/octo-repo/check-suites/414944374",
@@ -198683,16 +198775,14 @@
"application/json": {
"schema": {
"type": "object",
"required": [
"location"
],
"nullable": true,
"properties": {
"ref": {
"description": "Git ref (typically a branch name) for this codespace",
"type": "string"
},
"location": {
"description": "Location for this codespace",
"description": "Location for this codespace. Assigned by IP if not provided",
"type": "string"
},
"machine": {
@@ -203447,7 +203537,7 @@
"/repos/{owner}/{repo}/codespaces/machines": {
"get": {
"summary": "List available machine types for a repository",
"description": "List the machine types available for a given repository based on its configuration.\n\nLocation is required.\n\nYou must authenticate using an access token with the `codespace` scope to use this endpoint.",
"description": "List the machine types available for a given repository based on its configuration.\n\nYou must authenticate using an access token with the `codespace` scope to use this endpoint.",
"tags": [
"codespaces"
],
@@ -203475,9 +203565,8 @@
},
{
"name": "location",
"description": "Required. The location to check for available machines.",
"description": "The location to check for available machines. Assigned by IP if not provided.",
"in": "query",
"required": true,
"schema": {
"type": "string",
"example": "WestUs2"
@@ -333142,12 +333231,10 @@
"application/json": {
"schema": {
"type": "object",
"required": [
"location"
],
"nullable": true,
"properties": {
"location": {
"description": "Location for this codespace",
"description": "Location for this codespace. Assigned by IP if not provided",
"type": "string"
},
"machine": {
@@ -402775,8 +402862,7 @@
{
"type": "object",
"required": [
"repository_id",
"location"
"repository_id"
],
"properties": {
"repository_id": {
@@ -402788,7 +402874,7 @@
"type": "string"
},
"location": {
"description": "Location for this codespace",
"description": "Location for this codespace. Assigned by IP if not provided",
"type": "string"
},
"machine": {
@@ -402812,8 +402898,7 @@
{
"type": "object",
"required": [
"pull_request",
"location"
"pull_request"
],
"properties": {
"pull_request": {
@@ -402835,7 +402920,7 @@
}
},
"location": {
"description": "Location for this codespace",
"description": "Location for this codespace. Assigned by IP if not provided",
"type": "string"
},
"machine": {
@@ -408145,7 +408230,6 @@
}
},
"required": [
"encrypted_value",
"key_id"
]
},

View File

@@ -110852,11 +110852,6 @@
"type": "string",
"example": "https://api.github.com/repos/github/hello-world/actions/runs/5"
},
"run_attempt": {
"type": "integer",
"description": "Attempt number of the associated workflow run, 1 for first attempt and higher if the workflow was re-run.",
"example": 1
},
"node_id": {
"type": "string",
"example": "MDg6Q2hlY2tSdW40"
@@ -114580,11 +114575,6 @@
"description": "The auto incrementing run number for the workflow run.",
"example": 106
},
"run_attempt": {
"type": "integer",
"description": "Attempt number of the run, 1 for first attempt and higher if the workflow was re-run.",
"example": 1
},
"event": {
"type": "string",
"example": "push"
@@ -114717,11 +114707,6 @@
"type": "string",
"format": "date-time"
},
"run_started_at": {
"type": "string",
"format": "date-time",
"description": "The start time of the latest run. Resets on re-run."
},
"jobs_url": {
"description": "The URL to the jobs for the workflow run.",
"type": "string",
@@ -118184,6 +118169,8 @@
"id": 30433642,
"name": "Build",
"node_id": "MDEyOldvcmtmbG93IFJ1bjI2OTI4OQ==",
"check_suite_id": 42,
"check_suite_node_id": "MDEwOkNoZWNrU3VpdGU0Mg==",
"head_branch": "master",
"head_sha": "acb5820ced9479c074f688cc328bf03f341a511d",
"run_number": 562,
@@ -118479,11 +118466,6 @@
"description": "The auto incrementing run number for the workflow run.",
"example": 106
},
"run_attempt": {
"type": "integer",
"description": "Attempt number of the run, 1 for first attempt and higher if the workflow was re-run.",
"example": 1
},
"event": {
"type": "string",
"example": "push"
@@ -118616,11 +118598,6 @@
"type": "string",
"format": "date-time"
},
"run_started_at": {
"type": "string",
"format": "date-time",
"description": "The start time of the latest run. Resets on re-run."
},
"jobs_url": {
"description": "The URL to the jobs for the workflow run.",
"type": "string",
@@ -122703,11 +122680,6 @@
"type": "string",
"example": "https://api.github.com/repos/github/hello-world/actions/runs/5"
},
"run_attempt": {
"type": "integer",
"description": "Attempt number of the associated workflow run, 1 for first attempt and higher if the workflow was re-run.",
"example": 1
},
"node_id": {
"type": "string",
"example": "MDg6Q2hlY2tSdW40"
@@ -122938,7 +122910,16 @@
"completed_at": "2020-01-20T09:44:39.000-08:00"
}
],
"check_run_url": "https://api.github.com/repos/octo-org/octo-repo/check-runs/399444496"
"check_run_url": "https://api.github.com/repos/octo-org/octo-repo/check-runs/399444496",
"labels": [
"self-hosted",
"foo",
"bar"
],
"runner_id": 1,
"runner_name": "my runner",
"runner_group_id": 2,
"runner_group_name": "my runner group"
}
]
}
@@ -124396,11 +124377,6 @@
"description": "The auto incrementing run number for the workflow run.",
"example": 106
},
"run_attempt": {
"type": "integer",
"description": "Attempt number of the run, 1 for first attempt and higher if the workflow was re-run.",
"example": 1
},
"event": {
"type": "string",
"example": "push"
@@ -124533,11 +124509,6 @@
"type": "string",
"format": "date-time"
},
"run_started_at": {
"type": "string",
"format": "date-time",
"description": "The start time of the latest run. Resets on re-run."
},
"jobs_url": {
"description": "The URL to the jobs for the workflow run.",
"type": "string",
@@ -128000,6 +127971,8 @@
"id": 30433642,
"name": "Build",
"node_id": "MDEyOldvcmtmbG93IFJ1bjI2OTI4OQ==",
"check_suite_id": 42,
"check_suite_node_id": "MDEwOkNoZWNrU3VpdGU0Mg==",
"head_branch": "master",
"head_sha": "acb5820ced9479c074f688cc328bf03f341a511d",
"run_number": 562,

View File

@@ -113037,11 +113037,6 @@
"type": "string",
"example": "https://api.github.com/repos/github/hello-world/actions/runs/5"
},
"run_attempt": {
"type": "integer",
"description": "Attempt number of the associated workflow run, 1 for first attempt and higher if the workflow was re-run.",
"example": 1
},
"node_id": {
"type": "string",
"example": "MDg6Q2hlY2tSdW40"
@@ -116793,11 +116788,6 @@
"description": "The auto incrementing run number for the workflow run.",
"example": 106
},
"run_attempt": {
"type": "integer",
"description": "Attempt number of the run, 1 for first attempt and higher if the workflow was re-run.",
"example": 1
},
"event": {
"type": "string",
"example": "push"
@@ -116930,11 +116920,6 @@
"type": "string",
"format": "date-time"
},
"run_started_at": {
"type": "string",
"format": "date-time",
"description": "The start time of the latest run. Resets on re-run."
},
"jobs_url": {
"description": "The URL to the jobs for the workflow run.",
"type": "string",
@@ -120415,6 +120400,8 @@
"id": 30433642,
"name": "Build",
"node_id": "MDEyOldvcmtmbG93IFJ1bjI2OTI4OQ==",
"check_suite_id": 42,
"check_suite_node_id": "MDEwOkNoZWNrU3VpdGU0Mg==",
"head_branch": "master",
"head_sha": "acb5820ced9479c074f688cc328bf03f341a511d",
"run_number": 562,
@@ -120710,11 +120697,6 @@
"description": "The auto incrementing run number for the workflow run.",
"example": 106
},
"run_attempt": {
"type": "integer",
"description": "Attempt number of the run, 1 for first attempt and higher if the workflow was re-run.",
"example": 1
},
"event": {
"type": "string",
"example": "push"
@@ -120847,11 +120829,6 @@
"type": "string",
"format": "date-time"
},
"run_started_at": {
"type": "string",
"format": "date-time",
"description": "The start time of the latest run. Resets on re-run."
},
"jobs_url": {
"description": "The URL to the jobs for the workflow run.",
"type": "string",
@@ -125241,11 +125218,6 @@
"type": "string",
"example": "https://api.github.com/repos/github/hello-world/actions/runs/5"
},
"run_attempt": {
"type": "integer",
"description": "Attempt number of the associated workflow run, 1 for first attempt and higher if the workflow was re-run.",
"example": 1
},
"node_id": {
"type": "string",
"example": "MDg6Q2hlY2tSdW40"
@@ -125476,7 +125448,16 @@
"completed_at": "2020-01-20T09:44:39.000-08:00"
}
],
"check_run_url": "https://api.github.com/repos/octo-org/octo-repo/check-runs/399444496"
"check_run_url": "https://api.github.com/repos/octo-org/octo-repo/check-runs/399444496",
"labels": [
"self-hosted",
"foo",
"bar"
],
"runner_id": 1,
"runner_name": "my runner",
"runner_group_id": 2,
"runner_group_name": "my runner group"
}
]
}
@@ -128033,11 +128014,6 @@
"description": "The auto incrementing run number for the workflow run.",
"example": 106
},
"run_attempt": {
"type": "integer",
"description": "Attempt number of the run, 1 for first attempt and higher if the workflow was re-run.",
"example": 1
},
"event": {
"type": "string",
"example": "push"
@@ -128170,11 +128146,6 @@
"type": "string",
"format": "date-time"
},
"run_started_at": {
"type": "string",
"format": "date-time",
"description": "The start time of the latest run. Resets on re-run."
},
"jobs_url": {
"description": "The URL to the jobs for the workflow run.",
"type": "string",
@@ -131655,6 +131626,8 @@
"id": 30433642,
"name": "Build",
"node_id": "MDEyOldvcmtmbG93IFJ1bjI2OTI4OQ==",
"check_suite_id": 42,
"check_suite_node_id": "MDEwOkNoZWNrU3VpdGU0Mg==",
"head_branch": "master",
"head_sha": "acb5820ced9479c074f688cc328bf03f341a511d",
"run_number": 562,

View File

@@ -119178,11 +119178,6 @@
"description": "The auto incrementing run number for the workflow run.",
"example": 106
},
"run_attempt": {
"type": "integer",
"description": "Attempt number of the run, 1 for first attempt and higher if the workflow was re-run.",
"example": 1
},
"event": {
"type": "string",
"example": "push"
@@ -119315,11 +119310,6 @@
"type": "string",
"format": "date-time"
},
"run_started_at": {
"type": "string",
"format": "date-time",
"description": "The start time of the latest run. Resets on re-run."
},
"jobs_url": {
"description": "The URL to the jobs for the workflow run.",
"type": "string",
@@ -122800,6 +122790,8 @@
"id": 30433642,
"name": "Build",
"node_id": "MDEyOldvcmtmbG93IFJ1bjI2OTI4OQ==",
"check_suite_id": 42,
"check_suite_node_id": "MDEwOkNoZWNrU3VpdGU0Mg==",
"head_branch": "master",
"head_sha": "acb5820ced9479c074f688cc328bf03f341a511d",
"run_number": 562,
@@ -123095,11 +123087,6 @@
"description": "The auto incrementing run number for the workflow run.",
"example": 106
},
"run_attempt": {
"type": "integer",
"description": "Attempt number of the run, 1 for first attempt and higher if the workflow was re-run.",
"example": 1
},
"event": {
"type": "string",
"example": "push"
@@ -123232,11 +123219,6 @@
"type": "string",
"format": "date-time"
},
"run_started_at": {
"type": "string",
"format": "date-time",
"description": "The start time of the latest run. Resets on re-run."
},
"jobs_url": {
"description": "The URL to the jobs for the workflow run.",
"type": "string",
@@ -130468,11 +130450,6 @@
"description": "The auto incrementing run number for the workflow run.",
"example": 106
},
"run_attempt": {
"type": "integer",
"description": "Attempt number of the run, 1 for first attempt and higher if the workflow was re-run.",
"example": 1
},
"event": {
"type": "string",
"example": "push"
@@ -130605,11 +130582,6 @@
"type": "string",
"format": "date-time"
},
"run_started_at": {
"type": "string",
"format": "date-time",
"description": "The start time of the latest run. Resets on re-run."
},
"jobs_url": {
"description": "The URL to the jobs for the workflow run.",
"type": "string",
@@ -134090,6 +134062,8 @@
"id": 30433642,
"name": "Build",
"node_id": "MDEyOldvcmtmbG93IFJ1bjI2OTI4OQ==",
"check_suite_id": 42,
"check_suite_node_id": "MDEwOkNoZWNrU3VpdGU0Mg==",
"head_branch": "master",
"head_sha": "acb5820ced9479c074f688cc328bf03f341a511d",
"run_number": 562,

View File

@@ -130310,11 +130310,6 @@
"description": "The auto incrementing run number for the workflow run.",
"example": 106
},
"run_attempt": {
"type": "integer",
"description": "Attempt number of the run, 1 for first attempt and higher if the workflow was re-run.",
"example": 1
},
"event": {
"type": "string",
"example": "push"
@@ -130447,11 +130442,6 @@
"type": "string",
"format": "date-time"
},
"run_started_at": {
"type": "string",
"format": "date-time",
"description": "The start time of the latest run. Resets on re-run."
},
"jobs_url": {
"description": "The URL to the jobs for the workflow run.",
"type": "string",
@@ -133932,6 +133922,8 @@
"id": 30433642,
"name": "Build",
"node_id": "MDEyOldvcmtmbG93IFJ1bjI2OTI4OQ==",
"check_suite_id": 42,
"check_suite_node_id": "MDEwOkNoZWNrU3VpdGU0Mg==",
"head_branch": "master",
"head_sha": "acb5820ced9479c074f688cc328bf03f341a511d",
"run_number": 562,
@@ -134227,11 +134219,6 @@
"description": "The auto incrementing run number for the workflow run.",
"example": 106
},
"run_attempt": {
"type": "integer",
"description": "Attempt number of the run, 1 for first attempt and higher if the workflow was re-run.",
"example": 1
},
"event": {
"type": "string",
"example": "push"
@@ -134364,11 +134351,6 @@
"type": "string",
"format": "date-time"
},
"run_started_at": {
"type": "string",
"format": "date-time",
"description": "The start time of the latest run. Resets on re-run."
},
"jobs_url": {
"description": "The URL to the jobs for the workflow run.",
"type": "string",
@@ -141600,11 +141582,6 @@
"description": "The auto incrementing run number for the workflow run.",
"example": 106
},
"run_attempt": {
"type": "integer",
"description": "Attempt number of the run, 1 for first attempt and higher if the workflow was re-run.",
"example": 1
},
"event": {
"type": "string",
"example": "push"
@@ -141737,11 +141714,6 @@
"type": "string",
"format": "date-time"
},
"run_started_at": {
"type": "string",
"format": "date-time",
"description": "The start time of the latest run. Resets on re-run."
},
"jobs_url": {
"description": "The URL to the jobs for the workflow run.",
"type": "string",
@@ -145222,6 +145194,8 @@
"id": 30433642,
"name": "Build",
"node_id": "MDEyOldvcmtmbG93IFJ1bjI2OTI4OQ==",
"check_suite_id": 42,
"check_suite_node_id": "MDEwOkNoZWNrU3VpdGU0Mg==",
"head_branch": "master",
"head_sha": "acb5820ced9479c074f688cc328bf03f341a511d",
"run_number": 562,

View File

@@ -14280,7 +14280,7 @@
},
"verified_allowed": {
"type": "boolean",
"description": "Whether actions in GitHub Marketplace from verified creators are allowed. Set to `true` to allow all GitHub Marketplace actions by verified creators."
"description": "Whether actions from GitHub Marketplace verified creators are allowed. Set to `true` to allow all actions by GitHub Marketplace verified creators."
},
"patterns_allowed": {
"type": "array",
@@ -14354,7 +14354,7 @@
},
"verified_allowed": {
"type": "boolean",
"description": "Whether actions in GitHub Marketplace from verified creators are allowed. Set to `true` to allow all GitHub Marketplace actions by verified creators."
"description": "Whether actions from GitHub Marketplace verified creators are allowed. Set to `true` to allow all actions by GitHub Marketplace verified creators."
},
"patterns_allowed": {
"type": "array",
@@ -38528,7 +38528,7 @@
},
"verified_allowed": {
"type": "boolean",
"description": "Whether actions in GitHub Marketplace from verified creators are allowed. Set to `true` to allow all GitHub Marketplace actions by verified creators."
"description": "Whether actions from GitHub Marketplace verified creators are allowed. Set to `true` to allow all actions by GitHub Marketplace verified creators."
},
"patterns_allowed": {
"type": "array",
@@ -38601,7 +38601,7 @@
},
"verified_allowed": {
"type": "boolean",
"description": "Whether actions in GitHub Marketplace from verified creators are allowed. Set to `true` to allow all GitHub Marketplace actions by verified creators."
"description": "Whether actions from GitHub Marketplace verified creators are allowed. Set to `true` to allow all actions by GitHub Marketplace verified creators."
},
"patterns_allowed": {
"type": "array",
@@ -88529,7 +88529,7 @@
},
"verified_allowed": {
"type": "boolean",
"description": "Whether actions in GitHub Marketplace from verified creators are allowed. Set to `true` to allow all GitHub Marketplace actions by verified creators."
"description": "Whether actions from GitHub Marketplace verified creators are allowed. Set to `true` to allow all actions by GitHub Marketplace verified creators."
},
"patterns_allowed": {
"type": "array",
@@ -88610,7 +88610,7 @@
},
"verified_allowed": {
"type": "boolean",
"description": "Whether actions in GitHub Marketplace from verified creators are allowed. Set to `true` to allow all GitHub Marketplace actions by verified creators."
"description": "Whether actions from GitHub Marketplace verified creators are allowed. Set to `true` to allow all actions by GitHub Marketplace verified creators."
},
"patterns_allowed": {
"type": "array",
@@ -92954,6 +92954,8 @@
"id": 30433642,
"name": "Build",
"node_id": "MDEyOldvcmtmbG93IFJ1bjI2OTI4OQ==",
"check_suite_id": 42,
"check_suite_node_id": "MDEwOkNoZWNrU3VpdGU0Mg==",
"head_branch": "master",
"head_sha": "acb5820ced9479c074f688cc328bf03f341a511d",
"run_number": 562,
@@ -92968,6 +92970,48 @@
],
"created_at": "2020-01-22T19:33:08Z",
"updated_at": "2020-01-22T19:33:08Z",
"actor": {
"login": "octocat",
"id": 1,
"node_id": "MDQ6VXNlcjE=",
"avatar_url": "https://github.com/images/error/octocat_happy.gif",
"gravatar_id": "",
"url": "https://api.github.com/users/octocat",
"html_url": "https://github.com/octocat",
"followers_url": "https://api.github.com/users/octocat/followers",
"following_url": "https://api.github.com/users/octocat/following{/other_user}",
"gists_url": "https://api.github.com/users/octocat/gists{/gist_id}",
"starred_url": "https://api.github.com/users/octocat/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/octocat/subscriptions",
"organizations_url": "https://api.github.com/users/octocat/orgs",
"repos_url": "https://api.github.com/users/octocat/repos",
"events_url": "https://api.github.com/users/octocat/events{/privacy}",
"received_events_url": "https://api.github.com/users/octocat/received_events",
"type": "User",
"site_admin": false
},
"run_attempt": 1,
"run_started_at": "2020-01-22T19:33:08Z",
"triggering_actor": {
"login": "octocat",
"id": 1,
"node_id": "MDQ6VXNlcjE=",
"avatar_url": "https://github.com/images/error/octocat_happy.gif",
"gravatar_id": "",
"url": "https://api.github.com/users/octocat",
"html_url": "https://github.com/octocat",
"followers_url": "https://api.github.com/users/octocat/followers",
"following_url": "https://api.github.com/users/octocat/following{/other_user}",
"gists_url": "https://api.github.com/users/octocat/gists{/gist_id}",
"starred_url": "https://api.github.com/users/octocat/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/octocat/subscriptions",
"organizations_url": "https://api.github.com/users/octocat/orgs",
"repos_url": "https://api.github.com/users/octocat/repos",
"events_url": "https://api.github.com/users/octocat/events{/privacy}",
"received_events_url": "https://api.github.com/users/octocat/received_events",
"type": "User",
"site_admin": false
},
"jobs_url": "https://api.github.com/repos/octo-org/octo-repo/actions/runs/30433642/jobs",
"logs_url": "https://api.github.com/repos/octo-org/octo-repo/actions/runs/30433642/logs",
"check_suite_url": "https://api.github.com/repos/octo-org/octo-repo/check-suites/414944374",
@@ -97139,6 +97183,8 @@
"type": "User",
"site_admin": false
},
"run_attempt": 1,
"run_started_at": "2020-01-22T19:33:08Z",
"triggering_actor": {
"login": "octocat",
"id": 1,
@@ -101573,6 +101619,8 @@
"type": "User",
"site_admin": false
},
"run_attempt": 1,
"run_started_at": "2020-01-22T19:33:08Z",
"triggering_actor": {
"login": "octocat",
"id": 1,
@@ -108299,6 +108347,8 @@
"id": 30433642,
"name": "Build",
"node_id": "MDEyOldvcmtmbG93IFJ1bjI2OTI4OQ==",
"check_suite_id": 42,
"check_suite_node_id": "MDEwOkNoZWNrU3VpdGU0Mg==",
"head_branch": "master",
"head_sha": "acb5820ced9479c074f688cc328bf03f341a511d",
"run_number": 562,
@@ -108313,6 +108363,48 @@
],
"created_at": "2020-01-22T19:33:08Z",
"updated_at": "2020-01-22T19:33:08Z",
"actor": {
"login": "octocat",
"id": 1,
"node_id": "MDQ6VXNlcjE=",
"avatar_url": "https://github.com/images/error/octocat_happy.gif",
"gravatar_id": "",
"url": "https://api.github.com/users/octocat",
"html_url": "https://github.com/octocat",
"followers_url": "https://api.github.com/users/octocat/followers",
"following_url": "https://api.github.com/users/octocat/following{/other_user}",
"gists_url": "https://api.github.com/users/octocat/gists{/gist_id}",
"starred_url": "https://api.github.com/users/octocat/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/octocat/subscriptions",
"organizations_url": "https://api.github.com/users/octocat/orgs",
"repos_url": "https://api.github.com/users/octocat/repos",
"events_url": "https://api.github.com/users/octocat/events{/privacy}",
"received_events_url": "https://api.github.com/users/octocat/received_events",
"type": "User",
"site_admin": false
},
"run_attempt": 1,
"run_started_at": "2020-01-22T19:33:08Z",
"triggering_actor": {
"login": "octocat",
"id": 1,
"node_id": "MDQ6VXNlcjE=",
"avatar_url": "https://github.com/images/error/octocat_happy.gif",
"gravatar_id": "",
"url": "https://api.github.com/users/octocat",
"html_url": "https://github.com/octocat",
"followers_url": "https://api.github.com/users/octocat/followers",
"following_url": "https://api.github.com/users/octocat/following{/other_user}",
"gists_url": "https://api.github.com/users/octocat/gists{/gist_id}",
"starred_url": "https://api.github.com/users/octocat/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/octocat/subscriptions",
"organizations_url": "https://api.github.com/users/octocat/orgs",
"repos_url": "https://api.github.com/users/octocat/repos",
"events_url": "https://api.github.com/users/octocat/events{/privacy}",
"received_events_url": "https://api.github.com/users/octocat/received_events",
"type": "User",
"site_admin": false
},
"jobs_url": "https://api.github.com/repos/octo-org/octo-repo/actions/runs/30433642/jobs",
"logs_url": "https://api.github.com/repos/octo-org/octo-repo/actions/runs/30433642/logs",
"check_suite_url": "https://api.github.com/repos/octo-org/octo-repo/check-suites/414944374",