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

Merge branch 'main' into action_status-context

This commit is contained in:
Ramya Parimi
2022-03-03 07:38:59 -06:00
committed by GitHub
106 changed files with 1957 additions and 878 deletions

View File

@@ -17,7 +17,7 @@ jobs:
if: github.repository == 'github/docs-internal' || github.repository == 'github/docs'
runs-on: ubuntu-latest
steps:
- uses: actions/stale@7fb802b3079a276cf3c7e6ba9aa003c665b3f838
- uses: actions/stale@3cc123766321e9f15a6676375c154ccffb12a358
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
stale-issue-message: 'This issue is stale because it has been open 60 days with no activity.'

View File

@@ -18,7 +18,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/stale@7fb802b3079a276cf3c7e6ba9aa003c665b3f838
- uses: actions/stale@3cc123766321e9f15a6676375c154ccffb12a358
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
stale-issue-message: 'A stale label has been added to this issue becuase it has been open for 60 days with no activity. To keep this issue open, add a comment within 3 days.'
@@ -34,7 +34,7 @@ jobs:
if: github.repository == 'github/docs'
runs-on: ubuntu-latest
steps:
- uses: actions/stale@7fb802b3079a276cf3c7e6ba9aa003c665b3f838
- uses: actions/stale@3cc123766321e9f15a6676375c154ccffb12a358
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
stale-pr-message: 'This is a gentle bump for the docs team that this PR is waiting for review.'

View File

@@ -137,6 +137,16 @@ export const PlatformPicker = ({ variant = 'subnav' }: Props) => {
data-platform={option.id}
as="button"
selected={option.id === currentPlatform}
// Temporary fix: This should be removed when this merges: PR 24123
sx={{
color: 'var(--color-fg-default)',
'&.selected': { color: 'var(--color-fg-default)' },
':hover': { color: 'var(--color-fg-default)' },
':focus': {
color: 'var(--color-fg-default)',
outline: '-webkit-focus-ring-color auto 1px;',
},
}}
onClick={() => {
onClickPlatform(option.id)
}}

View File

@@ -117,6 +117,16 @@ export const ToolPicker = ({ variant = 'subnav' }: Props) => {
data-tool={tool}
as="button"
selected={tool === currentTool}
// Temporary fix: This should be removed when this merges: PR 24123
sx={{
color: 'var(--color-fg-default)',
'&.selected': { color: 'var(--color-fg-default)' },
':hover': { color: 'var(--color-fg-default)' },
':focus': {
color: 'var(--color-fg-default)',
outline: '-webkit-focus-ring-color auto 1px;',
},
}}
onClick={() => {
onClickTool(tool)
}}

View File

@@ -9,6 +9,7 @@ type Props = {
export function PreviewsRow({ slug, hasRequiredPreviews, xGitHub }: Props) {
const { t } = useTranslation('products')
const hasPreviews = xGitHub.previews && xGitHub.previews.length > 0
return (
<tr>
@@ -24,7 +25,7 @@ export function PreviewsRow({ slug, hasRequiredPreviews, xGitHub }: Props) {
<p className="m-0">
Setting to
<code>application/vnd.github.v3+json</code> is recommended.
{xGitHub.previews && (
{hasPreviews && (
<a href={`#${slug}-preview-notices`} className="d-inline">
{xGitHub.previews.length > 1
? ` ${t('rest.reference.see_preview_notices')}`

View File

@@ -21,7 +21,7 @@ export function RestPreviewNotice({ slug, previews }: Props) {
)
})
return (
return previews.length > 0 ? (
<>
<h4 id={`${slug}-preview-notices`}>
{previews.length > 1
@@ -30,5 +30,5 @@ export function RestPreviewNotice({ slug, previews }: Props) {
</h4>
{previewNotices}
</>
)
) : null
}

View File

@@ -252,7 +252,7 @@ jobs:
`hashFiles(path)`
Returns a single hash for the set of files that matches the `path` pattern. You can provide a single `path` pattern or multiple `path` patterns separated by commas. The `path` is relative to the `GITHUB_WORKSPACE` directory and can only include files inside of the `GITHUB_WORKSPACE`. This function calculates an individual SHA-256 hash for each matched file, and then uses those hashes to calculate a final SHA-256 hash for the set of files. For more information about SHA-256, see "[SHA-2](https://en.wikipedia.org/wiki/SHA-2)."
Returns a single hash for the set of files that matches the `path` pattern. You can provide a single `path` pattern or multiple `path` patterns separated by commas. The `path` is relative to the `GITHUB_WORKSPACE` directory and can only include files inside of the `GITHUB_WORKSPACE`. This function calculates an individual SHA-256 hash for each matched file, and then uses those hashes to calculate a final SHA-256 hash for the set of files. If the `path` pattern does not match any files, this returns an empty string. For more information about SHA-256, see "[SHA-2](https://en.wikipedia.org/wiki/SHA-2)."
You can use pattern matching characters to match file names. Pattern matching is case-insensitive on Windows. For more information about supported pattern matching characters, see "[Workflow syntax for {% data variables.product.prodname_actions %}](/actions/using-workflows/workflow-syntax-for-github-actions/#filter-pattern-cheat-sheet)."

View File

@@ -35,7 +35,9 @@ Each action is a repository in the `actions` organization, and each action repos
{% note %}
**Note:** When using setup actions (such as `actions/setup-LANGUAGE`) on {% data variables.product.product_name %} with self-hosted runners, you might need to set up the tools cache on runners that do not have internet access. For more information, see "[Setting up the tool cache on self-hosted runners without internet access](/enterprise/admin/github-actions/setting-up-the-tool-cache-on-self-hosted-runners-without-internet-access)."
**Notes:**
- When using setup actions (such as `actions/setup-LANGUAGE`) on {% data variables.product.product_name %} with self-hosted runners, you might need to set up the tools cache on runners that do not have internet access. For more information, see "[Setting up the tool cache on self-hosted runners without internet access](/enterprise/admin/github-actions/setting-up-the-tool-cache-on-self-hosted-runners-without-internet-access)."
- Upgrades to {% data variables.product.product_name %} will not result in the bundled actions being updated.
{% endnote %}

View File

@@ -1,6 +1,7 @@
Before you can authorize a personal access token or SSH key, you must have a linked SAML identity. If you're a member of an organization where SAML SSO is enabled, you can create a linked identity by authenticating to your organization with your IdP at least once. For more information, see "[About authentication with SAML single sign-on](/authentication/authenticating-with-saml-single-sign-on/about-authentication-with-saml-single-sign-on)."
After you authorize a personal access token or SSH key, the authorization does not expire. The token or key will stay authorized until revoked in one of these ways.
After you authorize a personal access token or SSH key. The token or key will stay authorized until revoked in one of these ways.
- An organization owner revokes the authorization.
- You are removed from the organization.
- The scopes in a personal access token are edited, or the token is regenerated.
- The scopes in a personal access token are edited, or the token is regenerated.
- The personal access token expired as defined during creation.

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

File diff suppressed because one or more lines are too long

View File

@@ -140217,7 +140217,7 @@
"example": "master"
},
"head_sha": {
"description": "The SHA of the head commit that points to the version of the worflow being run.",
"description": "The SHA of the head commit that points to the version of the workflow being run.",
"example": "009b8a3a9ccbb128af87f9b1c0f4c62e8a304f6d",
"type": "string"
},
@@ -140363,6 +140363,125 @@
"type": "string",
"format": "date-time"
},
"actor": {
"title": "Simple User",
"description": "Simple User",
"type": "object",
"properties": {
"name": {
"nullable": true,
"type": "string"
},
"email": {
"nullable": true,
"type": "string"
},
"login": {
"type": "string",
"example": "octocat"
},
"id": {
"type": "integer",
"example": 1
},
"node_id": {
"type": "string",
"example": "MDQ6VXNlcjE="
},
"avatar_url": {
"type": "string",
"format": "uri",
"example": "https://github.com/images/error/octocat_happy.gif"
},
"gravatar_id": {
"type": "string",
"example": "41d064eb2195891e12d0413f63227ea7",
"nullable": true
},
"url": {
"type": "string",
"format": "uri",
"example": "https://api.github.com/users/octocat"
},
"html_url": {
"type": "string",
"format": "uri",
"example": "https://github.com/octocat"
},
"followers_url": {
"type": "string",
"format": "uri",
"example": "https://api.github.com/users/octocat/followers"
},
"following_url": {
"type": "string",
"example": "https://api.github.com/users/octocat/following{/other_user}"
},
"gists_url": {
"type": "string",
"example": "https://api.github.com/users/octocat/gists{/gist_id}"
},
"starred_url": {
"type": "string",
"example": "https://api.github.com/users/octocat/starred{/owner}{/repo}"
},
"subscriptions_url": {
"type": "string",
"format": "uri",
"example": "https://api.github.com/users/octocat/subscriptions"
},
"organizations_url": {
"type": "string",
"format": "uri",
"example": "https://api.github.com/users/octocat/orgs"
},
"repos_url": {
"type": "string",
"format": "uri",
"example": "https://api.github.com/users/octocat/repos"
},
"events_url": {
"type": "string",
"example": "https://api.github.com/users/octocat/events{/privacy}"
},
"received_events_url": {
"type": "string",
"format": "uri",
"example": "https://api.github.com/users/octocat/received_events"
},
"type": {
"type": "string",
"example": "User"
},
"site_admin": {
"type": "boolean"
},
"starred_at": {
"type": "string",
"example": "\"2020-07-09T00:17:55Z\""
}
},
"required": [
"avatar_url",
"events_url",
"followers_url",
"following_url",
"gists_url",
"gravatar_id",
"html_url",
"id",
"node_id",
"login",
"organizations_url",
"received_events_url",
"repos_url",
"site_admin",
"starred_url",
"subscriptions_url",
"type",
"url"
]
},
"run_started_at": {
"type": "string",
"format": "date-time",
@@ -144142,7 +144261,7 @@
"example": "master"
},
"head_sha": {
"description": "The SHA of the head commit that points to the version of the worflow being run.",
"description": "The SHA of the head commit that points to the version of the workflow being run.",
"example": "009b8a3a9ccbb128af87f9b1c0f4c62e8a304f6d",
"type": "string"
},
@@ -144288,6 +144407,125 @@
"type": "string",
"format": "date-time"
},
"actor": {
"title": "Simple User",
"description": "Simple User",
"type": "object",
"properties": {
"name": {
"nullable": true,
"type": "string"
},
"email": {
"nullable": true,
"type": "string"
},
"login": {
"type": "string",
"example": "octocat"
},
"id": {
"type": "integer",
"example": 1
},
"node_id": {
"type": "string",
"example": "MDQ6VXNlcjE="
},
"avatar_url": {
"type": "string",
"format": "uri",
"example": "https://github.com/images/error/octocat_happy.gif"
},
"gravatar_id": {
"type": "string",
"example": "41d064eb2195891e12d0413f63227ea7",
"nullable": true
},
"url": {
"type": "string",
"format": "uri",
"example": "https://api.github.com/users/octocat"
},
"html_url": {
"type": "string",
"format": "uri",
"example": "https://github.com/octocat"
},
"followers_url": {
"type": "string",
"format": "uri",
"example": "https://api.github.com/users/octocat/followers"
},
"following_url": {
"type": "string",
"example": "https://api.github.com/users/octocat/following{/other_user}"
},
"gists_url": {
"type": "string",
"example": "https://api.github.com/users/octocat/gists{/gist_id}"
},
"starred_url": {
"type": "string",
"example": "https://api.github.com/users/octocat/starred{/owner}{/repo}"
},
"subscriptions_url": {
"type": "string",
"format": "uri",
"example": "https://api.github.com/users/octocat/subscriptions"
},
"organizations_url": {
"type": "string",
"format": "uri",
"example": "https://api.github.com/users/octocat/orgs"
},
"repos_url": {
"type": "string",
"format": "uri",
"example": "https://api.github.com/users/octocat/repos"
},
"events_url": {
"type": "string",
"example": "https://api.github.com/users/octocat/events{/privacy}"
},
"received_events_url": {
"type": "string",
"format": "uri",
"example": "https://api.github.com/users/octocat/received_events"
},
"type": {
"type": "string",
"example": "User"
},
"site_admin": {
"type": "boolean"
},
"starred_at": {
"type": "string",
"example": "\"2020-07-09T00:17:55Z\""
}
},
"required": [
"avatar_url",
"events_url",
"followers_url",
"following_url",
"gists_url",
"gravatar_id",
"html_url",
"id",
"node_id",
"login",
"organizations_url",
"received_events_url",
"repos_url",
"site_admin",
"starred_url",
"subscriptions_url",
"type",
"url"
]
},
"run_started_at": {
"type": "string",
"format": "date-time",
@@ -147791,6 +148029,26 @@
],
"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
},
"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",
@@ -148711,7 +148969,7 @@
"example": "master"
},
"head_sha": {
"description": "The SHA of the head commit that points to the version of the worflow being run.",
"description": "The SHA of the head commit that points to the version of the workflow being run.",
"example": "009b8a3a9ccbb128af87f9b1c0f4c62e8a304f6d",
"type": "string"
},
@@ -148857,6 +149115,125 @@
"type": "string",
"format": "date-time"
},
"actor": {
"title": "Simple User",
"description": "Simple User",
"type": "object",
"properties": {
"name": {
"nullable": true,
"type": "string"
},
"email": {
"nullable": true,
"type": "string"
},
"login": {
"type": "string",
"example": "octocat"
},
"id": {
"type": "integer",
"example": 1
},
"node_id": {
"type": "string",
"example": "MDQ6VXNlcjE="
},
"avatar_url": {
"type": "string",
"format": "uri",
"example": "https://github.com/images/error/octocat_happy.gif"
},
"gravatar_id": {
"type": "string",
"example": "41d064eb2195891e12d0413f63227ea7",
"nullable": true
},
"url": {
"type": "string",
"format": "uri",
"example": "https://api.github.com/users/octocat"
},
"html_url": {
"type": "string",
"format": "uri",
"example": "https://github.com/octocat"
},
"followers_url": {
"type": "string",
"format": "uri",
"example": "https://api.github.com/users/octocat/followers"
},
"following_url": {
"type": "string",
"example": "https://api.github.com/users/octocat/following{/other_user}"
},
"gists_url": {
"type": "string",
"example": "https://api.github.com/users/octocat/gists{/gist_id}"
},
"starred_url": {
"type": "string",
"example": "https://api.github.com/users/octocat/starred{/owner}{/repo}"
},
"subscriptions_url": {
"type": "string",
"format": "uri",
"example": "https://api.github.com/users/octocat/subscriptions"
},
"organizations_url": {
"type": "string",
"format": "uri",
"example": "https://api.github.com/users/octocat/orgs"
},
"repos_url": {
"type": "string",
"format": "uri",
"example": "https://api.github.com/users/octocat/repos"
},
"events_url": {
"type": "string",
"example": "https://api.github.com/users/octocat/events{/privacy}"
},
"received_events_url": {
"type": "string",
"format": "uri",
"example": "https://api.github.com/users/octocat/received_events"
},
"type": {
"type": "string",
"example": "User"
},
"site_admin": {
"type": "boolean"
},
"starred_at": {
"type": "string",
"example": "\"2020-07-09T00:17:55Z\""
}
},
"required": [
"avatar_url",
"events_url",
"followers_url",
"following_url",
"gists_url",
"gravatar_id",
"html_url",
"id",
"node_id",
"login",
"organizations_url",
"received_events_url",
"repos_url",
"site_admin",
"starred_url",
"subscriptions_url",
"type",
"url"
]
},
"run_started_at": {
"type": "string",
"format": "date-time",
@@ -152360,6 +152737,26 @@
],
"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
},
"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",
@@ -156278,7 +156675,7 @@
"example": "master"
},
"head_sha": {
"description": "The SHA of the head commit that points to the version of the worflow being run.",
"description": "The SHA of the head commit that points to the version of the workflow being run.",
"example": "009b8a3a9ccbb128af87f9b1c0f4c62e8a304f6d",
"type": "string"
},
@@ -156424,6 +156821,125 @@
"type": "string",
"format": "date-time"
},
"actor": {
"title": "Simple User",
"description": "Simple User",
"type": "object",
"properties": {
"name": {
"nullable": true,
"type": "string"
},
"email": {
"nullable": true,
"type": "string"
},
"login": {
"type": "string",
"example": "octocat"
},
"id": {
"type": "integer",
"example": 1
},
"node_id": {
"type": "string",
"example": "MDQ6VXNlcjE="
},
"avatar_url": {
"type": "string",
"format": "uri",
"example": "https://github.com/images/error/octocat_happy.gif"
},
"gravatar_id": {
"type": "string",
"example": "41d064eb2195891e12d0413f63227ea7",
"nullable": true
},
"url": {
"type": "string",
"format": "uri",
"example": "https://api.github.com/users/octocat"
},
"html_url": {
"type": "string",
"format": "uri",
"example": "https://github.com/octocat"
},
"followers_url": {
"type": "string",
"format": "uri",
"example": "https://api.github.com/users/octocat/followers"
},
"following_url": {
"type": "string",
"example": "https://api.github.com/users/octocat/following{/other_user}"
},
"gists_url": {
"type": "string",
"example": "https://api.github.com/users/octocat/gists{/gist_id}"
},
"starred_url": {
"type": "string",
"example": "https://api.github.com/users/octocat/starred{/owner}{/repo}"
},
"subscriptions_url": {
"type": "string",
"format": "uri",
"example": "https://api.github.com/users/octocat/subscriptions"
},
"organizations_url": {
"type": "string",
"format": "uri",
"example": "https://api.github.com/users/octocat/orgs"
},
"repos_url": {
"type": "string",
"format": "uri",
"example": "https://api.github.com/users/octocat/repos"
},
"events_url": {
"type": "string",
"example": "https://api.github.com/users/octocat/events{/privacy}"
},
"received_events_url": {
"type": "string",
"format": "uri",
"example": "https://api.github.com/users/octocat/received_events"
},
"type": {
"type": "string",
"example": "User"
},
"site_admin": {
"type": "boolean"
},
"starred_at": {
"type": "string",
"example": "\"2020-07-09T00:17:55Z\""
}
},
"required": [
"avatar_url",
"events_url",
"followers_url",
"following_url",
"gists_url",
"gravatar_id",
"html_url",
"id",
"node_id",
"login",
"organizations_url",
"received_events_url",
"repos_url",
"site_admin",
"starred_url",
"subscriptions_url",
"type",
"url"
]
},
"run_started_at": {
"type": "string",
"format": "date-time",

View File

@@ -114546,7 +114546,7 @@
"example": "master"
},
"head_sha": {
"description": "The SHA of the head commit that points to the version of the worflow being run.",
"description": "The SHA of the head commit that points to the version of the workflow being run.",
"example": "009b8a3a9ccbb128af87f9b1c0f4c62e8a304f6d",
"type": "string"
},
@@ -118445,7 +118445,7 @@
"example": "master"
},
"head_sha": {
"description": "The SHA of the head commit that points to the version of the worflow being run.",
"description": "The SHA of the head commit that points to the version of the workflow being run.",
"example": "009b8a3a9ccbb128af87f9b1c0f4c62e8a304f6d",
"type": "string"
},
@@ -122059,7 +122059,6 @@
"run_number": 562,
"event": "push",
"status": "queued",
"conclusion": null,
"workflow_id": 159038,
"url": "https://api.github.com/repos/octo-org/octo-repo/actions/runs/30433642",
"html_url": "https://github.com/octo-org/octo-repo/actions/runs/30433642",
@@ -124337,7 +124336,7 @@
"example": "master"
},
"head_sha": {
"description": "The SHA of the head commit that points to the version of the worflow being run.",
"description": "The SHA of the head commit that points to the version of the workflow being run.",
"example": "009b8a3a9ccbb128af87f9b1c0f4c62e8a304f6d",
"type": "string"
},

View File

@@ -114571,7 +114571,7 @@
"example": "master"
},
"head_sha": {
"description": "The SHA of the head commit that points to the version of the worflow being run.",
"description": "The SHA of the head commit that points to the version of the workflow being run.",
"example": "009b8a3a9ccbb128af87f9b1c0f4c62e8a304f6d",
"type": "string"
},
@@ -118470,7 +118470,7 @@
"example": "master"
},
"head_sha": {
"description": "The SHA of the head commit that points to the version of the worflow being run.",
"description": "The SHA of the head commit that points to the version of the workflow being run.",
"example": "009b8a3a9ccbb128af87f9b1c0f4c62e8a304f6d",
"type": "string"
},
@@ -122084,7 +122084,6 @@
"run_number": 562,
"event": "push",
"status": "queued",
"conclusion": null,
"workflow_id": 159038,
"url": "https://api.github.com/repos/octo-org/octo-repo/actions/runs/30433642",
"html_url": "https://github.com/octo-org/octo-repo/actions/runs/30433642",
@@ -124362,7 +124361,7 @@
"example": "master"
},
"head_sha": {
"description": "The SHA of the head commit that points to the version of the worflow being run.",
"description": "The SHA of the head commit that points to the version of the workflow being run.",
"example": "009b8a3a9ccbb128af87f9b1c0f4c62e8a304f6d",
"type": "string"
},

View File

@@ -116750,7 +116750,7 @@
"example": "master"
},
"head_sha": {
"description": "The SHA of the head commit that points to the version of the worflow being run.",
"description": "The SHA of the head commit that points to the version of the workflow being run.",
"example": "009b8a3a9ccbb128af87f9b1c0f4c62e8a304f6d",
"type": "string"
},
@@ -120667,7 +120667,7 @@
"example": "master"
},
"head_sha": {
"description": "The SHA of the head commit that points to the version of the worflow being run.",
"description": "The SHA of the head commit that points to the version of the workflow being run.",
"example": "009b8a3a9ccbb128af87f9b1c0f4c62e8a304f6d",
"type": "string"
},
@@ -124299,7 +124299,6 @@
"run_number": 562,
"event": "push",
"status": "queued",
"conclusion": null,
"workflow_id": 159038,
"url": "https://api.github.com/repos/octo-org/octo-repo/actions/runs/30433642",
"html_url": "https://github.com/octo-org/octo-repo/actions/runs/30433642",
@@ -127965,7 +127964,7 @@
"example": "master"
},
"head_sha": {
"description": "The SHA of the head commit that points to the version of the worflow being run.",
"description": "The SHA of the head commit that points to the version of the workflow being run.",
"example": "009b8a3a9ccbb128af87f9b1c0f4c62e8a304f6d",
"type": "string"
},

View File

@@ -119135,7 +119135,7 @@
"example": "master"
},
"head_sha": {
"description": "The SHA of the head commit that points to the version of the worflow being run.",
"description": "The SHA of the head commit that points to the version of the workflow being run.",
"example": "009b8a3a9ccbb128af87f9b1c0f4c62e8a304f6d",
"type": "string"
},
@@ -123052,7 +123052,7 @@
"example": "master"
},
"head_sha": {
"description": "The SHA of the head commit that points to the version of the worflow being run.",
"description": "The SHA of the head commit that points to the version of the workflow being run.",
"example": "009b8a3a9ccbb128af87f9b1c0f4c62e8a304f6d",
"type": "string"
},
@@ -126684,7 +126684,6 @@
"run_number": 562,
"event": "push",
"status": "queued",
"conclusion": null,
"workflow_id": 159038,
"url": "https://api.github.com/repos/octo-org/octo-repo/actions/runs/30433642",
"html_url": "https://github.com/octo-org/octo-repo/actions/runs/30433642",
@@ -130400,7 +130399,7 @@
"example": "master"
},
"head_sha": {
"description": "The SHA of the head commit that points to the version of the worflow being run.",
"description": "The SHA of the head commit that points to the version of the workflow being run.",
"example": "009b8a3a9ccbb128af87f9b1c0f4c62e8a304f6d",
"type": "string"
},

View File

@@ -130267,7 +130267,7 @@
"example": "master"
},
"head_sha": {
"description": "The SHA of the head commit that points to the version of the worflow being run.",
"description": "The SHA of the head commit that points to the version of the workflow being run.",
"example": "009b8a3a9ccbb128af87f9b1c0f4c62e8a304f6d",
"type": "string"
},
@@ -134184,7 +134184,7 @@
"example": "master"
},
"head_sha": {
"description": "The SHA of the head commit that points to the version of the worflow being run.",
"description": "The SHA of the head commit that points to the version of the workflow being run.",
"example": "009b8a3a9ccbb128af87f9b1c0f4c62e8a304f6d",
"type": "string"
},
@@ -137816,7 +137816,6 @@
"run_number": 562,
"event": "push",
"status": "queued",
"conclusion": null,
"workflow_id": 159038,
"url": "https://api.github.com/repos/octo-org/octo-repo/actions/runs/30433642",
"html_url": "https://github.com/octo-org/octo-repo/actions/runs/30433642",
@@ -141532,7 +141531,7 @@
"example": "master"
},
"head_sha": {
"description": "The SHA of the head commit that points to the version of the worflow being run.",
"description": "The SHA of the head commit that points to the version of the workflow being run.",
"example": "009b8a3a9ccbb128af87f9b1c0f4c62e8a304f6d",
"type": "string"
},

View File

@@ -89051,7 +89051,7 @@
"example": "master"
},
"head_sha": {
"description": "The SHA of the head commit that points to the version of the worflow being run.",
"description": "The SHA of the head commit that points to the version of the workflow being run.",
"example": "009b8a3a9ccbb128af87f9b1c0f4c62e8a304f6d",
"type": "string"
},
@@ -89197,6 +89197,125 @@
"type": "string",
"format": "date-time"
},
"actor": {
"title": "Simple User",
"description": "Simple User",
"type": "object",
"properties": {
"name": {
"nullable": true,
"type": "string"
},
"email": {
"nullable": true,
"type": "string"
},
"login": {
"type": "string",
"example": "octocat"
},
"id": {
"type": "integer",
"example": 1
},
"node_id": {
"type": "string",
"example": "MDQ6VXNlcjE="
},
"avatar_url": {
"type": "string",
"format": "uri",
"example": "https://github.com/images/error/octocat_happy.gif"
},
"gravatar_id": {
"type": "string",
"example": "41d064eb2195891e12d0413f63227ea7",
"nullable": true
},
"url": {
"type": "string",
"format": "uri",
"example": "https://api.github.com/users/octocat"
},
"html_url": {
"type": "string",
"format": "uri",
"example": "https://github.com/octocat"
},
"followers_url": {
"type": "string",
"format": "uri",
"example": "https://api.github.com/users/octocat/followers"
},
"following_url": {
"type": "string",
"example": "https://api.github.com/users/octocat/following{/other_user}"
},
"gists_url": {
"type": "string",
"example": "https://api.github.com/users/octocat/gists{/gist_id}"
},
"starred_url": {
"type": "string",
"example": "https://api.github.com/users/octocat/starred{/owner}{/repo}"
},
"subscriptions_url": {
"type": "string",
"format": "uri",
"example": "https://api.github.com/users/octocat/subscriptions"
},
"organizations_url": {
"type": "string",
"format": "uri",
"example": "https://api.github.com/users/octocat/orgs"
},
"repos_url": {
"type": "string",
"format": "uri",
"example": "https://api.github.com/users/octocat/repos"
},
"events_url": {
"type": "string",
"example": "https://api.github.com/users/octocat/events{/privacy}"
},
"received_events_url": {
"type": "string",
"format": "uri",
"example": "https://api.github.com/users/octocat/received_events"
},
"type": {
"type": "string",
"example": "User"
},
"site_admin": {
"type": "boolean"
},
"starred_at": {
"type": "string",
"example": "\"2020-07-09T00:17:55Z\""
}
},
"required": [
"avatar_url",
"events_url",
"followers_url",
"following_url",
"gists_url",
"gravatar_id",
"html_url",
"id",
"node_id",
"login",
"organizations_url",
"received_events_url",
"repos_url",
"site_admin",
"starred_url",
"subscriptions_url",
"type",
"url"
]
},
"run_started_at": {
"type": "string",
"format": "date-time",
@@ -92968,7 +93087,7 @@
"example": "master"
},
"head_sha": {
"description": "The SHA of the head commit that points to the version of the worflow being run.",
"description": "The SHA of the head commit that points to the version of the workflow being run.",
"example": "009b8a3a9ccbb128af87f9b1c0f4c62e8a304f6d",
"type": "string"
},
@@ -93114,6 +93233,125 @@
"type": "string",
"format": "date-time"
},
"actor": {
"title": "Simple User",
"description": "Simple User",
"type": "object",
"properties": {
"name": {
"nullable": true,
"type": "string"
},
"email": {
"nullable": true,
"type": "string"
},
"login": {
"type": "string",
"example": "octocat"
},
"id": {
"type": "integer",
"example": 1
},
"node_id": {
"type": "string",
"example": "MDQ6VXNlcjE="
},
"avatar_url": {
"type": "string",
"format": "uri",
"example": "https://github.com/images/error/octocat_happy.gif"
},
"gravatar_id": {
"type": "string",
"example": "41d064eb2195891e12d0413f63227ea7",
"nullable": true
},
"url": {
"type": "string",
"format": "uri",
"example": "https://api.github.com/users/octocat"
},
"html_url": {
"type": "string",
"format": "uri",
"example": "https://github.com/octocat"
},
"followers_url": {
"type": "string",
"format": "uri",
"example": "https://api.github.com/users/octocat/followers"
},
"following_url": {
"type": "string",
"example": "https://api.github.com/users/octocat/following{/other_user}"
},
"gists_url": {
"type": "string",
"example": "https://api.github.com/users/octocat/gists{/gist_id}"
},
"starred_url": {
"type": "string",
"example": "https://api.github.com/users/octocat/starred{/owner}{/repo}"
},
"subscriptions_url": {
"type": "string",
"format": "uri",
"example": "https://api.github.com/users/octocat/subscriptions"
},
"organizations_url": {
"type": "string",
"format": "uri",
"example": "https://api.github.com/users/octocat/orgs"
},
"repos_url": {
"type": "string",
"format": "uri",
"example": "https://api.github.com/users/octocat/repos"
},
"events_url": {
"type": "string",
"example": "https://api.github.com/users/octocat/events{/privacy}"
},
"received_events_url": {
"type": "string",
"format": "uri",
"example": "https://api.github.com/users/octocat/received_events"
},
"type": {
"type": "string",
"example": "User"
},
"site_admin": {
"type": "boolean"
},
"starred_at": {
"type": "string",
"example": "\"2020-07-09T00:17:55Z\""
}
},
"required": [
"avatar_url",
"events_url",
"followers_url",
"following_url",
"gists_url",
"gravatar_id",
"html_url",
"id",
"node_id",
"login",
"organizations_url",
"received_events_url",
"repos_url",
"site_admin",
"starred_url",
"subscriptions_url",
"type",
"url"
]
},
"run_started_at": {
"type": "string",
"format": "date-time",
@@ -96609,6 +96847,26 @@
],
"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
},
"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",
@@ -97124,7 +97382,7 @@
"example": "master"
},
"head_sha": {
"description": "The SHA of the head commit that points to the version of the worflow being run.",
"description": "The SHA of the head commit that points to the version of the workflow being run.",
"example": "009b8a3a9ccbb128af87f9b1c0f4c62e8a304f6d",
"type": "string"
},
@@ -97270,6 +97528,125 @@
"type": "string",
"format": "date-time"
},
"actor": {
"title": "Simple User",
"description": "Simple User",
"type": "object",
"properties": {
"name": {
"nullable": true,
"type": "string"
},
"email": {
"nullable": true,
"type": "string"
},
"login": {
"type": "string",
"example": "octocat"
},
"id": {
"type": "integer",
"example": 1
},
"node_id": {
"type": "string",
"example": "MDQ6VXNlcjE="
},
"avatar_url": {
"type": "string",
"format": "uri",
"example": "https://github.com/images/error/octocat_happy.gif"
},
"gravatar_id": {
"type": "string",
"example": "41d064eb2195891e12d0413f63227ea7",
"nullable": true
},
"url": {
"type": "string",
"format": "uri",
"example": "https://api.github.com/users/octocat"
},
"html_url": {
"type": "string",
"format": "uri",
"example": "https://github.com/octocat"
},
"followers_url": {
"type": "string",
"format": "uri",
"example": "https://api.github.com/users/octocat/followers"
},
"following_url": {
"type": "string",
"example": "https://api.github.com/users/octocat/following{/other_user}"
},
"gists_url": {
"type": "string",
"example": "https://api.github.com/users/octocat/gists{/gist_id}"
},
"starred_url": {
"type": "string",
"example": "https://api.github.com/users/octocat/starred{/owner}{/repo}"
},
"subscriptions_url": {
"type": "string",
"format": "uri",
"example": "https://api.github.com/users/octocat/subscriptions"
},
"organizations_url": {
"type": "string",
"format": "uri",
"example": "https://api.github.com/users/octocat/orgs"
},
"repos_url": {
"type": "string",
"format": "uri",
"example": "https://api.github.com/users/octocat/repos"
},
"events_url": {
"type": "string",
"example": "https://api.github.com/users/octocat/events{/privacy}"
},
"received_events_url": {
"type": "string",
"format": "uri",
"example": "https://api.github.com/users/octocat/received_events"
},
"type": {
"type": "string",
"example": "User"
},
"site_admin": {
"type": "boolean"
},
"starred_at": {
"type": "string",
"example": "\"2020-07-09T00:17:55Z\""
}
},
"required": [
"avatar_url",
"events_url",
"followers_url",
"following_url",
"gists_url",
"gravatar_id",
"html_url",
"id",
"node_id",
"login",
"organizations_url",
"received_events_url",
"repos_url",
"site_admin",
"starred_url",
"subscriptions_url",
"type",
"url"
]
},
"run_started_at": {
"type": "string",
"format": "date-time",
@@ -100765,6 +101142,26 @@
],
"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
},
"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",
@@ -103576,7 +103973,7 @@
"example": "master"
},
"head_sha": {
"description": "The SHA of the head commit that points to the version of the worflow being run.",
"description": "The SHA of the head commit that points to the version of the workflow being run.",
"example": "009b8a3a9ccbb128af87f9b1c0f4c62e8a304f6d",
"type": "string"
},
@@ -103722,6 +104119,125 @@
"type": "string",
"format": "date-time"
},
"actor": {
"title": "Simple User",
"description": "Simple User",
"type": "object",
"properties": {
"name": {
"nullable": true,
"type": "string"
},
"email": {
"nullable": true,
"type": "string"
},
"login": {
"type": "string",
"example": "octocat"
},
"id": {
"type": "integer",
"example": 1
},
"node_id": {
"type": "string",
"example": "MDQ6VXNlcjE="
},
"avatar_url": {
"type": "string",
"format": "uri",
"example": "https://github.com/images/error/octocat_happy.gif"
},
"gravatar_id": {
"type": "string",
"example": "41d064eb2195891e12d0413f63227ea7",
"nullable": true
},
"url": {
"type": "string",
"format": "uri",
"example": "https://api.github.com/users/octocat"
},
"html_url": {
"type": "string",
"format": "uri",
"example": "https://github.com/octocat"
},
"followers_url": {
"type": "string",
"format": "uri",
"example": "https://api.github.com/users/octocat/followers"
},
"following_url": {
"type": "string",
"example": "https://api.github.com/users/octocat/following{/other_user}"
},
"gists_url": {
"type": "string",
"example": "https://api.github.com/users/octocat/gists{/gist_id}"
},
"starred_url": {
"type": "string",
"example": "https://api.github.com/users/octocat/starred{/owner}{/repo}"
},
"subscriptions_url": {
"type": "string",
"format": "uri",
"example": "https://api.github.com/users/octocat/subscriptions"
},
"organizations_url": {
"type": "string",
"format": "uri",
"example": "https://api.github.com/users/octocat/orgs"
},
"repos_url": {
"type": "string",
"format": "uri",
"example": "https://api.github.com/users/octocat/repos"
},
"events_url": {
"type": "string",
"example": "https://api.github.com/users/octocat/events{/privacy}"
},
"received_events_url": {
"type": "string",
"format": "uri",
"example": "https://api.github.com/users/octocat/received_events"
},
"type": {
"type": "string",
"example": "User"
},
"site_admin": {
"type": "boolean"
},
"starred_at": {
"type": "string",
"example": "\"2020-07-09T00:17:55Z\""
}
},
"required": [
"avatar_url",
"events_url",
"followers_url",
"following_url",
"gists_url",
"gravatar_id",
"html_url",
"id",
"node_id",
"login",
"organizations_url",
"received_events_url",
"repos_url",
"site_admin",
"starred_url",
"subscriptions_url",
"type",
"url"
]
},
"run_started_at": {
"type": "string",
"format": "date-time",

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:a6942878d003baed2db75853cdf82c0358abd152cd711af1ca70ceadb9094a97
size 666959
oid sha256:1a266cf7ef15246bfc5fe7a3fcfdd8b955d6f6cff04f96d8d6ef2f595fceaf12
size 669186

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:a0e4ae42f98285aac480793b77f28dc4ecbfdcb20d8698ce6ae3284e0fc8f392
size 1400882
oid sha256:082e281f1eb9024e709e930b7d9c28fdfc193592d175fc6e97186873e429332a
size 1398253

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:5f8ac543f55cbe54b8488cda3abc5a6b45a15f81fb62760c2dc339f7c5eb41a7
size 989647
oid sha256:cadef74b93716cdbbb21547787acf54500c5a25a0536506b88ff5081ba613a17
size 988945

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:f2fb8dc106f6fa661395b8901b275e4a042e57de07b8142c7eae4fecacd00ef9
size 4026073
oid sha256:9d7c538716dbf4fc8b5e6bd9a9b19899846b3e02c71668171fc24ff821bcb440
size 4026539

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:122570f21a59040f1f0c9776b6765a27875a17e79960db429a88ad0a5a6abb32
size 620608
oid sha256:39eb0c7a1455f02c40064bc1f9156d090cafff76ede63ee332d07b4e32d7e3f1
size 620198

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:fd8f2cfb2de5b87c5f8eef054ae94db210fb3ef0341896283a691a8cb07e9715
size 2604647
oid sha256:cbed3ae587a12b1063ac5d50f2cf0287127ae4ca6edcd08660d31ce3d8835109
size 2597574

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:7302435e914cf1f27a0c98171b926849be59141ee9f9c0d9e1f2433036cfd796
size 684834
oid sha256:e2e50a295a3f2f6934650c95c7e0c00396ce5f0f63549b5cb89ae6522842e1db
size 686222

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:c156d398ae48deb9e37b0df578d4dddd07ba069b5c3231e5d74efc371994855b
size 3639637
oid sha256:3192115d67374f95c87d743d76b733086532e6fa27b7ed215a439f6acbfb97ac
size 3650695

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:1b0fc59d266528a9e4c5ce4f93bf3f042ee43b0cbb5e171c093555837338818e
size 612523
oid sha256:ce8d41260f28df2760af0f62662ef3de37ebb3b2d9712d21fcab5dc0e84782ea
size 612230

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:de35df2415811809330bd71e2caa836832f1a96a14a23cc39a5e45d32fdfad4e
size 2504539
oid sha256:fe3c9d60582ea2fa835c5cfaa11b278eb4a3d0ce6788771f148b9b7f79f2d9a0
size 2496549

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:a0dd8f9975df7b2cbffb9b84bd13ad00521b9a11afed34288e90e3dfe697cc3e
size 676533
oid sha256:5a307771bd811c273dc0a686e3d7be21958ab935cbb790caee304a9cb52dfba3
size 678889

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:c23e16ae194faef211de761f74c9ca6417c5e38e74b55ba195e3cbc589cdec51
size 1429028
oid sha256:967c93691fe1da5a6a50bcfb174611407a203f6f47082d12d77d674a9dd2883d
size 1424556

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:48f78490670e856cf98206700f752c71769793ff71c64e6c6feacbd952db5f06
size 1007571
oid sha256:246b8698ed84bbf43f10ba53a3098bec5afe357a2350708728205b0f613038b4
size 1010653

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:be1e4fd96b2ac476e8f94c937bc9477cac9815d0ba3011bbea88582f5f7c9463
size 4092160
oid sha256:7c2e9ff4da5cd0bf9873b33a6fe061ccef0ba710ca67b2189ed64556469cc50c
size 4092166

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:132bbfde8221facf396ee5ce7c59fcc969727e702afff5c719f201e47186e5a5
size 629132
oid sha256:a686103d2fde00f952320e306a5c1d5b389c1e4c21df21645d3d786ce7634174
size 627921

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:07d57aa8f97635a7a77674f6ce9dec40522850fde3f55aebe9c072e420f2e412
size 2647748
oid sha256:fd713fdb1336bda1bf88d2264ee8e502816fe9bcd8efe47cbdf87047b19488f4
size 2639091

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:e6cb0d5bb8b4df16e9cc5ab2606660ad951741f7f163dfdb4e98ec8faeb529b7
size 694952
oid sha256:381220d000cc4c0e4daaffbf2100f4fd3f5a2503288311dd21c8ef70848502ba
size 697205

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:a9b9fc9cdc858123fdc30972216feb002163a57bb57db9570f91a6a2ea643924
size 3698894
oid sha256:b5c43fd767ae2edf3f7b6bd21256716d2723b3514435f325cd793fbcb9dd977e
size 3710066

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:2a31e9c8004bd67bf9d524920207b0f88cb34c6ac65062b14fc1aa9933956439
size 620341
oid sha256:c08748a425f307dd1b0eb6e0c337fb34d22b76c3a06e36ad8040610397c4b6d4
size 619193

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:3f94c4af0f1bc20072f557d95ef879d9a8d358e9d1b0f9f52619c5a0bfeb64b8
size 2541526
oid sha256:730c9f79d8bb2186b5e6714f8aebdc22af3a82c561530b4e990af9d06c5daa95
size 2536076

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:6eae68351526e4382de4c193592ee27d1de1851927e9211cda026e89cf778c72
size 692281
oid sha256:30c672df7063d27cd1910ed98ea009389b033cef9fe33e62aa0a5d39a243dcff
size 694779

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:d0d1828811e4b4ce694a321ce4e081d7b2ae2ea926a5c2e67625f65643c5f06f
size 1460100
oid sha256:8192ab518ad3b76720b7b95638db6d63cfabb7c96f2ad157c86c4d9c3bb59b1a
size 1456612

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:8d710bbfbe2ddb838ce2dbb3cf466cdddaa8a3c5909df2bf606e155dc4ce56b0
size 1040880
oid sha256:0c682cff72eb9e61c19a1377f4cd1b726707a9e026e23638e4c84fc04682ab6d
size 1039980

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:05aef81e9bb333dd53f003fdb6524a867a747068a0e6a8324bdb2f54646ca2c1
size 4227995
oid sha256:45814ef43385cf83baac7bfbb20ed3028710d5f7b162967cd097c881fc65bca6
size 4226277

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:9015ad496957fa293076ac32b6317371a3cda324d87ddac25550ee5a389e4404
size 644220
oid sha256:8845253b1f7a32a3fcbc85498fc0fae58e29a78f9836cf9ce0059955fc952d41
size 643203

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:fb2a40daf83b15e30602bc9648fee7be2e6c30a36acc3141dc7a029b9c01a9f0
size 2711968
oid sha256:f7f242c80919ede44683ac6ab5b4d21e62256954300b4691d75f26ff21ab10a8
size 2705841

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:63879d4886daeb3c39080145a9d055fa1c6843c6b2d9f1ff7e0048ec525714d9
size 708379
oid sha256:b02054e379166b7617b34fb971b74c3d2cc546e51200c27b62ab0ca6a99a7077
size 710634

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:903481bd9e9d1c4737e61f40569039fb8d52538738559a204c3fc9872b27bfde
size 3782916
oid sha256:f208378b2d44fc318413ea1199e0a0d99fdb3718d2dd266b3551492f185f1b3b
size 3794274

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:230e1ce0ef6e4ec6561f1bff5dfab585bb1b13ff4269f138e173a0b322427a62
size 634458
oid sha256:d016464e105646f9d4d752e88a88fc29de6656ccf7b5d68b72751dfb4a571376
size 634076

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:de83d5454dbc281241efa7da99d103104052cd61cc02f02dfd1e3550f7383e1b
size 2598655
oid sha256:8f33fe0ce5182f6b9a36c4a8a7eb57b379fdaf64d0744c9ebdc056500b08dfaa
size 2593992

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:ca24d023784634593ebddc3eb2afadc858f25e05e6bf34faef4a51d7a85e75ff
size 714488
oid sha256:c6a6754f74bdd78802ec8e86c5272435fbe21882efefee407eb8fe33cfb98bd8
size 716759

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:f004fc9529897fa86cfe70401d77cec2a36004a9374d6dafaa98bf3897c41b52
size 1514266
oid sha256:10613bc904da39286f1b74a1cf53952c5d8b729c4ec9c1795bacb8a90fca619f
size 1511484

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:3e4fadd29dead052caf1409f6a3dcdb8aab1c3cefb8d103506d6b23e96aa9d1e
size 1075030
oid sha256:e1bbb08f0b5ac87b34bdbc5912e5bd9f28d2de0f06dfed2dd818bcf33cb510ce
size 1074474

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:90c6cc450505776bc0d5c7fbd86fa0a3b7db9ae74f7dc78b6fd361df34fe9a95
size 4328646
oid sha256:ebf84c9ff233691c40615d8359345d7482e7bbbf768b8f5b7368d7604dcb7ac4
size 4328271

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:f9c2cbbc5555efa1c8fa50725dba0a294ca8af6a381ce9036eda259d099baa09
size 662314
oid sha256:b661bd15a73dc3ad954f613e51fcf1f8f225b9ff721a6e257f84fcd71ebca419
size 662921

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:8c500775ee98d435935b352b0e50872401c751157be4a15ce1bc4b0acf654efe
size 2811957
oid sha256:9aa8b053e2f11c89d1127a78b5c781119814d8e7f222fd7768d9ae21a3cce552
size 2807330

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:bf6c48fcdb2a8fcd990277e3fea4d4f111446281901c341ea27d95ccbe8c9df2
size 731394
oid sha256:6734f44dcb1f59f820ef2418eb2668c3577fdf9950cc2537aaebcf03b0d2253c
size 733510

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:4ceff22aeeca3ac5195e42a3c941a01bbec7a2d376f219b1558632590c52039b
size 3903790
oid sha256:19115c9fea8dc4fee04ef9912839ea757d6a92316f045aea404d56d06a92cb5e
size 3915673

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:ace6620a7b7739a844e12ea3dca0c5c98c204d387dfc74c6c011897321fc3cbc
size 653207
oid sha256:0160f9ae68cdb85d5e8652581758066c6f9605291031e4b505ed7348849faeee
size 653546

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:4d81ca7ca871d6fd85c52a43a3d4e34886c2f03e473e1aff5b78cdc7fbac4c7b
size 2682249
oid sha256:6ca7dd66d2b3196c478a8eece606160a7cca1257878c19b581faa8bf32201a95
size 2676042

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:2adb4e8aad516703bdf7b0e7b7caf8719da1a0915e0c492fb1dabca6f50c1d64
size 719191
oid sha256:23b58749e694817203e130bcb40f1c2010658ef50420b251fc0062e05dffd8cc
size 722553

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:45808b27471bf282d790728dd0fdcb117ee81f98a26a84d388cb00fb8150b5e7
size 1537958
oid sha256:c27ba10b77373078b025bd4b12b3e5e952abaf23d0fbf4401dcb7bba5e06513c
size 1533022

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:86451437d742417a080e6abc2768ece13e1f040af111b93094ee0da44cfbcc49
size 1088161
oid sha256:9a0a65352887bcce55982557c2bb89427a92a98a3281c40a5b0115b63a1a10c4
size 1088663

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:b30ae6219674177f365d15332a399b02ea69529f5562039f2b08bbad06f8b8a1
size 4399633
oid sha256:ca42110b8e8b7cb750200440415f3fef80becc0f9fe0b6a3f705a6eca29f8239
size 4402573

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:620263af2be0f88bf4e135781df42c9d32956e3a27ed8432cc5f4052e1719e8b
size 668534
oid sha256:f7c992795408614468d30ea92ca91af9fa63caedba0a4adfae69160351f8d748
size 668418

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:ff11cddbc068127ab9e42b15474c43d8207cf5ed8e5a2aa6a3ac4e7ff9865962
size 2837978
oid sha256:5a7a421c96e0ef5063dc1790589f8694fe2c04dbaebf97cdb5bd090255ddb598
size 2833192

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:8c681c14bd85fbb4ca3148c916043d3bc9f09a2be175cab366592331ccf3db27
size 736707
oid sha256:db44376d680cc80855315b5b0ebf10b51b2a22e18349ae0505eb78738397b14b
size 738965

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:96fbcc7a3ccaed7d10eceae7145fbed2c1773349d90d9820fe2f36733a14af89
size 3937950
oid sha256:1ad1678d8570a99a9baf5d61a995de513dfaf574da3521f01fa878ddeccd813e
size 3952269

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:ee3b0d4c4ceae2590541368acbc415e576d637301ad6757abed2ae1ead768208
size 658831
oid sha256:7a25781f3d89d7039b3639245364e7f0f26d3bbabaebc8be921401d087b3fa32
size 657984

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:6a1e2cdb821817fd23bfeef92b2d1153637b17596e20231f8623ce7f07f01580
size 2706757
oid sha256:4f0af0508f3f13b37f3bfa7d8267682b16334f17d04bc0df1087cb57174e2435
size 2700054

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:8e044039d9ef110e7976e3baa229ae608bb489497717289595f9e3882b6c83e6
size 925876
oid sha256:82c57f39249c7dabab0ffca9b0d0ae67b7e046c37539a42d703bd119312f9856
size 928390

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:402e51e363615dc1a86dfd7d27fe06f50045cce6eff53e804ae8a0238c029654
size 1673547
oid sha256:41ca2e77bd89fa1784574ef6c1dacf1306145060b012e2a32ed4d830ad22b27b
size 1669781

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:a0b51427da142b6d1c44b6e64bfb6d4204599e00eee63f405cd127a0a31f7d59
size 1376930
oid sha256:bbca29ef8ede56de5319d27c26ba530281464e4ecd59f89e38ef8042f5115ade
size 1377568

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:d096941105e294ad13d1e548967495d8d58f53b2046c1c6ebe2f82df37793fe4
size 5252322
oid sha256:f1bb40d28ff8c6efd77c6d50ae36d0b23bdd5708a96ed1b67db77a27c4bd1730
size 5251714

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:b300fcfeb716c77376e8824be992a8e8fed9babcb76aafd95bd195839ecdb21a
size 838075
oid sha256:10c46f1c636e439b201382cbd00ecf1b4c6a40e27347cc734252aa1dee9c2c6c
size 837613

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:8f18ff8ef11d9015c6e230a3ec4bf7d00cab5dd98390d2caacad90585b6bbf16
size 3367518
oid sha256:2754167c6044e397f8d497046d0582a6d3d6f1504152862ee9001e2a95ac95c2
size 3361873

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:b8d81b4effb513836087d069d5150f84b9d0b98f10fe462c3565dc2e44386136
size 940843
oid sha256:0cf554df0b6168c8a80337e7e95e04c7713d8a15099d8985174386d1c06ffeb4
size 944109

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:9d5b9bd400082fcaab7757a33c72c3fa39db209b0ae64194e7f1a4c1dbaac4bc
size 4797124
oid sha256:4fca349018695d2e81b9bbd7e377a7e923b609a58905a3cd5055327e8e5e4975
size 4811089

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:428fb640180b5b18f969ec4b5ee5b93bc3bc33258e47427c6be10d395c15f16c
size 828552
oid sha256:7dcbf989ca2b580e96fa8f76c11bddbd5c5c5cad05e48e776b4231f44b8367f9
size 827034

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:c4c1029e94beea70e77356d9fa8df7659ac202507c18d970828cd4b3589f875f
size 3224948
oid sha256:1f8e57bc8cf51157cb70ca10e78da95938aa50efc07f1ad4b6fda2334ee30aa7
size 3222610

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:0386313e7c1e8c3bf466393c7afe41a01fc01327205d6f34b83a3dfa049970a2
size 559441
oid sha256:c37d25b7d6da3067d51bd7fa42a75abfb3eb256b1120ba525863a9c0d5659e27
size 561761

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:85138ff3de1791ebb09718a52c61b323d4f64bc640f2ac69e0301ca4bc7f9be5
size 1125896
oid sha256:58bfae70d224a5d6d453b40a9f83876489c16fdf5f306bd20607231072d3bac4
size 1122047

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:e58d61c682c2fa460a3e01eab4f529b7466880a0f38f84a3a1704dbf9c01cedd
size 861398
oid sha256:2d0423926d45cbdfc7bb042ad37b6b2e256a75bc12b33b506305e393f693071c
size 865359

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:228c187e04d164720df99bced65c8b872291546972534812b6f63de6c7ed7abf
size 3445711
oid sha256:e59cba08f8279af8a9f93db706e408a386a3c269d97b1801fa624b1275b52487
size 3444877

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:9f6726b481d9355925a51660b5ddbc60781d6da0b8634257d7101ebb1fcf4d10
size 521336
oid sha256:768a94a678978f6599895eacb7c75dd16a0c8e5adbd89be1c02091a48aef82dd
size 520094

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:9fd54c6b4cdd07f835d1b9ebc23b5c6a8e7d6f2dd9a476d71ea367f3ee55b57b
size 2114953
oid sha256:036f0784b1481cf134ee261bf75be70c63dae5367840ec45540f8ef1f1b5a17e
size 2107240

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:af147256b79bffd7e041ff92b775d65790d076f8e6536442677bf22be46202f4
size 572141
oid sha256:24e0f912aacb90b56c902b16890e68b67e118bd4e1d967fc86fb2b8d82c4b188
size 574073

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:d3b76868a3c20e9917f1f8f63bc470abc9c3969d537096ce5e2280762e980d1c
size 2930012
oid sha256:c16e33443c5ade5ff5d4b53a847882012ca0a7bb32de20d44ad1d7105ec50c89
size 2937850

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:04ee8fb23815b0d71c00ea4af149d50d7645bcc9ed96252c410e1c1d3e6aa497
size 513284
oid sha256:23f41b5103bb006b4bdd5f2c22cd176f3de5afa2324ff34cdc24dea100bf7c6a
size 513247

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:9987c0c732e15ae53999f856090c00c9c121ad7c7564a6c3b945570eee1672ef
size 2010586
oid sha256:27bc3be4ed840fc6178be777d481824a4693d3237c886eb33bf5898ecd9093cf
size 2003764

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:24e445c43a5f90efcd3fbf0d85519ce51bb17ff49ad5f7340a59488c212c9638
size 852127
oid sha256:1746d0aa7394bfb6738e2acc00f38dca07ce1c4521a1a6444e89f38f0a7da9b9
size 855463

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:5fedcb45a033c9950fe05388dbf35b4a7b8f6e5291243ef965b478a554953959
size 1755201
oid sha256:1a20bde5f91ad49e13113c589cf432b2715daa05ed3198321b07298ea0d085aa
size 1751468

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:8940d23c16e963e353f3d7c5aaa6e0227b3fab5573f7b1bb358976ae90af4653
size 1255767
oid sha256:aec3e9ddbd0330decb124ab54b90853e21f667f6456eb21b2423c4f0969674b1
size 1251727

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:f737ad3cc0d9cd82a3366c770e0ba60bc8d71611ed47158cb3a7f5b2bec76d2e
size 5045832
oid sha256:4db4c0bcf693c2bc351f8579f065be8d3b1e9ab246e7e1c51ebc307232a8c444
size 5047946

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:57a894e64fd9462560a976f99802c9aa71dd8f53345f8f49babe3e5f63eb290a
size 797039
oid sha256:e52b8426774c252a875506e6a13794fcf43d28fb7b7a53041547c67bd12664c8
size 798884

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:036c736e3314690060bd616b7b83c4ef5e57a8170c2a655f5065e6482395703e
size 3361126
oid sha256:2b5ebdf111187347088196f18dcde87b58782636193b6dffd763c718d4dc8aec
size 3366918

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:97b1c69611f5c9aab8328a8245177f8768dca2ac6c3faf6dcc9c98d1bbadb6f4
size 872643
oid sha256:03340b10e5dfe30c08f5c34b188bc8888ea82038b4ecafafc907425e3572a111
size 874604

Some files were not shown because too many files have changed in this diff Show More