1
0
mirror of synced 2026-01-07 18:01:41 -05:00

Merge branch 'main' into add-issue-event

This commit is contained in:
PSJ
2022-10-06 09:22:47 +05:30
committed by GitHub
266 changed files with 4470 additions and 4222 deletions

5
.gitignore vendored
View File

@@ -19,10 +19,9 @@ coverage/
blc_output.log
blc_output_internal.log
broken_links.md
lib/redirects/.redirects-cache.json
# This one is purely for historical reasons because so many people might
# still have thes files on their disk.
lib/redirects/.redirects-cache_*.json
# still have these files on their disk.
lib/redirects/.redirects-cache*.json
# During the preview deploy untrusted user code may be cloned into this directory
# We ignore it from git to keep things deterministic

Binary file not shown.

After

Width:  |  Height:  |  Size: 56 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 74 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 61 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 225 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 29 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 56 KiB

After

Width:  |  Height:  |  Size: 183 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 35 KiB

After

Width:  |  Height:  |  Size: 230 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 55 KiB

After

Width:  |  Height:  |  Size: 207 KiB

View File

@@ -1363,7 +1363,7 @@ jobs:
| Webhook event payload | Activity types | `GITHUB_SHA` | `GITHUB_REF` |
| --------------------- | -------------- | ------------ | -------------|
| [`workflow_run`](/developers/webhooks-and-events/webhooks/webhook-events-and-payloads/#workflow_run) | - `completed`<br/>- `requested` | Last commit on default branch | Default branch |
| [`workflow_run`](/developers/webhooks-and-events/webhooks/webhook-events-and-payloads/#workflow_run) | - `completed`<br/>- `requested`{% ifversion actions-workflow-run-in-progress %}<br/>- `in_progress`{% endif %} | Last commit on default branch | Default branch |
{% note %}

View File

@@ -63,7 +63,7 @@ When you enable {% data variables.product.prodname_dependabot_alerts %} for exis
{% ifversion fpt or ghec %}You can manage {% data variables.product.prodname_dependabot_alerts %} for your public, private or internal repository.
By default, we notify people with admin permissions in the affected repositories about new {% data variables.product.prodname_dependabot_alerts %}. {% data variables.product.product_name %} never publicly discloses insecure dependencies for any repository. You can also make {% data variables.product.prodname_dependabot_alerts %} visible to additional people or teams working repositories that you own or have admin permissions for.
By default, we notify people with admin permissions in the affected repositories about new {% data variables.product.prodname_dependabot_alerts %}. {% data variables.product.product_name %} never publicly discloses insecure dependencies for any repository. You can also make {% data variables.product.prodname_dependabot_alerts %} visible to additional people or teams working on repositories that you own or have admin permissions for.
{% data reusables.security.security-and-analysis-features-enable-read-only %}

View File

@@ -27,9 +27,7 @@ Before you can configure prebuilds for your project the following must be true:
## Configuring a prebuild
{% data reusables.repositories.navigate-to-repo %}
{% data reusables.repositories.sidebar-settings %}
1. In the "Code & automation" section of the sidebar, click **{% octicon "codespaces" aria-label="The Codespaces icon" %} {% data variables.product.prodname_codespaces %}**.
{% data reusables.codespaces.accessing-prebuild-configuration %}
1. In the "Prebuild configuration" section of the page, click **Set up prebuild**.
![The 'Set up prebuilds' button](/assets/images/help/codespaces/prebuilds-set-up.png)
@@ -80,6 +78,12 @@ Before you can configure prebuilds for your project the following must be true:
![The prebuild failure notification setting](/assets/images/help/codespaces/prebuilds-failure-notification-setting.png)
1. Optionally, at the bottom of the page, click **Show advanced options**.
![Screenshot of the prebuild configuration page, with "Show advanced options" highlighted](/assets/images/help/codespaces/show-advanced-options.png)
In the "Advanced options" section, if you select **Disable prebuild optimization**, codespaces will be created without a prebuild if the latest prebuild workflow has failed or is currently running. For more information, see "[Troubleshooting prebuilds](/codespaces/troubleshooting/troubleshooting-prebuilds#preventing-out-of-date-prebuilds-being-used)."
1. Click **Create**.
{% data reusables.codespaces.prebuilds-permission-authorization %}

View File

@@ -30,6 +30,38 @@ If you create a codespace and it does not open:
If you still cannot create a codespace for a repository where {% data variables.product.prodname_github_codespaces %} is available, {% data reusables.codespaces.contact-support %}
### Codespace creation fails
If the creation of a codespace fails, it's likely to be due to a temporary infrastructure issue in the cloud - for example, a problem provisioning a virtual machine for the codespace. A less common reason for failure is if it takes longer than an hour to build the container. In this case, the build is cancelled and codespace creation will fail.
{% note %}
**Note:** A codespace that was not successfully created is never going to be usable and should be deleted. For more information, see "[Deleting a codespace](/codespaces/developing-in-codespaces/deleting-a-codespace)."
{% endnote %}
If you create a codespace and the creation fails:
1. Check {% data variables.product.prodname_dotcom %}'s [Status page](https://githubstatus.com) for any active incidents.
1. Go to [your {% data variables.product.prodname_github_codespaces %} page](https://github.com/codespaces), delete the codespace, and create a new codespace.
1. If the container is building, look at the logs that are streaming and make sure the build is not stuck. A container build that takes longer than one hour will be canceled, resulting in a failed creation.
One common scenario where this could happen is if you have a script running that is prompting for user input and waiting for an answer. If this is the case, remove the interactive prompt so that the build can complete non-interactively.
{% note %}
**Note**: To view the logs during a build:
* In the browser, click **View logs.**
![Screenshot of the Codespaces web UI with the View logs link emphasized](/assets/images/help/codespaces/web-ui-view-logs.png)
* In the VS Code desktop application, click **Building codespace** in the "Setting up remote connection" that's displayed.
![Screenshot of VS Code with the Building codespace link emphasized](/assets/images/help/codespaces/vs-code-building-codespace.png)
{% endnote %}
2. If you have a container that takes a long time to build, consider using prebuilds to speed up codespace creations. For more information, see "[Configuring prebuilds](/codespaces/prebuilding-your-codespaces/configuring-prebuilds#configuring-a-prebuild)."
## Deleting codespaces
The owner of a codespace has full control over it and only they can delete their codespaces. You cannot delete a codespace created by another user.

View File

@@ -65,6 +65,24 @@ If the `devcontainer.json` configuration file for a prebuild configuration is up
If the workflow runs for a prebuild configuration are failing, you can temporarily disable the prebuild configuration while you investigate. For more information, see "[Managing prebuilds](/codespaces/prebuilding-your-codespaces/managing-prebuilds#disabling-a-prebuild-configuration)."
### Preventing out-of-date prebuilds being used
By default, if the latest prebuild workflow has failed, then a previous prebuild for the same combination of repository, branch, and `devcontainer.json` configuration file will be used to create new codespaces. This behavior is called prebuild optimization.
We recommend keeping prebuild optimization enabled, because it helps ensure that codespaces can still be created quickly if an up-to-date prebuild is not available. However, as a repository administrator, you can disable prebuild optimization if you run into problems with prebuilt codespaces being behind the current state of the branch. If you disable prebuild optimization, codespaces for the relevant combination of repository, branch, and `devcontainer.json` file will be created without a prebuild if the latest prebuild workflow has failed or is currently running.
{% data reusables.codespaces.accessing-prebuild-configuration %}
1. To the right of the affected prebuild configuration, select the ellipsis (**...**), then click **Edit**.
![Screenshot of a list of prebuilds, with "Edit" highlighted](/assets/images/help/codespaces/edit-prebuild-configuration.png)
1. Scroll to the bottom of the "Edit configuration" page and click **Show advanced options**.
![Screenshot of the prebuild configuration page, with "Show advanced options" highlighted](/assets/images/help/codespaces/show-advanced-options.png)
1. If you're sure you want to disable the default setting, select **Disable prebuild optimization**.
![Screenshot of the advanced option section and the "disable prebuild optmization" setting](/assets/images/help/codespaces/disable-prebuild-optimization.png)
1. To save your change, click **Update**.
## Further reading
- "[Configuring prebuilds](/codespaces/prebuilding-your-codespaces/configuring-prebuilds)"

View File

@@ -95,7 +95,7 @@ For more keyboard shortcuts, see the [CodeMirror documentation](https://codemirr
|<kbd>Command</kbd>+<kbd>V</kbd> (Mac) or </br> <kbd>Ctrl</kbd>+<kbd>V</kbd> (Windows/Linux) | Creates a Markdown link when applied over highlighted text{% endif %}
|<kbd>Command</kbd>+<kbd>Shift</kbd>+<kbd>P</kbd> (Mac) or </br> <kbd>Ctrl</kbd>+<kbd>Shift</kbd>+<kbd>P</kbd> (Windows/Linux) | Toggles between the **Write** and **Preview** comment tabs{% ifversion fpt or ghae or ghes > 3.4 or ghec %}
|<kbd>Command</kbd>+<kbd>Shift</kbd>+<kbd>V</kbd> (Mac) or </br> <kbd>Ctrl</kbd>+<kbd>Shift</kbd>+<kbd>V</kbd> (Windows/Linux) | Pastes HTML link as plain text{% endif %}{% ifversion fpt or ghae or ghes > 3.2 or ghec %}
|<kbd>Command</kbd>+<kbd>Shift</kbd>+<kbd>Opt</kbd>+<kbd>V</kbd> (Mac) or </br> <kbd>Ctrl</kbd>+<kbd>Shift</kbd>+<kbd>Alt</kbd>+<kbd>V</kbd> (Windows/Linux) | Pastes HTML link as plain text{% endif %}{% ifversion fpt or ghae or ghes > 3.2 or ghec %}
|<kbd>Command</kbd>+<kbd>Shift</kbd>+<kbd>Option</kbd>+<kbd>V</kbd> (Mac) or </br> <kbd>Ctrl</kbd>+<kbd>Shift</kbd>+<kbd>Alt</kbd>+<kbd>V</kbd> (Windows/Linux) | Pastes HTML link as plain text{% endif %}{% ifversion fpt or ghae or ghes > 3.2 or ghec %}
|<kbd>Command</kbd>+<kbd>Shift</kbd>+<kbd>7</kbd> (Mac) or </br> <kbd>Ctrl</kbd>+<kbd>Shift</kbd>+<kbd>7</kbd> (Windows/Linux) | Inserts Markdown formatting for an ordered list
|<kbd>Command</kbd>+<kbd>Shift</kbd>+<kbd>8</kbd> (Mac) or </br> <kbd>Ctrl</kbd>+<kbd>Shift</kbd>+<kbd>8</kbd> (Windows/Linux) | Inserts Markdown formatting for an unordered list{% endif %}
|<kbd>Command</kbd>+<kbd>Enter</kbd> (Mac) or </br> <kbd>Ctrl</kbd>+<kbd>Enter</kbd> (Windows/Linux) | Submits a comment

View File

@@ -19,7 +19,6 @@ shortTitle: GitHub App permissions
{% data variables.product.prodname_github_apps %} are created with a set of permissions. Permissions define what resources the {% data variables.product.prodname_github_app %} can access via the API. For more information, see "[Setting permissions for GitHub Apps](/apps/building-github-apps/setting-permissions-for-github-apps/)."
<span id="metadata-permissions"></span>
## Metadata
GitHub Apps have the **Read-only** metadata permission by default. The metadata permission provides access to a collection of read-only endpoints with metadata for various resources. These endpoints do not leak sensitive private repository information.
@@ -116,7 +115,6 @@ If you set the metadata permission to **No access** and select a permission that
- [`GET /users/:username/keys`](/rest/reference/users#list-public-keys-for-a-user)
{% ifversion fpt or ghes or ghec %}
<span id="permission-on-actions"></span>
## Actions
- [`GET /repos/:owner/:repo/actions/artifacts`](/rest/reference/actions#list-artifacts-for-a-repository) (read)
@@ -144,7 +142,6 @@ If you set the metadata permission to **No access** and select a permission that
- [`GET /repos/:owner/:repo/actions/workflows/:workflow_id/runs`](/rest/reference/actions#list-workflow-runs) (read)
{% endif %}
<span id="permission-on-administration"></span>
## Administration
- [`POST /orgs/:org/repos`](/rest/reference/repos#create-an-organization-repository) (write)
@@ -260,7 +257,6 @@ If you set the metadata permission to **No access** and select a permission that
{% endif %}
{% ifversion fpt or ghec %}
<span id="permission-on-blocking"></span>
## Blocking users
- [`GET /user/blocks`](/rest/reference/users#list-users-blocked-by-the-authenticated-user) (read)
@@ -269,7 +265,6 @@ If you set the metadata permission to **No access** and select a permission that
- [`DELETE /user/blocks/:username`](/rest/reference/users#unblock-a-user) (write)
{% endif %}
<span id="permission-on-checks"></span>
## Checks
- [`POST /repos/:owner/:repo/check-runs`](/rest/reference/checks#create-a-check-run) (write)
@@ -284,7 +279,6 @@ If you set the metadata permission to **No access** and select a permission that
- [`GET /repos/:owner/:repo/commits/:sha/check-runs`](/rest/reference/checks#list-check-runs-for-a-git-reference) (read)
- [`GET /repos/:owner/:repo/commits/:sha/check-suites`](/rest/reference/checks#list-check-suites-for-a-git-reference) (read)
<span id="permission-on-security-events"></span>
## Code scanning alerts
- [`GET /repos/:owner/:repo/code-scanning/alerts`](/rest/reference/code-scanning#list-code-scanning-alerts-for-a-repository) (read)
@@ -309,20 +303,17 @@ If you set the metadata permission to **No access** and select a permission that
{% endif -%}
{% ifversion fpt or ghec %}
<span id="permission-on-codespaces"></span>
## Codespaces
- [`GET /repos/:owner/:repo/codespaces/machines`](/rest/reference/codespaces#list-available-machine-types-for-a-repository)
{% endif %}
<span id="permission-on-statuses"></span>
## Commit statuses
- [`GET /repos/:owner/:repo/commits/:ref/status`](/rest/reference/commits#get-the-combined-status-for-a-specific-reference) (read)
- [`GET /repos/:owner/:repo/commits/:ref/statuses`](/rest/reference/commits#list-commit-statuses-for-a-reference) (read)
- [`POST /repos/:owner/:repo/statuses/:sha`](/rest/reference/commits#create-a-commit-status) (write)
<span id="permission-on-contents"></span>
## Contents
- [`GET /repos/:owner/:repo/:archive_format/:ref`](/rest/reference/repos#download-a-repository-archive) (read)
@@ -483,7 +474,6 @@ If you set the metadata permission to **No access** and select a permission that
{% endif %}
{% ifversion fpt or ghec or ghes > 3.3%}
<span id="permission-on-dependabot-secrets"></span>
## Dependabot secrets
- [`GET /repos/:owner/:repo/dependabot/secrets/public-key`](/rest/reference/dependabot#get-a-repository-public-key) (read)
@@ -502,7 +492,6 @@ If you set the metadata permission to **No access** and select a permission that
- [`DELETE /orgs/:org/dependabot/secrets/:secret_name`](/rest/reference/dependabot#delete-an-organization-secret) (write)
{% endif %}
<span id="permission-on-deployments"></span>
## Deployments
- [`GET /repos/:owner/:repo/deployments`](/rest/reference/deployments#list-deployments) (read)
@@ -514,7 +503,6 @@ If you set the metadata permission to **No access** and select a permission that
- [`GET /repos/:owner/:repo/deployments/:deployment_id/statuses/:status_id`](/rest/reference/deployments#get-a-deployment-status) (read)
{% ifversion fpt or ghes or ghec %}
<span id="permission-on-emails"></span>
## Email addresses
{% ifversion fpt or ghec -%}
@@ -526,7 +514,6 @@ If you set the metadata permission to **No access** and select a permission that
- [`GET /user/public_emails`](/rest/reference/users#list-public-email-addresses-for-the-authenticated-user) (read)
{% endif %}
<span id="permission-on-followers"></span>
## Followers
- [`GET /user/followers`](/rest/reference/users#list-followers-of-a-user) (read)
@@ -535,7 +522,6 @@ If you set the metadata permission to **No access** and select a permission that
- [`PUT /user/following/:username`](/rest/reference/users#follow-a-user) (write)
- [`DELETE /user/following/:username`](/rest/reference/users#unfollow-a-user) (write)
<span id="permission-on-keys"></span>
## Git SSH keys
- [`GET /user/keys`](/rest/reference/users#list-public-ssh-keys-for-the-authenticated-user) (read)
@@ -543,7 +529,6 @@ If you set the metadata permission to **No access** and select a permission that
- [`GET /user/keys/:key_id`](/rest/reference/users#get-a-public-ssh-key-for-the-authenticated-user) (read)
- [`DELETE /user/keys/:key_id`](/rest/reference/users#delete-a-public-ssh-key-for-the-authenticated-user) (write)
<span id="permission-on-gpg-keys"></span>
## GPG keys
- [`GET /user/gpg_keys`](/rest/reference/users#list-gpg-keys-for-the-authenticated-user) (read)
@@ -552,7 +537,6 @@ If you set the metadata permission to **No access** and select a permission that
- [`DELETE /user/gpg_keys/:gpg_key_id`](/rest/reference/users#delete-a-gpg-key-for-the-authenticated-user) (write)
{% ifversion fpt or ghec %}
<span id="permission-on-interaction-limits"></span>
## Interaction limits
- [`GET /user/interaction-limits`](/rest/reference/interactions#get-interaction-restrictions-for-your-public-repositories) (read)
@@ -560,7 +544,6 @@ If you set the metadata permission to **No access** and select a permission that
- [`DELETE /user/interaction-limits`](/rest/reference/interactions#remove-interaction-restrictions-from-your-public-repositories) (write)
{% endif %}
<span id="permission-on-issues"></span>
## Issues
Issues and pull requests are closely related. For more information, see "[List issues assigned to the authenticated user](/rest/reference/issues#list-issues-assigned-to-the-authenticated-user)." If your GitHub App has permissions on issues but not on pull requests, these endpoints will be limited to issues. Endpoints that return both issues and pull requests will be filtered. Endpoints that allow operations on both issues and pull requests will be restricted to issues.
@@ -626,7 +609,6 @@ Issues and pull requests are closely related. For more information, see "[List i
- [`DELETE /orgs/:org/teams/:team_slug/discussions/:discussion_number/reactions/:reaction_id`](/rest/reference/reactions#delete-team-discussion-reaction) (write)
- [`DELETE /orgs/:org/teams/:team_slug/discussions/:discussion_number/comments/:comment_number/reactions/:reaction_id`](/rest/reference/reactions#delete-team-discussion-comment-reaction) (write)
<span id="permission-on-members"></span>
## Members
{% ifversion fpt or ghec -%}
@@ -702,7 +684,6 @@ Issues and pull requests are closely related. For more information, see "[List i
- [`DELETE /teams/:team_id/repos/:owner/:repo`](/rest/reference/teams#remove-a-repository-from-a-team) (write)
- [`GET /teams/:team_id/teams`](/rest/reference/teams#list-child-teams) (read)
<span id="permission-on-organization-administration"></span>
## Organization administration
- [`PATCH /orgs/:org`](/rest/reference/orgs#update-an-organization) (write)
@@ -720,13 +701,11 @@ Issues and pull requests are closely related. For more information, see "[List i
- [`DELETE /orgs/:org/interaction-limits`](/rest/reference/interactions#remove-interaction-restrictions-for-an-organization) (write)
{% endif %}
<span id="permission-on-organization-events"></span>
## Organization events
- [`GET /users/:username/events/orgs/:org`](/rest/reference/activity#list-organization-events-for-the-authenticated-user) (read)
{% ifversion ghes %}
<span id="permission-on-organization-pre-receive-hooks"></span>
## Organization pre-receive hooks
- [`GET /orgs/:org/pre-receive-hooks`](/enterprise/user/rest/reference/enterprise-admin#list-pre-receive-hooks-for-an-organization) (read)
@@ -735,7 +714,6 @@ Issues and pull requests are closely related. For more information, see "[List i
- [`DELETE /orgs/:org/pre-receive-hooks/:pre_receive_hook_id`](/enterprise/user/rest/reference/enterprise-admin#remove-pre-receive-hook-enforcement-for-an-organization) (write)
{% endif %}
<span id="permission-on-organization-projects"></span>
## Organization projects
- [`POST /orgs/:org/projects`](/rest/reference/projects#create-an-organization-project) (write)
@@ -757,7 +735,6 @@ Issues and pull requests are closely related. For more information, see "[List i
- [`POST /projects/columns/cards/:card_id/moves`](/rest/reference/projects#move-a-project-card) (write)
{% ifversion fpt or ghec %}
<span id="permission-on-organization-user-blocking"></span>
## Organization user blocking
- [`GET /orgs/:org/blocks`](/rest/reference/orgs#list-users-blocked-by-an-organization) (read)
@@ -766,7 +743,6 @@ Issues and pull requests are closely related. For more information, see "[List i
- [`DELETE /orgs/:org/blocks/:username`](/rest/reference/orgs#unblock-a-user-from-an-organization) (write)
{% endif %}
<span id="permission-on-organization-hooks"></span>
## Organization webhooks
- [`GET /orgs/:org/hooks`](/rest/reference/orgs#webhooks/#list-organization-webhooks) (read)
@@ -779,7 +755,6 @@ Issues and pull requests are closely related. For more information, see "[List i
### Teams
- [`DELETE /teams/:team_id/projects/:project_id`](/rest/reference/teams#remove-a-project-from-a-team) (read)
<span id="permission-on-pages"></span>
## Pages
GitHub Pages can only be created or unpublished by a repository owner or administrator.
@@ -795,12 +770,10 @@ GitHub Pages can only be created or unpublished by a repository owner or adminis
- [`POST /repos/:owner/:repo/pages/deployment`](/rest/reference/repos#create-a-github-pages-deployment) (write)
{% endif %}
<span id="permission-on-profile"></span>
## Profile
- [`PATCH /user`](/rest/reference/users#update-the-authenticated-user) (write)
<span id="permission-on-pull-requests"></span>
## Pull requests
Pull requests and issues are closely related. If your GitHub App has permissions on pull requests but not on issues, these endpoints will be limited to pull requests. Endpoints that return both pull requests and issues will be filtered. Endpoints that allow operations on both pull requests and issues will be restricted to pull requests.
@@ -889,7 +862,6 @@ Pull requests and issues are closely related. If your GitHub App has permissions
- [`PUT /repos/:owner/:repo/pulls/:pull_number/reviews/:review_id/dismissals`](/rest/reference/pulls#dismiss-a-review-for-a-pull-request) (write)
{% ifversion ghes %}
<span id="permission-on-repository-pre-receive-hooks"></span>
## Repository pre-receive hooks
- [`GET /repos/:owner/:repo/pre-receive-hooks`](/enterprise/user/rest/reference/enterprise-admin#list-pre-receive-hooks-for-a-repository) (read)
@@ -898,7 +870,6 @@ Pull requests and issues are closely related. If your GitHub App has permissions
- [`DELETE /repos/:owner/:repo/pre-receive-hooks/:pre_receive_hook_id`](/enterprise/user/rest/reference/enterprise-admin#remove-pre-receive-hook-enforcement-for-a-repository) (write)
{% endif %}
<span id="permission-on-repository-projects"></span>
## Repository projects
- [`GET /projects/:project_id`](/rest/reference/projects#get-a-project) (read)
@@ -923,7 +894,6 @@ Pull requests and issues are closely related. If your GitHub App has permissions
### Teams
- [`DELETE /teams/:team_id/projects/:project_id`](/rest/reference/teams#remove-a-project-from-a-team) (read)
<span id="permission-on-repository-hooks"></span>
## Repository webhooks
- [`GET /repos/:owner/:repo/hooks`](/rest/reference/webhooks#list-repository-webhooks) (read)
@@ -935,7 +905,6 @@ Pull requests and issues are closely related. If your GitHub App has permissions
- [`POST /repos/:owner/:repo/hooks/:hook_id/tests`](/rest/reference/repos#test-the-push-repository-webhook) (read)
{% ifversion fpt or ghec %}
<span id="permission-on-secrets"></span>
## Secrets
- [`GET /repos/:owner/:repo/actions/secrets/public-key`](/rest/reference/actions#get-a-repository-public-key) (read)
@@ -955,7 +924,6 @@ Pull requests and issues are closely related. If your GitHub App has permissions
{% endif %}
{% ifversion ghes or ghec %}
<span id="permission-on-secret-scanning-alerts"></span>
## Secret scanning alerts
- [`GET /repos/:owner/:repo/secret-scanning/alerts`](/rest/reference/secret-scanning#list-secret-scanning-alerts-for-a-repository) (read)
@@ -965,7 +933,6 @@ Pull requests and issues are closely related. If your GitHub App has permissions
{% endif %}
{% ifversion fpt or ghes or ghec %}
<span id="permission-on-self-hosted-runners"></span>
## Self-hosted runners
- [`GET /orgs/:org/actions/runners/downloads`](/rest/reference/actions#list-runner-applications-for-an-organization) (read)
@@ -981,21 +948,18 @@ Pull requests and issues are closely related. If your GitHub App has permissions
- [`DELETE /orgs/:org/actions/runners/:runner_id/labels/:name`](/rest/reference/actions#remove-a-custom-label-from-a-self-hosted-runner-for-an-organization) (write)
{% endif %}
<span id="permission-on-single-file"></span>
## Single file
- [`GET /repos/:owner/:repo/contents/:path`](/rest/reference/repos#get-repository-content) (read)
- [`PUT /repos/:owner/:repo/contents/:path`](/rest/reference/repos#create-or-update-file-contents) (write)
- [`DELETE /repos/:owner/:repo/contents/:path`](/rest/reference/repos#delete-a-file) (write)
<span id="permission-on-starring"></span>
## Starring
- [`GET /user/starred/:owner/:repo`](/rest/reference/activity#check-if-a-repository-is-starred-by-the-authenticated-user) (read)
- [`PUT /user/starred/:owner/:repo`](/rest/reference/activity#star-a-repository-for-the-authenticated-user) (write)
- [`DELETE /user/starred/:owner/:repo`](/rest/reference/activity#unstar-a-repository-for-the-authenticated-user) (write)
<span id="permission-on-team-discussions"></span>
## Team discussions
- [`GET /teams/:team_id/discussions`](/rest/reference/teams#list-discussions) (read)

View File

@@ -0,0 +1,7 @@
# Reference: PR#31251
# New action for the `workflow_run` webhook event that is triggered when a workflow run is `in_progress`.
versions:
fpt: '*'
ghec: '*'
ghes: '>=3.8'
ghae: '>=3.8'

View File

@@ -0,0 +1,3 @@
{% data reusables.repositories.navigate-to-repo %}
{% data reusables.repositories.sidebar-settings %}
1. In the "Code & automation" section of the sidebar, click **{% octicon "codespaces" aria-label="The Codespaces icon" %} {% data variables.product.prodname_codespaces %}**.

View File

@@ -1,4 +1,4 @@
Key | Type | Description
----|------|-------------
`action`|`string` | The action that was performed. Can be one of `requested` or `completed`.
`action`|`string` | The action that was performed. Can be one of `requested`{% ifversion actions-workflow-run-in-progress %}, `in_progress`,{% endif %} or `completed`.
`workflow_run`| `object` | The workflow run. Includes information such as `artifacts_url`, `check_suite_id`, `conclusion`, `head_branch`, and `head_sha`.

View File

@@ -1,8 +1,3 @@
# Redirects are cached in 'lib/redirects/.redirects-cache.json'. If changes made here are not being reflected
# on your local server, delete the cache file by running the following command, then restart your server.
#
# rm lib/redirects/.redirects-cache.json
# These urls are exceptions to the versionless redirect fallbacks (described in lib/all-versions.js).
# See the comment in lib/redirects/precompile.js for an explanation of these exceptions.
# Originally shipped in pull #20947 on 10/15/21

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:1dbf076552255ba4ce2e26ac4cfe4f816f3e8a5308a9f27fde71d61d7eca3543
size 786912
oid sha256:8f1f283e4c653b8be1e984c6e14b1ff2296ef20eb55330830471f9abee6b6708
size 786903

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:382ebb5b9a69eb56f86e5aac3f79d04433e53d740289fe12ce930c44180b5049
size 1551907
oid sha256:25b3201bc2f0dff7ae9503c98f21317be471e23ddbbdec289492231843d2d3a2
size 1551636

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:5788cb14bbd3e8415eab1abc3a6a224f131d04ae41f6ca052cb3ec8b38c86dba
size 1103791
oid sha256:faeb8677ff9331f4d016e86cd4a489baa78f57ecf246e78fb36c63ddd2a54e91
size 1103856

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:358880886a5cecd72b57acef6bfb5b65a8caba0f969238cbb48cd204d679b6cd
size 4475527
oid sha256:e158fe616874713c9ed9b3ccf5941a324e1c67089afb459854e724053e528b22
size 4475874

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:f8ed753fe87f77b435849e3e8df340c8a7b48592d7075d8d1ff11fbce3b7a1be
size 740995
oid sha256:f48c9875e7e6e5174ef94cfc259bbeaacf9898abd7b09049a3727d45017bc40d
size 740906

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:21ad16d1590996adc8f7f2c065eb126c2b1496cfc1b6d3de23df1769aad418d8
size 3089400
oid sha256:dca77ee78c033c7561663914982e0abee9ae5ea7559c075c6f583601e85c95b4
size 3099807

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:cf8c969785d6df021a111c8a49a38d9eac2e6460127a5c9ddad89143c8e72f99
size 829102
oid sha256:9db166aea2d0cc4a42992dc98afe4323feef2989815937f85616251ad852cf25
size 828576

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:9894bf172830c790f7e977436d1cfb16473f24b5ee23b9cf6fe0c220e573c2c5
size 4379408
oid sha256:21f5e51ed5aa17cd665de80226a12bc43a8b18a259492d8df3988fc9de262bea
size 4378445

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:27b281ade5ad763c643a0ea4b1b5e38fc48615d4698e20fd28fe72db27710d45
size 727905
oid sha256:9112b36adafd336cbb21858e4cdafa2dc0d61c6822686bc27652fe841bc31c3f
size 727927

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:9dd734190d0720a5c907e3dd7fbf71b570b54d3561430d7128f6796b5875c27a
size 3081354
oid sha256:0df36c26e3e46918714b25a380ccfe66cd90e36d0bf1f694f5e001554b6a2616
size 3081881

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:320200138d25833a284604a8eb26269c5f29ce83f9ffec796190f64f9de37b32
size 811738
oid sha256:1faef474f9f4a3c77619f0a7ed9b04e239071fdee476918e77c6a68d2f829f04
size 811737

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:ae707061a85dee83cf653137a0f730e8eaeb296c9410be15857619b3ae78d2b4
size 1605567
oid sha256:05cd97e4dd44c1b69e495d5f18abe3b2c61a6afab363f9aba15f6b40020912b5
size 1605830

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:dcf3fbe238768ff40e301abb5b751b6776019ad085266fa32ced7e43ecd7af1b
size 1140129
oid sha256:64131c55f1dbf9bb005a1c293c20a2dced5522a4a1e0886f1191d18b9198f4c6
size 1139861

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:7b81dc115e5b5e85c0c41ea85ce27e00a903d10ba9b5e04ef71902e2954d3011
size 4580319
oid sha256:f43aaeb0a8add29049374930b846eca1f7524971ba3ac994674a156e5a00d265
size 4580530

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:c35c078b9d094a1d004d35296ac7c9a201d3fd788b53c2e41700c80ac7dc44ec
size 762735
oid sha256:3961cbd6c9bcf4c0a33f221afde06b505829112b4297b95be352ea973f475f53
size 762799

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:03fcdfb50af69e0b3c6e1d98fd78942bc0aec5d8fd9eec0917a31b1f5257631b
size 3182880
oid sha256:d323a8aa6cb2b373c1a8c29cc8dbab123c870bcec3d7e805004909a4c82eb9fd
size 3193497

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:b037aef94482d0e31592fa38438b66ad9a997baf3eaf7a5847c61aa305878399
size 853268
oid sha256:512812787db3857f7892e22f0f0a5637bbc557f8c9cc980591ded19b2acaef96
size 852740

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:d4bd1a3440fae9b714b64c063f41aec70794beff07e543efd65418fc43d5a71e
size 4509837
oid sha256:c8f47854a3d9b3f01fb9cfc5905939fbbc70c0934673b360832070f71421e6ba
size 4509118

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:f45038b37c0fbedc2b420f97ab585192d10160cce60b810f5c527ba3d4a02d4a
size 749843
oid sha256:185ae5e5da006a74e11de54704c0601d4374de3a40da05465617757d97125206
size 749613

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:5dea767577b41103d50a886888f602463156d13153f07a50a2ab99e61605c97d
size 3176770
oid sha256:7b31325281eddfbb2d65713765550ebfafb1830f83b9b0c2ef7c79a3535c9b0b
size 3177326

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:15c886eeeb5a7fc3ec442025286288fb55ba5985562f5feaeea0958aca9b70d8
size 813759
oid sha256:c1636e0e2903a08e6d5dc11fc91b5ee014e9fd13090c64b3b1aba6467f802d84
size 813726

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:76aab6ec25b21beb4851fe111f34d1ba5b8a2c3c71fafcf01c0daaedb312ecc8
size 1618443
oid sha256:671b51cee181433b98d4db32bbd6b605a844456f76c93ed4131a02c1679b5dc1
size 1618330

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:480daa10b6870ef445f16491a018aae8ac707f8aa4b6bff12dea5f349649e3db
size 1151393
oid sha256:39f8ca2665eeaba3059fa4ae1cd74e302b7a600f7063a41ee4bbed440acfb6a2
size 1151275

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:1c3fef47e441e2c7472ab3711452d28e099b11040ca46af9d298b140583d2828
size 4639933
oid sha256:e4b6accd5a0bfe6a2071dd5a0524ab134213fd223f174de9ce7878b796ccf490
size 4639915

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:fa21e9db1de0690136ceef09c14aaf99b91058c081c60698205fca4307a45e4e
size 767077
oid sha256:cd4d49116c90a63b5fe8a4eb77ad23acefe38ca78f52f2ca33722918d8ed7046
size 767151

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:bd70bf9192a797c345a246ba3d617553f51a3b9405c0380d168ff45d7bc64bfd
size 3209507
oid sha256:a8a9635e902c064f8d86cdaa92bd275832cc314056c352c69ac7b08210110f4c
size 3221133

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:8232f487c848c0727157f6ecefe5e3a20291351cc3648e3fc0aa124b9eb82b96
size 855646
oid sha256:3d04fc5fb0c96351c1394bfe6e482aaf75d111b339876c6f1aef02a2b716dcf2
size 855113

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:f2ebfffe0d5d378986dab868d7cd244d1c68e145b0f7aa3a329177978335a7eb
size 4537051
oid sha256:90be8e9893e3123af4ee9efa44611a917934f9c9200662a70a05cdd37ef3fee7
size 4535929

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:66785c22fba60b65468680f16f8cafaffc33d0e5e0ebe202bc1f1414b9510c56
size 754075
oid sha256:83874cf38fbf2724d95059837ab4dd288742a0b59740feace54e55256a6b3f4e
size 754018

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:10871d299fe29cee2f6a82031d40c34233ece732679c050eb3218dcca505298e
size 3202376
oid sha256:f7b79d18c761d91c140c4e426ad8489fab2d0396441e22f3f065f604845ac498
size 3203535

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:d6a75f48195adadd45dd867a8ee62565cd59bc1fcf892838ee1229c027020e54
size 844215
oid sha256:3c8c43d3cc5990e06d20d84648b2f732d6b7abd76f22503b289af4cacef17414
size 844267

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:0becf0063cb3448acfcfc91f3d44fb38567d00238345e74e16134e96c0b7eea7
size 1679812
oid sha256:1498b0accaae942c95cf8672fbf2fe1e2d515f4bc3ac5edeccc6b7a481dc4c35
size 1679776

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:3a59fa5e91cbf18f01ab1d01495aee75158b1c1cd6dc5d6c6cfe9615c6743ef3
size 1192263
oid sha256:ff3bea8b0db9eb4d4d4328765e519aea6b71ea950f87c680b47e87020a09e02f
size 1192163

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:ea5de317f2b18106d3104bf0d753edd348b3d5744b53fb513dd7214a396e73c4
size 4808381
oid sha256:0e0cf168b7ba3787ceb4e37d4ad8e7206b500db84ce66a5af910d639828926f7
size 4808578

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:e513300627104a1eb534151c1da18a78d9443603311a4581d808bdfdc4580814
size 792106
oid sha256:a0d85f1bba3c7c5bd31c1352dd091daa0dfb58cbbec22abea1c00ffc8c1a847b
size 792254

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:3b282f2658668eccc89f22291bc8f5af3133ce5864364d3b3910e4639fabec3e
size 3324376
oid sha256:fbe2b1569ed749f2d4fe1847dc9e1bf93159b8343fe93582247fab1f6ede0fce
size 3334814

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:b9777a0c45337314e2c823769352494d56bf4db19bab8493aca7e1f2fe01e679
size 885887
oid sha256:2c72f1d5df1511d173f79dd0d877e36b623c8d426e1b66e270e23cda61d29c10
size 885336

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:47017a4eef6cdcd1a8abccaae0ebf0b81489c2e6d3f98b661b1fbb67218dfd4d
size 4708025
oid sha256:1b694f38d617107020ee760ae47cbaa9e95159f2686e4b0a6d8075c60212eae2
size 4708485

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:639ffd61558b486b30f650bcd90fa27cc8052e356df61ebf20445bb590046b82
size 779153
oid sha256:4dcf09a160cbd6eed3578a4b0a193ab89f599cbda78b7a90746897f1ab99cff7
size 779068

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:b3cdc05bd3978fcf18ad0711199556efdda27f918415f49ef5bd382ea261970a
size 3318479
oid sha256:7aa25abaaea171749156eba6e4c8b3003bbc7d8a1e9540974f635c09beb3cc16
size 3319816

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:d9f43057bf970b674d48b88e7843ecf9b5d620fd921803ea664d3b750dda3d06
size 866849
oid sha256:23da13cb3c8a358cd8defe42749db402cc042149e3f3d2aee7ec050e86b71044
size 866890

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:73c2fd488276350e2092cb922f94ca7f0b46fa6e70ca837bfcfb224d201f82da
size 1722153
oid sha256:636bb2785b5ac5fbe3ff658c209b4f485f58d0dbb2ec512e6f8fb668e1aede6c
size 1721900

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:7b7c0e9bcd5f76d56dafcfcd9fceb546f67b7aa019769d2698aa56911689bd69
size 1225242
oid sha256:26ee39025810eee5c5d9d33ace6d823d4791f7df4d094765f6c9f62e44efacbc
size 1225131

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:839a62b5370525db69971618cfb42e38c4656b13ba4fc390d2be75fa57b19dcf
size 4940559
oid sha256:a27acea68a49c536bcf41a2bf03cd28d538998f77d90bb7708296ba3808e8046
size 4940924

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:d011ea8ec42564374b8cbf4be3b642013597b96a8399f7f60f942017d5dbbe5c
size 814702
oid sha256:96bcd76cf340ccd78167e82cec311f1c0e50556b91a1d487097c8285fdc3de8f
size 815254

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:0707e6da4244f0c3930115bea9ae0bf5f24a6b73cb9572af5c981ea41525645e
size 3426473
oid sha256:872738100b204fcc31a8e5431d562a9a9e73fbb3ad6955dcec971a2f982a797a
size 3438009

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:860377e54e3b69520506f894688b2904e5f009e02cc235546c011637fc5925a1
size 911406
oid sha256:adea2cfc9a4e019fbc6b04c2655d313fa355a48aba7755944ab40217f131a533
size 910264

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:1f9bdfbd1ddd2d28bafb0f2c0c775b74ecbef92bf019a7ce24bdb130167b58b1
size 4847841
oid sha256:ec60e82f9a7ad68691427be79fa72f0e42192c76dd3de48c491ba597c212b287
size 4847616

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:7d48a64a6a70c9ae471a3d6396256f358a92bcce3ba925fd6a887700576a2a6b
size 801218
oid sha256:72950c44f9548878a665c3e08df3dd2398db62c6749b3584563488efa41a0e7a
size 801126

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:829bf47714b4cab690478595599d62b6d9d27c2bcb6a15a00915e402992571a5
size 3418830
oid sha256:da266d7b93982d1a7d65b7b047505d22e0446f4742a239ff479fcde958d2586a
size 3420039

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:b2f8619501baa49fd4f028bf9a3f99eb9f63a27c793bc7d0a18b4e4f6a178b77
size 1014393
oid sha256:0c17affabaa778cf9dedce28abeed7204303873ea8b189f4e75180e6d5ec7087
size 1014581

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:bb0a54175293d2a05ff4e7b510482453c75eb44df173d3b03c314dc732d2a590
size 1825637
oid sha256:073f0bd0b06614d6480a6cda98d31fa0e14fac7b8d5cd2174b57880dffc11cd6
size 1824910

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:78dde32007b4b3e43c5048d29035458d48c7cc129e2f0fe7cab577cda66c73f9
size 1475702
oid sha256:6558cf9664ab3af271a926368ca392d30adf411ba5a133338f894e0b42f224e5
size 1476323

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:600437afa8e1451c61c8325ab2755416b4e9fdc1357d95dabed41e92c8a0fa40
size 5692311
oid sha256:02ff0510dc91028cd6c8e1c9d5da676b65de052453d66346b890633545221183
size 5691948

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:f3ea86e5df4252fccfbe81d0c18a76cc6d43f1bb019345ae781fc7d3c6f63c5d
size 944826
oid sha256:30117691658e7f20387504ff26b739cb6890bc3da48a9a5b23394448ee0fe594
size 945728

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:0bc302cb64d7ca4a830c835a06558730b350140726c37b1e604eb797f8e40c1c
size 3899400
oid sha256:11655333c87e86f4a9de3743a1db0fee9d73b1b82816fc33212d3ce7c53454c6
size 3913927

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:a759cc31f523c81d18cc07075ad4265f980215bfd311b2d4fee0beaddc47bcbb
size 1064584
oid sha256:8075ae8f00ebadcbdfc005acdf92ce160bd7051edd36c1ee49530f6c438dbef0
size 1064220

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:b59437e3d6d6df9990bd6ad330e753fe20f11fc0ac35413aa3492ce3a07c82d7
size 5508923
oid sha256:f2d5f7cf55c254beaf958bd2aefd840c956913dac050f5639e30156bd36712e4
size 5509362

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:5adb21172b6b5752fb6890ef6cd3958a6c159c3d0e81c676c192faf4f04e99bd
size 928112
oid sha256:32ac10a9210d1325e61d51123334b9e91d2e58a397fc5c22e0826ef05daafc7b
size 928614

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:337856767fe72cbfb5c620555e5e7c76fb05c64436f1c69b8b183f351a397c18
size 3866601
oid sha256:331e15688954ee273394b6ef855522d4b94711c34f3cf82305eca1197e7a53d8
size 3869563

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:f72c628f925f90525573915a52512dc4ffab2199241e2d589e36b9346e2d8bf6
size 651872
oid sha256:dcabfe4de665762b6a25c2c256e078ca3ddc3fb7f5eb9dbe437c5c8e769d2a8d
size 651919

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:6166f3f1ef03d785962efca6ecc896e3c093c827db9404cd2d750559def27618
size 1305021
oid sha256:2bbac1aa1c53c00ea9185156a325f4a770e78945ebf28626b3d7085b9e143da5
size 1304989

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:8d9566e6bae6cb6bbf7d263b3d67f1b2431ae22fe4db5d4bd92e926008533fbd
size 949651
oid sha256:ef5f289d24163cddaff00305cd52c636ec35ad8ae502fbc2ef614218b000bba6
size 949708

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:2de075d0d32bfee973e6e31bcb41298ed5919e3494e7e6000bb5f14612e94961
size 3766183
oid sha256:e20978e1f2b713a2ea28a3ac23f61cf16ed8ebe1426524e80b2822897b3ff8cf
size 3766031

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:f1f59a2254f66299f3596ca1b216b50af2044ea91b1e2211a2f69ee860c7962a
size 622652
oid sha256:31af60d045d32696e543143769b35a088b0dc3f9fe7eb75b08e6ff119c3c9676
size 623214

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:a2338bd0efe28cc4ea2837645c08199e15eb2d31f431d992a61b8554fcafa60a
size 2524621
oid sha256:8baf4e67b70f82aaeca76fff37938c50daa674c3cb2fd83427d710796109c543
size 2535357

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:417f522830b372443b8dceea6bbfcd7f42eed82c696bad5ceec9d9e04a769f7c
size 685629
oid sha256:14b33a2939b7b6160220532b22ad38d5dc7deb09193bcbf0cad5c23c44f24ace
size 685437

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:131944e38376f0cbd6223320274ab187bcb4992634bfc800a1a777dabc3f6cea
size 3542498
oid sha256:a47b4b2cf5c1ecff819d2952950c294c9819ca37533e6e7e629770510c5db403
size 3544607

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:1ada6d0657be4753241837a6960389fdf5b9853d235a21312567779cae124465
size 612292
oid sha256:2ecee43be40bb9427f2a308ae57b103f003600563e3475bda68669aab9622b03
size 612776

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:94a5c66aac1d3e73244adcc80e9a6263de4324539e1f63a0daac0749e3889766
size 2521035
oid sha256:08a934e0d624c680258ccd1942fc8e8417dfa5ef08efce9250bfa64bf2bdc0b2
size 2523325

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:8f826a70b8f054f775acb17bc58e4578e08072e52a910da6d3e044f8bec01bd3
size 996814
oid sha256:1de447defad314d33e0d245a72ff72d068e540998068d7179297cf9acd772215
size 996687

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:eadf472dee673859ae733077a853370726665d0001d3a3c2b9a4e3cbe71879f3
size 1966776
oid sha256:e36fac5a08d50e7b6378bdff762e967818ddff5dea4e3878fee5601b9019d399
size 1966850

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:e7f00c5acd0967d977c70942a9b4826728c7d65a725dd98d9e414a10acedc3b7
size 1419672
oid sha256:3444271ee822c51701ffcc1e53255a15b3dfa5bf9f56d3f30cf260ba2c9315eb
size 1414859

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:e261a5fb7944a4388df66cba5a554f267f9267e58ae12ef616f41493eeeea152
size 5753803
oid sha256:fc1342dca34689380c5288e351ddd56ca075e6105b2198f11f38bc2aee7b1019
size 5755227

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:c3a420ddc41abc5bb4a5df8ad729932072937ac993ae3eb5883e8caa5006ee8f
size 948945
oid sha256:8a75840acffa8a13c42f1aec5b718384a0fb6c8a2bcde8df91dcd9671e66820d
size 949837

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:c14950454caeb34879f126c5e05f1dd7cb748f802dab136412649d06daa1f2ac
size 4059641
oid sha256:c9f1ba887805ba2aa273bbc62e40709ba57f3f6ae7c44d0c6dcb0624973b0d12
size 4074704

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:8df5b1350bea202a6da75b399457820caf431cfd66ad414334396699354eb61d
size 1054990
oid sha256:82ffbd0de390318afb7c9b0ce27bea6cc9ed196334daf533b828505dc98bb9b3
size 1054265

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:c691961cef4c6666f87459d23a848f2051bfcd6e7de4c9b19586f517141bdd92
size 5652852
oid sha256:0211e27509fe9ccd177246963946e31efe28d46ffcb830b1b3d2709b88bc2ab0
size 5651556

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:f96148d8b48b73633f5cd752d52c34d0633a4dcd84b2918aab8e04b2bf86d083
size 931946
oid sha256:b241368cdf92d157978b279dc88e06377d09e929b6be131f3a37f242076f5b87
size 932335

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:a04bb5db04531c9262d6bd6d341a926f38c03d3337e807a461dd86438c06aac0
size 4020181
oid sha256:614a2841d6b7affe8edde5243d7c9aa3493d88b88b491501f93a3d0e2e159776
size 4022145

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