зеркало из https://github.com/github/docs.git
Merge branch 'main' into copilot-ga-megabranch
This commit is contained in:
Коммит
14b008c99b
|
@ -17,7 +17,7 @@ jobs:
|
|||
check_all_english_links:
|
||||
name: Check all links
|
||||
if: github.repository == 'github/docs-internal'
|
||||
runs-on: self-hosted
|
||||
runs-on: ubuntu-20.04-xl
|
||||
env:
|
||||
GITHUB_TOKEN: ${{ secrets.DOCUBOT_READORG_REPO_WORKFLOW_SCOPES }}
|
||||
FIRST_RESPONDER_PROJECT: Docs content first responder
|
||||
|
@ -25,6 +25,9 @@ jobs:
|
|||
REPORT_LABEL: broken link report
|
||||
REPORT_REPOSITORY: github/docs-content
|
||||
steps:
|
||||
- name: Check that gh CLI is installed
|
||||
run: gh --version
|
||||
|
||||
- name: Check out repo's default branch
|
||||
uses: actions/checkout@dcd71f646680f2efd8db4afa5ad64fdcba30e748
|
||||
- name: Setup Node
|
||||
|
@ -60,8 +63,8 @@ jobs:
|
|||
DISABLE_REWRITE_ASSET_URLS: true
|
||||
run: |
|
||||
node server.mjs > /tmp/stdout.log 2> /tmp/stderr.log &
|
||||
sleep 5
|
||||
curl --retry-connrefused --retry 4 -I http://localhost:4000/
|
||||
sleep 6
|
||||
curl --retry-connrefused --retry 5 -I http://localhost:4000/
|
||||
|
||||
- if: ${{ failure() }}
|
||||
name: Debug server outputs on errors
|
||||
|
|
|
@ -24,7 +24,7 @@ concurrency:
|
|||
|
||||
jobs:
|
||||
check-links:
|
||||
runs-on: ${{ fromJSON('["ubuntu-latest", "self-hosted"]')[github.repository == 'github/docs-internal'] }}
|
||||
runs-on: ${{ fromJSON('["ubuntu-latest", "ubuntu-20.04-xl"]')[github.repository == 'github/docs-internal'] }}
|
||||
steps:
|
||||
- name: Checkout
|
||||
uses: actions/checkout@dcd71f646680f2efd8db4afa5ad64fdcba30e748
|
||||
|
|
|
@ -23,9 +23,9 @@ concurrency:
|
|||
|
||||
jobs:
|
||||
test:
|
||||
# Run on self-hosted if the private repo or ubuntu-latest if the public repo
|
||||
# Run on ubuntu-20.04-xl if the private repo or ubuntu-latest if the public repo
|
||||
# See pull # 17442 in the private repo for context
|
||||
runs-on: ${{ fromJSON('["ubuntu-latest", "self-hosted"]')[github.repository == 'github/docs-internal'] }}
|
||||
runs-on: ${{ fromJSON('["ubuntu-latest", "ubuntu-20.04-xl"]')[github.repository == 'github/docs-internal'] }}
|
||||
timeout-minutes: 60
|
||||
strategy:
|
||||
fail-fast: false
|
||||
|
|
Двоичный файл не отображается.
После Ширина: | Высота: | Размер: 72 KiB |
Двоичный файл не отображается.
После Ширина: | Высота: | Размер: 9.9 KiB |
Двоичный файл не отображается.
После Ширина: | Высота: | Размер: 10 KiB |
Двоичный файл не отображается.
После Ширина: | Высота: | Размер: 9.5 KiB |
Двоичный файл не отображается.
После Ширина: | Высота: | Размер: 8.3 KiB |
|
@ -21,7 +21,7 @@ export const GuideCards = () => {
|
|||
return (
|
||||
<div>
|
||||
<div className="d-lg-flex flex-items-stretch">
|
||||
<ul className="d-flex flex-wrap gutter">
|
||||
<ul className="d-flex flex-wrap gutter width-full">
|
||||
{(featuredLinks.guideCards || []).map((guide) => {
|
||||
return <GuideCard key={guide.href} guide={guide} />
|
||||
})}
|
||||
|
|
|
@ -7,6 +7,7 @@ redirect_from:
|
|||
- /actions/configuring-and-managing-workflows/creating-and-storing-encrypted-secrets
|
||||
- /actions/configuring-and-managing-workflows/using-variables-and-secrets-in-a-workflow
|
||||
- /actions/reference/encrypted-secrets
|
||||
miniTocMaxHeadingLevel: 3
|
||||
versions:
|
||||
fpt: '*'
|
||||
ghes: '*'
|
||||
|
@ -284,49 +285,64 @@ A workflow created in a repository can access the following number of secrets:
|
|||
* If the repository is assigned access to more than 100 organization secrets, the workflow can only use the first 100 organization secrets (sorted alphabetically by secret name).
|
||||
* All 100 environment secrets.
|
||||
|
||||
Secrets are limited to 64 KB in size. To use secrets that are larger than 64 KB, you can store encrypted secrets in your repository and save the decryption passphrase as a secret on {% data variables.product.prodname_dotcom %}. For example, you can use `gpg` to encrypt your credentials locally before checking the file in to your repository on {% data variables.product.prodname_dotcom %}. For more information, see the "[gpg manpage](https://www.gnupg.org/gph/de/manual/r1023.html)."
|
||||
Secrets are limited to 64 KB in size. To store larger secrets, see the "[Storing large secrets](#storing-large-secrets)" workaround below.
|
||||
|
||||
### Storing large secrets
|
||||
|
||||
To use secrets that are larger than 64 KB, you can use a workaround to store encrypted secrets in your repository and save the decryption passphrase as a secret on {% data variables.product.prodname_dotcom %}. For example, you can use `gpg` to encrypt a file containing your secret locally before checking the encrypted file in to your repository on {% data variables.product.prodname_dotcom %}. For more information, see the "[gpg manpage](https://www.gnupg.org/gph/de/manual/r1023.html)."
|
||||
|
||||
{% warning %}
|
||||
|
||||
**Warning**: Be careful that your secrets do not get printed when your action runs. When using this workaround, {% data variables.product.prodname_dotcom %} does not redact secrets that are printed in logs.
|
||||
**Warning**: Be careful that your secrets do not get printed when your workflow runs. When using this workaround, {% data variables.product.prodname_dotcom %} does not redact secrets that are printed in logs.
|
||||
|
||||
{% endwarning %}
|
||||
|
||||
1. Run the following command from your terminal to encrypt the `my_secret.json` file using `gpg` and the AES256 cipher algorithm.
|
||||
1. Run the following command from your terminal to encrypt the file containing your secret using `gpg` and the AES256 cipher algorithm. In this example, `my_secret.json` is the file containing the secret.
|
||||
|
||||
``` shell
|
||||
$ gpg --symmetric --cipher-algo AES256 my_secret.json
|
||||
```
|
||||
```bash
|
||||
gpg --symmetric --cipher-algo AES256 my_secret.json
|
||||
```
|
||||
|
||||
1. You will be prompted to enter a passphrase. Remember the passphrase, because you'll need to create a new secret on {% data variables.product.prodname_dotcom %} that uses the passphrase as the value.
|
||||
|
||||
1. Create a new secret that contains the passphrase. For example, create a new secret with the name `LARGE_SECRET_PASSPHRASE` and set the value of the secret to the passphrase you selected in the step above.
|
||||
1. Create a new secret that contains the passphrase. For example, create a new secret with the name `LARGE_SECRET_PASSPHRASE` and set the value of the secret to the passphrase you used in the step above.
|
||||
|
||||
1. Copy your encrypted file into your repository and commit it. In this example, the encrypted file is `my_secret.json.gpg`.
|
||||
1. Copy your encrypted file to a path in your repository and commit it. In this example, the encrypted file is `my_secret.json.gpg`.
|
||||
|
||||
1. Create a shell script to decrypt the password. Save this file as `decrypt_secret.sh`.
|
||||
{% warning %}
|
||||
|
||||
``` shell
|
||||
#!/bin/sh
|
||||
**Warning**: Make sure to copy the encrypted `my_secret.json.gpg` file ending with the `.gpg` file extension, and **not** the unencrypted `my_secret.json` file.
|
||||
|
||||
# Decrypt the file
|
||||
mkdir $HOME/secrets
|
||||
# --batch to prevent interactive command
|
||||
# --yes to assume "yes" for questions
|
||||
gpg --quiet --batch --yes --decrypt --passphrase="$LARGE_SECRET_PASSPHRASE" \
|
||||
--output $HOME/secrets/my_secret.json my_secret.json.gpg
|
||||
```
|
||||
{% endwarning %}
|
||||
|
||||
```bash
|
||||
git add my_secret.json.gpg
|
||||
git commit -m "Add new encrypted secret JSON file"
|
||||
```
|
||||
|
||||
1. Create a shell script in your repository to decrypt the secret file. In this example, the script is named `decrypt_secret.sh`.
|
||||
|
||||
```bash
|
||||
#!/bin/sh
|
||||
|
||||
# Decrypt the file
|
||||
mkdir $HOME/secrets
|
||||
# --batch to prevent interactive command
|
||||
# --yes to assume "yes" for questions
|
||||
gpg --quiet --batch --yes --decrypt --passphrase="$LARGE_SECRET_PASSPHRASE" \
|
||||
--output $HOME/secrets/my_secret.json my_secret.json.gpg
|
||||
```
|
||||
|
||||
1. Ensure your shell script is executable before checking it in to your repository.
|
||||
|
||||
``` shell
|
||||
$ chmod +x decrypt_secret.sh
|
||||
$ git add decrypt_secret.sh
|
||||
$ git commit -m "Add new decryption script"
|
||||
$ git push
|
||||
```
|
||||
```bash
|
||||
chmod +x decrypt_secret.sh
|
||||
git add decrypt_secret.sh
|
||||
git commit -m "Add new decryption script"
|
||||
git push
|
||||
```
|
||||
|
||||
1. From your workflow, use a `step` to call the shell script and decrypt the secret. To have a copy of your repository in the environment that your workflow runs in, you'll need to use the [`actions/checkout`](https://github.com/actions/checkout) action. Reference your shell script using the `run` command relative to the root of your repository.
|
||||
1. In your {% data variables.product.prodname_actions %} workflow, use a `step` to call the shell script and decrypt the secret. To have a copy of your repository in the environment that your workflow runs in, you'll need to use the [`actions/checkout`](https://github.com/actions/checkout) action. Reference your shell script using the `run` command relative to the root of your repository.
|
||||
|
||||
```yaml
|
||||
name: Workflows with large secrets
|
||||
|
@ -340,7 +356,7 @@ Secrets are limited to 64 KB in size. To use secrets that are larger than 64 KB,
|
|||
steps:
|
||||
- uses: {% data reusables.actions.action-checkout %}
|
||||
- name: Decrypt large secret
|
||||
run: ./.github/scripts/decrypt_secret.sh
|
||||
run: ./decrypt_secret.sh
|
||||
env:
|
||||
LARGE_SECRET_PASSPHRASE: {% raw %}${{ secrets.LARGE_SECRET_PASSPHRASE }}{% endraw %}
|
||||
# This command is just an example to show your secret being printed
|
||||
|
|
|
@ -563,13 +563,7 @@ on:
|
|||
|
||||
{% note %}
|
||||
|
||||
**Note**: {% data reusables.developer-site.multiple_activity_types %} For information about each activity type, see "[Webhook events and payloads](/developers/webhooks-and-events/webhooks/webhook-events-and-payloads#pull_request)." By default, a workflow only runs when a `pull_request` event's activity type is `opened`, `synchronize`, or `reopened`. You can specify different activity types using the `types` keyword. For more information, see "[Workflow syntax for {% data variables.product.prodname_actions %}](/articles/workflow-syntax-for-github-actions#onevent_nametypes)."
|
||||
|
||||
{% endnote %}
|
||||
|
||||
{% note %}
|
||||
|
||||
**Note:** By default, only the `opened`, `synchronize`, and `reopened` activity types trigger workflows that run on the `pull_request` event. To trigger workflows by different activity types, use the `types` keyword.
|
||||
**Note**: {% data reusables.developer-site.multiple_activity_types %} For information about each activity type, see "[Webhook events and payloads](/developers/webhooks-and-events/webhooks/webhook-events-and-payloads#pull_request)." By default, a workflow only runs when a `pull_request` event's activity type is `opened`, `synchronize`, or `reopened`. To trigger workflows by different activity types, use the `types` keyword. For more information, see "[Workflow syntax for {% data variables.product.prodname_actions %}](/articles/workflow-syntax-for-github-actions#onevent_nametypes)."
|
||||
|
||||
{% endnote %}
|
||||
|
||||
|
@ -782,13 +776,7 @@ on:
|
|||
|
||||
{% note %}
|
||||
|
||||
**Note**: {% data reusables.developer-site.multiple_activity_types %} For information about each activity type, see "[Webhook events and payloads](/developers/webhooks-and-events/webhooks/webhook-events-and-payloads#pull_request_target)." By default, a workflow only runs when a `pull_request_target`'s activity type is `opened`, `synchronize`, or `reopened`. To trigger workflows for more activity types, use the `types` keyword. You can specify different activity types using the `types` keyword. For more information, see "[Workflow syntax for {% data variables.product.prodname_actions %}](/articles/workflow-syntax-for-github-actions#onevent_nametypes)."
|
||||
|
||||
{% endnote %}
|
||||
|
||||
{% note %}
|
||||
|
||||
**Note:** By default, only the `opened`, `synchronize`, and `reopened` activity types trigger workflows that run on the `pull_request` event. To trigger workflows by different activity types, use the `types` keyword.
|
||||
**Note**: {% data reusables.developer-site.multiple_activity_types %} For information about each activity type, see "[Webhook events and payloads](/developers/webhooks-and-events/webhooks/webhook-events-and-payloads#pull_request_target)." By default, a workflow only runs when a `pull_request_target` event's activity type is `opened`, `synchronize`, or `reopened`. To trigger workflows by different activity types, use the `types` keyword. For more information, see "[Workflow syntax for {% data variables.product.prodname_actions %}](/articles/workflow-syntax-for-github-actions#onevent_nametypes)."
|
||||
|
||||
{% endnote %}
|
||||
|
||||
|
|
|
@ -1227,6 +1227,13 @@ Action | Description
|
|||
| `secret_scanning_new_repos.enable` | An organization owner enabled secret scanning for all new{% ifversion ghec %} private or internal{% endif %} repositories.
|
||||
{%- endif %}
|
||||
|
||||
{% ifversion secret-scanning-push-protection-bypasses %}
|
||||
## `secret_scanning_push_protection` category actions
|
||||
|
||||
| Action | Description
|
||||
|--------|-------------
|
||||
| `bypass` | Triggered when a user bypasses the push protection on a secret detected by secret scanning. For more information, see "[Bypassing push protection for a secret](/code-security/secret-scanning/protecting-pushes-with-secret-scanning#bypassing-push-protection-for-a-secret)."{% endif %}
|
||||
|
||||
{%- ifversion ghec or ghes or ghae %}
|
||||
## `security_key` category actions
|
||||
|
||||
|
|
|
@ -11,9 +11,9 @@ topics:
|
|||
|
||||
## About {% data variables.product.prodname_ghe_managed %}
|
||||
|
||||
{% data reusables.github-ae.github-ae-enables-you %} {% data variables.product.prodname_ghe_managed %} is fully managed, reliable, and scalable, allowing you to accelerate delivery without sacrificing risk management.
|
||||
{% data reusables.github-ae.github-ae-enables-you %} {% data variables.product.prodname_ghe_managed %} is fully managed, reliable, and scalable, allowing you to accelerate delivery while improving your risk and compliance posture.
|
||||
|
||||
{% data variables.product.prodname_ghe_managed %} offers one developer platform from idea to production. You can increase development velocity with the tools that teams know and love, while you maintain industry and regulatory compliance with unique security and access controls, workflow automation, and policy enforcement.
|
||||
{% data variables.product.prodname_ghe_managed %} offers one developer platform from idea to production. You can increase development velocity with the tools that teams know and love, while you maintain industry and regulatory compliance with security and access controls, workflow automation, and policy enforcement.
|
||||
|
||||
## A highly available and planet-scale cloud
|
||||
|
||||
|
@ -21,11 +21,13 @@ topics:
|
|||
|
||||
## Data residency
|
||||
|
||||
All of your data is stored within the geographic region of your choosing. You can comply with GDPR and global data protection standards by keeping all of your data within your chosen region.
|
||||
All of your data is stored within the geographic region of your choosing. You can comply with GDPR data residency requirements and global data protection standards by keeping all of your data within your chosen region.
|
||||
|
||||
## Isolated accounts
|
||||
|
||||
All developer accounts are fully isolated in {% data variables.product.prodname_ghe_managed %}. You can fully control the accounts through your identity provider, with SAML single sign on as mandatory. SCIM enables you to ensure that employees only have access to the resources they should, as defined in your central identity management system. For more information, see "[Managing identity and access for your enterprise](/admin/authentication/managing-identity-and-access-for-your-enterprise)."
|
||||
By default, all developer accounts on {% data variables.product.product_name %} are fully isolated from other services, including products from {% data variables.product.company_short %}. You can control the accounts through your identity provider, with SAML single sign-on as mandatory. SCIM enables you to ensure that employees only have access to the resources they should, as defined in your central identity management system. For more information, see "[Managing identity and access for your enterprise](/admin/authentication/managing-identity-and-access-for-your-enterprise)."
|
||||
|
||||
Optionally, enterprise owners can enable limited integration between {% data variables.product.product_name %} and {% data variables.product.prodname_dotcom_the_website %}. For more information, see "[About {% data variables.product.prodname_github_connect %}](/admin/configuration/configuring-github-connect/about-github-connect)."
|
||||
|
||||
## Restricted network access
|
||||
|
||||
|
|
|
@ -28,9 +28,9 @@ topics:
|
|||
You can define custom patterns to identify secrets that are not detected by the default patterns supported by {% data variables.product.prodname_secret_scanning %}. For example, you might have a secret pattern that is internal to your organization. For details of the supported secrets and service providers, see "[{% data variables.product.prodname_secret_scanning_caps %} patterns](/code-security/secret-scanning/secret-scanning-patterns)."
|
||||
|
||||
You can define custom patterns for your enterprise, organization, or repository. {% data variables.product.prodname_secret_scanning_caps %} supports up to
|
||||
{%- ifversion fpt or ghec or ghes > 3.3 %} 500 custom patterns for each organization or enterprise account, and up to 100 custom patterns per repository.
|
||||
{%- elsif ghes = 3.3 %} 100 custom patterns for each organization or enterprise account, and 20 per repository.
|
||||
{%- else %} 20 custom patterns for each organization or enterprise account, and per repository.
|
||||
{%- ifversion fpt or ghec or ghes > 3.3 or ghae-issue-7297 %} 500 custom patterns for each organization or enterprise account, and up to 100 custom patterns per repository.
|
||||
{%- elsif ghes = 3.2 %} 20 custom patterns for each organization or enterprise account, and per repository.
|
||||
{%- else %} 100 custom patterns for each organization or enterprise account, and 20 per repository.
|
||||
{%- endif %}
|
||||
|
||||
{% ifversion ghes < 3.3 %}
|
||||
|
@ -67,7 +67,7 @@ Before defining a custom pattern, you must ensure that {% data variables.product
|
|||
{% data reusables.repositories.navigate-to-code-security-and-analysis %}
|
||||
{% data reusables.repositories.navigate-to-ghas-settings %}
|
||||
{% data reusables.advanced-security.secret-scanning-new-custom-pattern %}
|
||||
{% data reusables.advanced-security.secret-scanning-add-custom-pattern-details %}{% ifversion fpt or ghec or ghes > 3.4 or ghae-issue-5499 %}
|
||||
{% data reusables.advanced-security.secret-scanning-add-custom-pattern-details %}{% ifversion secret-scanning-custom-enterprise-35 %}
|
||||
1. When you're ready to test your new custom pattern, to identify matches in the repository without creating alerts, click **Save and dry run**.
|
||||
{% data reusables.advanced-security.secret-scanning-dry-run-results %}
|
||||
{% endif %}
|
||||
|
@ -122,7 +122,7 @@ Before defining a custom pattern, you must ensure that you enable {% data variab
|
|||
{% data reusables.repositories.navigate-to-ghas-settings %}
|
||||
{% data reusables.advanced-security.secret-scanning-new-custom-pattern %}
|
||||
{% data reusables.advanced-security.secret-scanning-add-custom-pattern-details %}
|
||||
{%- ifversion secret-scanning-org-dry-runs %}
|
||||
{%- ifversion secret-scanning-custom-enterprise-35 %}
|
||||
1. When you're ready to test your new custom pattern, to identify matches in select repositories without creating alerts, click **Save and dry run**.
|
||||
{% data reusables.advanced-security.secret-scanning-dry-run-select-repos %}
|
||||
{% data reusables.advanced-security.secret-scanning-dry-run-results %}
|
||||
|
@ -141,7 +141,7 @@ Before defining a custom pattern, you must ensure that you enable secret scannin
|
|||
|
||||
{% note %}
|
||||
|
||||
{% ifversion secret-scanning-enterprise-dry-runs %}
|
||||
{% ifversion secret-scanning-custom-enterprise-36 %}
|
||||
**Notes:**
|
||||
- At the enterprise level, only the creator of a custom pattern can edit the pattern, and use it in a dry run.
|
||||
- Enterprise owners can only make use of dry runs on repositories that they have access to, and enterprise owners do not necessarily have access to all the organizations or repositories within the enterprise.
|
||||
|
@ -158,8 +158,8 @@ Before defining a custom pattern, you must ensure that you enable secret scannin
|
|||
{% data reusables.enterprise-accounts.advanced-security-security-features %}
|
||||
1. Under "Secret scanning custom patterns", click {% ifversion ghes = 3.2 %}**New custom pattern**{% else %}**New pattern**{% endif %}.
|
||||
{% data reusables.advanced-security.secret-scanning-add-custom-pattern-details %}
|
||||
{%- ifversion secret-scanning-enterprise-dry-runs %}
|
||||
1. When you're ready to test your new custom pattern, to identify matches in the repository without creating alerts, click **Save and dry run**.
|
||||
{%- ifversion secret-scanning-custom-enterprise-36 %}
|
||||
1. When you're ready to test your new custom pattern, to identify matches in the enterprise without creating alerts, click **Save and dry run**.
|
||||
{% data reusables.advanced-security.secret-scanning-dry-run-select-repos %}
|
||||
{% data reusables.advanced-security.secret-scanning-dry-run-results %}
|
||||
{%- endif %}
|
||||
|
@ -175,7 +175,10 @@ When you save a change to a custom pattern, this closes all the {% data variable
|
|||
* For a repository or organization, display the "Security & analysis" settings for the repository or organization where the custom pattern was created. For more information, see "[Defining a custom pattern for a repository](#defining-a-custom-pattern-for-a-repository)" or "[Defining a custom pattern for an organization](#defining-a-custom-pattern-for-an-organization)" above.
|
||||
* For an enterprise, under "Policies" display the "Advanced Security" area, and then click **Security features**. For more information, see "[Defining a custom pattern for an enterprise account](#defining-a-custom-pattern-for-an-enterprise-account)" above.
|
||||
2. Under "{% data variables.product.prodname_secret_scanning_caps %}", to the right of the custom pattern you want to edit, click {% octicon "pencil" aria-label="The edit icon" %}.
|
||||
3. When you have reviewed and tested your changes, click **Save changes**.
|
||||
{%- ifversion secret-scanning-custom-enterprise-36 %}
|
||||
3. When you're ready to test your edited custom pattern, to identify matches without creating alerts, click **Save and dry run**.
|
||||
{%- endif %}
|
||||
4. When you have reviewed and tested your changes, click **Save changes**.
|
||||
{% endif %}
|
||||
|
||||
## Removing a custom pattern
|
||||
|
|
|
@ -12,6 +12,7 @@ children:
|
|||
- /about-projects
|
||||
- /quickstart
|
||||
- /creating-a-project
|
||||
- /migrating-your-project
|
||||
- /managing-iterations
|
||||
- /customizing-your-project-views
|
||||
- /filtering-projects
|
||||
|
|
|
@ -0,0 +1,65 @@
|
|||
---
|
||||
title: Migrating your project to Projects (beta)
|
||||
intro: 'You can migrate your projects from the old projects experience to Projects (beta).'
|
||||
allowTitleToDifferFromFilename: true
|
||||
miniTocMaxHeadingLevel: 2
|
||||
versions:
|
||||
fpt: '*'
|
||||
ghec: '*'
|
||||
topics:
|
||||
- Projects
|
||||
- Organizations
|
||||
---
|
||||
|
||||
{% note %}
|
||||
|
||||
**Notes:**
|
||||
|
||||
- Projects (beta) is currently in public beta and subject to change.
|
||||
- If the project you are migrating contains more than 1200 items, open issues will be prioritized followed by open pull requests and then notes. Remaining space will be used for closed issues, merged pull requested, and closed pull requests. Items that cannot be migrated due to this limit will be moved to the archive. If the archive limit of 10,000 items is reached, additional items will not be migrated.
|
||||
- Note cards are converted to draft issues, and the contents are saved to the body of the draft issue. If information appears to be missing, make any hidden fields visible. For more information, see "[Showing and hiding fields](/issues/trying-out-the-new-projects-experience/customizing-your-project-views#showing-and-hiding-fields)."
|
||||
- Automation will not be migrated.
|
||||
- Triage, archive, and activity will not be migrated.
|
||||
- After migration, the new migrated project and old project will not be kept in sync.
|
||||
|
||||
{% endnote %}
|
||||
|
||||
## About project migration
|
||||
|
||||
You can migrate your project boards to the all new projects (beta) experience and try out tables, multiple views, new automation options, and powerful field types. For more information, see "[About projects (beta)](/issues/trying-out-the-new-projects-experience/about-projects)."
|
||||
|
||||
## Migrating an organization project board
|
||||
|
||||
{% data reusables.projects.enable-migration %}
|
||||
{% data reusables.profile.access_org %}
|
||||
{% data reusables.user-settings.access_org %}
|
||||
{% data reusables.organizations.organization-wide-project %}
|
||||
1. On the left, click **Projects (classic)**.
|
||||
![Screenshot showing Projects (classic) menu option}](/assets/images/help/issues/projects-classic-org.png)
|
||||
{% data reusables.projects.migrate-project-steps %}
|
||||
|
||||
## Migrating a user project board
|
||||
|
||||
{% data reusables.projects.enable-migration %}
|
||||
{% data reusables.profile.access_profile %}
|
||||
1. On the top of your profile page, in the main navigation, click {% octicon "project" aria-label="The project board icon" %} **Projects**.
|
||||
![Project tab](/assets/images/help/projects/user-projects-tab.png)
|
||||
1. Above the list of projects, click **Projects (classic)**.
|
||||
![Screenshot showing Projects (classic) menu option}](/assets/images/help/issues/projects-classic-user.png)
|
||||
{% data reusables.projects.migrate-project-steps %}
|
||||
|
||||
## Migrating a repository project board
|
||||
|
||||
{% note %}
|
||||
|
||||
**Note:** Projects (beta) does not support repository level projects. When you migrate a repository project board, it will migrate to either the organization or personal account that owns the repository project, and the migrated project will be pinned to the original repository.
|
||||
|
||||
{% endnote %}
|
||||
|
||||
{% data reusables.projects.enable-migration %}
|
||||
{% data reusables.repositories.navigate-to-repo %}
|
||||
1. Under your repository name, click {% octicon "project" aria-label="The project board icon" %} **Projects**.
|
||||
![Project tab](/assets/images/help/projects/repo-tabs-projects.png)
|
||||
1. Click **Projects (classic)**.
|
||||
![Screenshot showing Projects (classic) menu option}](/assets/images/help/issues/projects-classic-org.png)
|
||||
{% data reusables.projects.migrate-project-steps %}
|
|
@ -761,6 +761,14 @@ For more information, see "[Managing the publication of {% data variables.produc
|
|||
| `enable` | Triggered when an organization owner enables secret scanning for all new {% ifversion ghec %}private or internal {% endif %}repositories.
|
||||
{% endif %}
|
||||
|
||||
{% ifversion secret-scanning-push-protection-bypasses %}
|
||||
### `secret_scanning_push_protection` category actions
|
||||
|
||||
| Action | Description
|
||||
|------------------|-------------------
|
||||
| `bypass` | Triggered when a user bypasses the push protection on a secret detected by secret scanning. For more information, see "[Bypassing push protection for a secret](/code-security/secret-scanning/protecting-pushes-with-secret-scanning#bypassing-push-protection-for-a-secret)."
|
||||
{% endif %}
|
||||
|
||||
{% ifversion fpt or ghec %}
|
||||
### `sponsors` category actions
|
||||
|
||||
|
|
|
@ -0,0 +1,7 @@
|
|||
# Issues: changes to custom patterns for secret scanning
|
||||
# #6367: updates for the "organization level dry runs (Public Beta)"
|
||||
# #5499: updates for the "repository level dry runs (Public Beta)"
|
||||
versions:
|
||||
ghec: '*'
|
||||
ghes: '>3.4'
|
||||
ghae: 'issue-6367'
|
|
@ -0,0 +1,7 @@
|
|||
# Issues: changes to custom patterns for secret scanning
|
||||
# #6904: updates for "enterprise account level dry runs (Public Beta)"
|
||||
# #7297: updates for dry runs on editing patterns (Public Beta)
|
||||
versions:
|
||||
ghec: '*'
|
||||
ghes: '>3.5'
|
||||
ghae: 'issue-6904'
|
|
@ -1,6 +0,0 @@
|
|||
# Issue #6904
|
||||
# Documentation for the "enterprise account level dry runs (Public Beta)" for custom patterns under secret scanning
|
||||
versions:
|
||||
ghec: '*'
|
||||
ghes: '>3.5'
|
||||
ghae: 'issue-6904'
|
|
@ -1,6 +0,0 @@
|
|||
# Issue #6367
|
||||
# Documentation for the "org level dry runs (Public Beta)" for custom patterns under secret scanning
|
||||
versions:
|
||||
ghec: '*'
|
||||
ghes: '>3.4'
|
||||
ghae: 'issue-6367'
|
|
@ -0,0 +1,6 @@
|
|||
# Reference: #7298.
|
||||
# Documentation for new events related to secret scanning push protection bypasses, e.g. audit log.
|
||||
versions:
|
||||
ghec: '*'
|
||||
ghes: '>=3.6'
|
||||
ghae: 'issue-7298'
|
|
@ -0,0 +1 @@
|
|||
1. Enable "Project migration" in feature preview. For more information, see "[Exploring early access releases with feature preview](/get-started/using-github/exploring-early-access-releases-with-feature-preview)."
|
|
@ -0,0 +1,8 @@
|
|||
1. Next to the project you want to migrate, click {% octicon "kebab-horizontal" aria-label="The menu icon" %} to open the menu.
|
||||
1. In the menu, click **Migrate to beta**.
|
||||
![Screenshot showing migrate to beta option](/assets/images/help/issues/migrate-to-beta.png)
|
||||
1. In the the popup, select what you want to happen to the project after it is migrated. We recommend selecting "Close the old project" so it's clear which project is in use.
|
||||
![Screenshot showing migrate to beta option](/assets/images/help/issues/migrate-option.png)
|
||||
1. In the bottom right of the popup, click **Start migration**.
|
||||
![Screenshot showing migrate to beta option](/assets/images/help/issues/migrate-start.png)
|
||||
1. When the migration is complete, the new migrated project will open in a new tab.
|
|
@ -2,7 +2,7 @@
|
|||
|
||||
{% note %}
|
||||
|
||||
**Note:** Projects (beta), the all-new projects experience, is now available. For more information about projects (beta), see "[About projects (beta)](/issues/trying-out-the-new-projects-experience/about-projects)."
|
||||
**Note:** Projects (beta), the all-new projects experience, is now available. For more information about projects (beta), see "[About projects (beta)](/issues/trying-out-the-new-projects-experience/about-projects)" and for information about migrating your project, see "[Migrating your project to Projects (beta)](/issues/trying-out-the-new-projects-experience/migrating-your-project)."
|
||||
|
||||
{% endnote %}
|
||||
{% endif %}
|
||||
|
|
|
@ -2,7 +2,6 @@ export default {
|
|||
httpOnly: true, // can't access these cookies through browser JavaScript
|
||||
secure: !['test', 'development'].includes(process.env.NODE_ENV),
|
||||
// requires https protocol
|
||||
// `secure` doesn't work with supertest at all
|
||||
// http://localhost fails on chrome with secure
|
||||
sameSite: 'lax',
|
||||
// most browsers are "lax" these days,
|
||||
|
|
|
@ -1,3 +1,3 @@
|
|||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:e941fbf9aa0ff314a1cb7fb08118c87666f86f42227cb348e75413c47fe1ae0f
|
||||
size 741222
|
||||
oid sha256:ba06c2e0a5b6325cd3855091f844cbaa6cee3eff7181d7578a6d94a335e26eb4
|
||||
size 742513
|
||||
|
|
|
@ -1,3 +1,3 @@
|
|||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:998658605c95d756a2d843f9b310c02ffc678f19bc6cd9a25db0bef8fddb7d89
|
||||
size 1564624
|
||||
oid sha256:efbc02f631aba4cd55e458885e4c61e625e6c99b5f4e81ad04647c1d87d3e5e7
|
||||
size 1561184
|
||||
|
|
|
@ -1,3 +1,3 @@
|
|||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:0d7c413d5734e3a9ae342ff0fcc9f8e68a5299d3bd579d58709e58bb9a577902
|
||||
size 997871
|
||||
oid sha256:d23e7fdb802569b843ec9ef1a020af160de12994a698d67c292bf04150b9a339
|
||||
size 998459
|
||||
|
|
|
@ -1,3 +1,3 @@
|
|||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:906a126f978169d03a0f955ae4dbe65f72a794cc480d3fb8088d5eb33cd39144
|
||||
size 4001369
|
||||
oid sha256:f555dba0bb24e1e1546c62c865580e795afb3a773f37115f629fa139cfe3345f
|
||||
size 4002472
|
||||
|
|
|
@ -1,3 +1,3 @@
|
|||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:a7577c8db6346a7ef03b753744f9f704587f14561f674f12d68f079e0cb84fc1
|
||||
size 683979
|
||||
oid sha256:fc66b7312f47ff6b9348f101edffe75844a28bba14b465a46ecbabeb9e0f2040
|
||||
size 684151
|
||||
|
|
|
@ -1,3 +1,3 @@
|
|||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:742b7f4067a1f96617cae7bc2d3f2a3e59a59355908dbd60b9befe601c6cb771
|
||||
size 2973461
|
||||
oid sha256:b264d8cf3fadb98f494a01823d930fdfe226bfd219bda3efcd144ffcb195d86b
|
||||
size 2973495
|
||||
|
|
|
@ -1,3 +1,3 @@
|
|||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:5ac2d071e87066ee1634fa2fe98819c4d0df7a366d0a2cdcaa166af1b823b4f1
|
||||
size 751614
|
||||
oid sha256:d30e7a9a9085e70772ff0a783d93fd2ca1ff7ccfd48546c390377e7e3fc890ef
|
||||
size 751650
|
||||
|
|
|
@ -1,3 +1,3 @@
|
|||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:a9ba57351509d58435a2638551b7840a937a83b702b7234b0bc2ed11e2ccff17
|
||||
size 4134255
|
||||
oid sha256:a30accbe772a101c26dadd9118840737ae5e891e8d2e847361c3279eceaf97b1
|
||||
size 4133386
|
||||
|
|
|
@ -1,3 +1,3 @@
|
|||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:7092f4bfe042e1dfbaad5713725b44a599ea75a4a1dae9447b129879e403a1fa
|
||||
size 674550
|
||||
oid sha256:abe3c2ca13dc36a99d83d37c28353915720e2e99a4a73b34c63bea2924070f32
|
||||
size 674611
|
||||
|
|
|
@ -1,3 +1,3 @@
|
|||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:a85d4d0c85527125f5e8590d4b6c4ea58a8d52f641c0f34d966bd52dc6f356d3
|
||||
size 2875134
|
||||
oid sha256:1a0ba7ec574be6172730509fef0ee92381b4e95d473fc294830ce341a0fbc4c8
|
||||
size 2876270
|
||||
|
|
|
@ -1,3 +1,3 @@
|
|||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:8ad670b4235d65e34a740f898092e5d97c5aa8a66371347a4154ad48349bc71d
|
||||
size 762753
|
||||
oid sha256:cba619359299cb405d909cf2d0d280221d3fc6bd3f2c6af6867bf60e8ff2f9cf
|
||||
size 764170
|
||||
|
|
|
@ -1,3 +1,3 @@
|
|||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:e50c965c227d14ca06ea2c61513cdd55c76867fdf91af78be2f6c83ad0abc97a
|
||||
size 1603012
|
||||
oid sha256:b90810aa384294a51d0f6026ca30ff145630119198bebbc5b9760dcea2cf470f
|
||||
size 1602009
|
||||
|
|
|
@ -1,3 +1,3 @@
|
|||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:405791c308a1df7840da028cb1491b570d8d28902dc0891b078a55ab6dc20e88
|
||||
size 1034947
|
||||
oid sha256:ee53a3cde26cb133111e62ec83ea92883f42f498b2ff11d762df70939c8ebc3d
|
||||
size 1035175
|
||||
|
|
|
@ -1,3 +1,3 @@
|
|||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:e8da156f9f386ca591bf99e0eb971314679a790401928e91c140167f707c04c3
|
||||
size 4154948
|
||||
oid sha256:3d9a084b48136643ca3e98c266129e4c7a0e83a9bae47d8548da63b26ff50ac4
|
||||
size 4154591
|
||||
|
|
|
@ -1,3 +1,3 @@
|
|||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:87573918c41682ba5f8eeedbb37c57b8baea18f83e8eff11f3a1ea77c12d8711
|
||||
size 704204
|
||||
oid sha256:d60182315c0af39c47c872ac65df3fe19befbed686f72df268b12b31f0ffac75
|
||||
size 704225
|
||||
|
|
|
@ -1,3 +1,3 @@
|
|||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:e7068d263e1cc0b75d6d262f4e5e028ffc76038e00ff3572b27130fa5d0a48d9
|
||||
size 3059373
|
||||
oid sha256:d88825cb7ae75443b761cfe628f5c0975b24bf91d727695117611db6ed71c242
|
||||
size 3059892
|
||||
|
|
|
@ -1,3 +1,3 @@
|
|||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:0b4cceb7210f7ae5a9bb01b599adba76ff95ea04ac43d6a9fa018cdd2bf1ee0d
|
||||
size 772457
|
||||
oid sha256:ac329f1d401e2481cd9ccb435f05b86cd97dccf95cef49fc01960e3881f38b69
|
||||
size 772572
|
||||
|
|
|
@ -1,3 +1,3 @@
|
|||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:b1e9c97aff60b08fe67cab8ebb8182bf587a6922fa8970667ccfbc3d4d5cbdd2
|
||||
size 4251350
|
||||
oid sha256:5407b94c423c3142b95118e49e121a17231c45d6c53ec82d446728100440f9b2
|
||||
size 4250862
|
||||
|
|
|
@ -1,3 +1,3 @@
|
|||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:d7910f32ab363c9636b2787e4fab8e661677d5335247d2496fb233abe02cde59
|
||||
size 694015
|
||||
oid sha256:d673a17ccea99c2175ff3705d33312cc1a2ce92dd43ab7ed5cad5d2e5ccc4984
|
||||
size 694281
|
||||
|
|
|
@ -1,3 +1,3 @@
|
|||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:9b071e3657026a7e5cf9755321a9d32bee2bf4765c0fc47c2982d728e3ed05c4
|
||||
size 2954353
|
||||
oid sha256:a4534315986da08e75ae589431a463848c2d7d75e26dedff5313b77dd87eaa92
|
||||
size 2955823
|
||||
|
|
|
@ -1,3 +1,3 @@
|
|||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:b2cd5322d50060a05a456c7ec2fa13df48f330e65d23a40f1c66f563c398fa5f
|
||||
size 786390
|
||||
oid sha256:c3c6c19258e6de4dc90d16c593ad1cbf44b7ed846c57dc6475d7e2d38331456a
|
||||
size 787738
|
||||
|
|
|
@ -1,3 +1,3 @@
|
|||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:2570f53cf55786c58465e26f3751033bd59cd720e235aa5d69633673a6d4e19c
|
||||
size 1644201
|
||||
oid sha256:186613633e41dde02d0e4c896acda49256af07a8c78756ec3a29e79f4fa18b1b
|
||||
size 1642848
|
||||
|
|
|
@ -1,3 +1,3 @@
|
|||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:170a6fe4637324bdd9091089c2b1e10d2d52330cd9522aa0acf71541d8c5bcc5
|
||||
size 1069647
|
||||
oid sha256:68eb2d8ff1fa3723b122559975125f2ffd6550dd748591ec1333ad1083387bb9
|
||||
size 1069944
|
||||
|
|
|
@ -1,3 +1,3 @@
|
|||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:5d2a935fce89167d2f8514788fb644c80813ec3a7df9e547e1f59d6629c81b1e
|
||||
size 4250444
|
||||
oid sha256:034edd9e518df34cf389751f35b3e4f3f3c40b9342e8998b0757de016eaed758
|
||||
size 4250814
|
||||
|
|
|
@ -1,3 +1,3 @@
|
|||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:c624a96b032ec49dddd3af208c437195695b11900a1ea0efd6ac2401904b091e
|
||||
size 723985
|
||||
oid sha256:8c42d63e6404d0f17ddb4cb1dfcf71187945f0ca8117b3442aa393057537d0d5
|
||||
size 723882
|
||||
|
|
|
@ -1,3 +1,3 @@
|
|||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:122c15435ada7e73d37c0e086a730ea29bb6304ffedb265bb75db3cd0a9506de
|
||||
size 3139940
|
||||
oid sha256:aea852e99d583b73d3b55a07526ca6b47bf2ba0896ab5f488b4280dd20c4b731
|
||||
size 3140504
|
||||
|
|
|
@ -1,3 +1,3 @@
|
|||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:48454dc8d20bce2f793bf2842225f63ef71dd5e702bf7746b07c8c2049a9d6de
|
||||
size 796023
|
||||
oid sha256:5a6df194dcb349c1e7238c04e689aa1e4032ea9a9bf13c067ef4c8fdbb8d1d55
|
||||
size 796053
|
||||
|
|
|
@ -1,3 +1,3 @@
|
|||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:5b8b10cb0d647e5e8d3d4953ecfba46d17d1e381887d8a0b8ccf415b00ef8015
|
||||
size 4369720
|
||||
oid sha256:8e8247a7822f3917c4c29117630e438f27712b5fe978792886c3ded45b1582a6
|
||||
size 4370189
|
||||
|
|
|
@ -1,3 +1,3 @@
|
|||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:cb93496dde71c5aab9ae6f1a6ead88a5da34dd1f29c611f28a4470f83043b3dd
|
||||
size 713769
|
||||
oid sha256:1bba8945cb79e96437341d9bc39ee74b3fc3cc11da115b3d7a734483356f9ce8
|
||||
size 713923
|
||||
|
|
|
@ -1,3 +1,3 @@
|
|||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:7f7b1ab77c46a340c1734b162528fb30cda6ea531d4a6e3807935e7cb52399f9
|
||||
size 3033813
|
||||
oid sha256:f7643ecb296a9ea4e4deff8bfaf6b174dad125eeeaa609ef33bb9e7dc083e48b
|
||||
size 3034394
|
||||
|
|
|
@ -1,3 +1,3 @@
|
|||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:7c8fee53c859c8e4cf9304542c32f73db53e1694845f4eb488b4f45251cfe56f
|
||||
size 788264
|
||||
oid sha256:c395ec51fca7a568ce359ed708855e750c75e5819aca3adcdd475b93ea9f8c5c
|
||||
size 789486
|
||||
|
|
|
@ -1,3 +1,3 @@
|
|||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:863bc28fe15e50c45faaf6f5740cdfe9abc1f64365867222069c4fb6126f426e
|
||||
size 1655799
|
||||
oid sha256:ca638779f88f35b4ae5758ada2386a5993e68c283aad9adc69daaf5964e17b91
|
||||
size 1654027
|
||||
|
|
|
@ -1,3 +1,3 @@
|
|||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:f77985f5119f23e7cf0d43bff706944a5552e152821d657dde853718dfa387ac
|
||||
size 1078903
|
||||
oid sha256:0429de2b31f61a9b10e193bce4e8bcd89661884dc48aca42c86089e08a307f6a
|
||||
size 1078932
|
||||
|
|
|
@ -1,3 +1,3 @@
|
|||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:b976cb5c38086190c26eb024ffe627b63e5007798358c308c1136e0b01387a30
|
||||
size 4291799
|
||||
oid sha256:62c9f87e704ce53e432df1b6eeddc261269003cce09a53e77e9373c6e2d11cf3
|
||||
size 4291517
|
||||
|
|
|
@ -1,3 +1,3 @@
|
|||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:d15ed61b4634c0c7b223d08755da13cb37b57903cff73f88daf4a22ed913420e
|
||||
size 727401
|
||||
oid sha256:8f3871fd37e19689cbb4ce2479bf223a799a5db5320a8ef4fafb48c1636ded9c
|
||||
size 727127
|
||||
|
|
|
@ -1,3 +1,3 @@
|
|||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:459c351fe33febbc4da59383fdfacf0b162de5c933b7e4734c2acb09f218e27d
|
||||
size 3158695
|
||||
oid sha256:d8e7b786cc5e926e788ee4954d4a7ff96d3bc236de934b47b23fb0b2607c375f
|
||||
size 3158904
|
||||
|
|
|
@ -1,3 +1,3 @@
|
|||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:68de04426fbc7ff8e59a844b6ee3f3f842b30d2a1acda46a6b5d8c5ddabf24bb
|
||||
size 798683
|
||||
oid sha256:751df82ede228cb90c1170c329a43d0c39923e0e0578e67a2a3219b6a81e819a
|
||||
size 798644
|
||||
|
|
|
@ -1,3 +1,3 @@
|
|||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:096ed5000a1ee6f2a02010e0aa8d4135dae0ecb0edeeed9a10b46dfe1b04bcb4
|
||||
size 4394362
|
||||
oid sha256:1cb8703acc9e030ae76efb88454b39f5545d67ef9555f171becb5da71e7ba169
|
||||
size 4394552
|
||||
|
|
|
@ -1,3 +1,3 @@
|
|||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:049e62e838fa8ae3626aa23e735d3ea389e55fcbabaa90cfed283126570d59a3
|
||||
size 716831
|
||||
oid sha256:d1a66836ab61f0ddc4e4d18e13f733fe8ef2c52b7f186b7e1186a9248abf37aa
|
||||
size 717033
|
||||
|
|
|
@ -1,3 +1,3 @@
|
|||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:0e717a7e67b9d46541af406f0838a493155a1f5d6763a5111fd080a5600571d9
|
||||
size 3052851
|
||||
oid sha256:a15b5842a4f66ebab624a1384c17e68fab2bb126f2fddfd8881ca9014a1042e4
|
||||
size 3054011
|
||||
|
|
|
@ -1,3 +1,3 @@
|
|||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:9176694627453e109350f1be57348c12e575bdcd8e449ad5adcd930894c80064
|
||||
size 816702
|
||||
oid sha256:3246826fc1a538aa5680dbe1214eea88d8d0c67ecd53d4f0337a1b862290e336
|
||||
size 818370
|
||||
|
|
|
@ -1,3 +1,3 @@
|
|||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:922139ddd24e05338ea9dc6d0dfee73149fe8a0ee49cdd7012d5c22491dbec39
|
||||
size 1723737
|
||||
oid sha256:8fc8c7f5d1f65f22abf2d32cd8e8453051a57d2ab7f0512c4c114f3b9b26f6bf
|
||||
size 1722603
|
||||
|
|
|
@ -1,3 +1,3 @@
|
|||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:1fa736fa7888f69d5d2207ffd5a32ea507ebf1a342e20b344dcb5c668dd3a4fa
|
||||
size 1116932
|
||||
oid sha256:9b90bf38a58d85dfa6fc2ab6870d53499f22941ead40e95986ceb4fd9a061dee
|
||||
size 1116917
|
||||
|
|
|
@ -1,3 +1,3 @@
|
|||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:941f9f6d4725da620d1982f202fcac3b438ca1696b7ca9b000511ccdf225682c
|
||||
size 4450043
|
||||
oid sha256:a9d1353c7a1ca768a9540a89003f9828ffa8e5a3457a19fa088d9d4d5d0e33e7
|
||||
size 4450668
|
||||
|
|
|
@ -1,3 +1,3 @@
|
|||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:82766ba9fed493add6312da15f7e04335d0bfaf08c4a704276588939f25b5028
|
||||
size 750255
|
||||
oid sha256:40d6e06eb6ff4bd01d9cafc4ef412e1e6b4f305189aaeaf91af4adb95aaaf8de
|
||||
size 750093
|
||||
|
|
|
@ -1,3 +1,3 @@
|
|||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:2c6c43de2014c56595d2bd46d1198e00735220d802b02327c986af060a31e4e8
|
||||
size 3272580
|
||||
oid sha256:4dbbd4134c69895a30a08cee865f156a2d1a68c02403253b68637d71a7dabe8c
|
||||
size 3272199
|
||||
|
|
|
@ -1,3 +1,3 @@
|
|||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:c70a11389b253ad7edaaecbca6247b8767fcfeccc916953db7f4d20300e3fb7d
|
||||
size 823999
|
||||
oid sha256:e56e74c2d035466cb579e0c46955492e2c942d1f7a75db0e2f8155b9db5212b6
|
||||
size 824260
|
||||
|
|
|
@ -1,3 +1,3 @@
|
|||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:a465820ba445d144ba20870af40a087dfa025fd1d07e4e9556835656248ee152
|
||||
size 4553580
|
||||
oid sha256:94030a593114ddb618678b1eecb4bc713f3861307b7e6c4c5fa1aaeaa7735505
|
||||
size 4553685
|
||||
|
|
|
@ -1,3 +1,3 @@
|
|||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:2a5d1c67cadfd5b90646fda9eda099ac14c708ad54f94843c2f02141d032124f
|
||||
size 738940
|
||||
oid sha256:9c849f273d8d8d21d9594bee3028b924aa6e49658d3dfd4e720e36063132dc2d
|
||||
size 738955
|
||||
|
|
|
@ -1,3 +1,3 @@
|
|||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:065110e27de91b4ad3ddd1e164ddb7f3297da3d6777082e97cc49f498fdd99c0
|
||||
size 3159899
|
||||
oid sha256:8023e96308a6a4bb98eaaedb601fd70d2a367815802dd9ba555619b38f5595e1
|
||||
size 3161132
|
||||
|
|
|
@ -1,3 +1,3 @@
|
|||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:ce667c3afa702a2cff64fd52db368d45f9ab0f9dbf540adb1c630340e424ae07
|
||||
size 983392
|
||||
oid sha256:a4aac76858f0e1155ce08183b8a9648299bc2f407b0bf96c5e32ef122536773e
|
||||
size 986384
|
||||
|
|
|
@ -1,3 +1,3 @@
|
|||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:9973c397dfa47c29f7a425b873e65427a4c1a524fa69543c49eaeaf2f0fcc213
|
||||
size 1720660
|
||||
oid sha256:1f011512149590253bbfe91f6d38499bec2722a10cdb289a12ff8a44fbcd29e6
|
||||
size 1731891
|
||||
|
|
|
@ -1,3 +1,3 @@
|
|||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:82cb4ed85b583adeee8b405dc105469e84141a896e5e2493259d67b8d97a8aa9
|
||||
size 1351525
|
||||
oid sha256:02629e69eafd572502be32bb04e94b697f3b2a836c0591d1af392867dabc182a
|
||||
size 1352229
|
||||
|
|
|
@ -1,3 +1,3 @@
|
|||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:7c47dc3c5354ed78f7923e54df707424ae019b509661be4f2764e00b294b7b61
|
||||
size 5100335
|
||||
oid sha256:b35ed64eaee6d2f20b625dbbc8d8128a5b0e86220cc93b84b5b4501320937eb5
|
||||
size 5104173
|
||||
|
|
|
@ -1,3 +1,3 @@
|
|||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:84117bb87a0954a8211cd857fbfc41d46650f15fb83962abf4dd3a3e4c8ec75b
|
||||
size 886905
|
||||
oid sha256:dbe69bfc48b18aa71315d47c708ecd5d29754ce61e633eab62bdc74c16cf842b
|
||||
size 888980
|
||||
|
|
|
@ -1,3 +1,3 @@
|
|||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:e024b2185e739a983b585f63dad9b7f8dd17dc2e1fa43667f1a9b5db0c905d63
|
||||
size 3676439
|
||||
oid sha256:5ea8ff34a4e69505184791d13d10e682b243f6d1db18c77227ded218aaee3d9b
|
||||
size 3687498
|
||||
|
|
|
@ -1,3 +1,3 @@
|
|||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:6e96efd110aa17452ad48c9b5703fcee4e81b0c9048e82edf8ee20b4cdc9db6f
|
||||
size 986025
|
||||
oid sha256:8aaec364bd50a7fd77b5bf83ad7511c75f6ff7ad99246b1b4312aca8eed1c903
|
||||
size 988247
|
||||
|
|
|
@ -1,3 +1,3 @@
|
|||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:98b33562d2dd5e3460dcdfe276f5578c83a4dffe538914e383a8c9658253e81b
|
||||
size 5229181
|
||||
oid sha256:5287f46ee72c0c1d9c7d6275ebfb16833cc70f6228e4d5d10f851b2a33b72c81
|
||||
size 5239882
|
||||
|
|
|
@ -1,3 +1,3 @@
|
|||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:51cb5e40a8cbb3dbfb5fbb31ef42ccf6f24de4a585e994a1c35d05647e0c6e4b
|
||||
size 875235
|
||||
oid sha256:95f503ce24958ee924adf9e2a2fa2eb94db9f45e934bb94ecffb534ffef8adec
|
||||
size 876716
|
||||
|
|
|
@ -1,3 +1,3 @@
|
|||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:fffbbdf55974ed9d01b52bfd3c467004b54269d274dc82e19e2af994087b82d4
|
||||
size 3576682
|
||||
oid sha256:5cf21a386caadc728afb8710001bb00449d91b844f4f41ff3cb9bf8c3d0b1ad7
|
||||
size 3583083
|
||||
|
|
|
@ -1,3 +1,3 @@
|
|||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:a3403620d35d41d21f6c50d6f9780f074432b653f73dcdf92e323c8167b38e26
|
||||
size 625831
|
||||
oid sha256:e8e3367889ac2964275a9a1b6ca9d50b609d57ba9641d39357f45d06e1875f14
|
||||
size 625605
|
||||
|
|
|
@ -1,3 +1,3 @@
|
|||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:1ee40463b0acf6e57e1ae9086e5657f4f503f80fa0e66f780a247ef707c47b11
|
||||
size 1268614
|
||||
oid sha256:2167ff506f5b6a49be98b5637b3d9d5b536e65068957dc1f1c6999694b6a6df8
|
||||
size 1268899
|
||||
|
|
|
@ -1,3 +1,3 @@
|
|||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:45c56309c4d7697b8c7f73804e1cdaf74f1bb2757cd52131fbcf9fe122bdfbca
|
||||
size 868047
|
||||
oid sha256:fbfa674eef8fd48d440f398a3667cd823918d594f3c403807813a9c884129afd
|
||||
size 868462
|
||||
|
|
|
@ -1,3 +1,3 @@
|
|||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:5f2a9fecfaca33cd45247f3143e71c921fde3953a047d80737007f446af6913f
|
||||
size 3408360
|
||||
oid sha256:243e04e89324bebbc1cda3b23ca5ed98f9a0c9f12718a74e541cd80d511a42a9
|
||||
size 3408147
|
||||
|
|
|
@ -1,3 +1,3 @@
|
|||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:af9bd26fde5debe98594fdaa84e2fbe98f492004532f5805a0b47d1f0a60ad56
|
||||
size 582897
|
||||
oid sha256:6a3d11f5c162eee60f56a87cd0dad80b7b031b4ea8d58ba5775d564396245411
|
||||
size 582811
|
||||
|
|
|
@ -1,3 +1,3 @@
|
|||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:7964103a52b99cdf0785c10ab74ba2c93093b22e6ffde0f10910332ab8f764d2
|
||||
size 2459039
|
||||
oid sha256:94351ef9f6ec4f80af75e2479b5d8ca083a5e5290beec4d10b4474822d0934fa
|
||||
size 2459281
|
||||
|
|
|
@ -1,3 +1,3 @@
|
|||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:bfcde865c4db4243e6271baf1c67da57a981d28d5693bd061924fabdc25f7055
|
||||
size 635668
|
||||
oid sha256:91c3eb0b721652492d77fe3c6f00e1ec4780e69fb504ae83038fd749169be65e
|
||||
size 635492
|
||||
|
|
|
@ -1,3 +1,3 @@
|
|||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:2cd99151cfe067aac323ee8e1b49ef2ebab0dbc5cfeda73d00da4b675bfc3411
|
||||
size 3376313
|
||||
oid sha256:f8f33b73823cd4629d56e5c2341c1b99fb6a9add80ddd14687e27216dd3bd6a8
|
||||
size 3376855
|
||||
|
|
|
@ -1,3 +1,3 @@
|
|||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:fd7a73dd3b6d6478e50a92d7f1ee285b51c5f346b9f373f0a05f433a5faff0bc
|
||||
size 575078
|
||||
oid sha256:e4b69461c2603eaa28e4cdfe30b4d3a684a17ad490c38ec8a175ce9ad79d4d77
|
||||
size 575161
|
||||
|
|
|
@ -1,3 +1,3 @@
|
|||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:11471cacebf365592b5d30012d6074d231fd22ec44aa1372d632fc4bb05d70a5
|
||||
size 2353912
|
||||
oid sha256:d079f1eefd794e1e50262d9b55954b6de0cb1e1624d50f62a6bbed1ec9f02ece
|
||||
size 2355271
|
||||
|
|
|
@ -1,3 +1,3 @@
|
|||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:b3b629b1f8e89b0615efdc38de78bd50c3f4e704159662265bb208c799add33f
|
||||
size 947135
|
||||
oid sha256:d0bc7888877262e76840f68e21ddc6a18d45e44ffec39ac1f12d24a5feada6ff
|
||||
size 950277
|
||||
|
|
|
@ -1,3 +1,3 @@
|
|||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:bb8a3786e1a6591ff7250cc568a7530d575ac6958a67ba67f1c2487b386e0cf1
|
||||
size 1840849
|
||||
oid sha256:48e853cd8fcdc6c0fae7a4e861e04bf1f980ef7e0e77a86ecd51b3ae987d6c53
|
||||
size 1847748
|
||||
|
|
|
@ -1,3 +1,3 @@
|
|||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:978f37fdab4c9365afbaea2a1af0d0dd105d9092f2e6cb9bc52df91281e3474c
|
||||
size 1280977
|
||||
oid sha256:d6a5297bd9a7bbcb735902eb359659a5ab3156aa89a784ddd7a647b7aa6f92db
|
||||
size 1281662
|
||||
|
|
|
@ -1,3 +1,3 @@
|
|||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:8d5d49ce48639f2c21d01ed4d073b049e17de03cccb3e6c159c5dcfcffd0804b
|
||||
size 5075147
|
||||
oid sha256:4532d8075cad85869fe9a17b76e53488a675168f7a30678137fd568fac8237cf
|
||||
size 5080004
|
||||
|
|
Некоторые файлы не были показаны из-за слишком большого количества измененных файлов Показать больше
Загрузка…
Ссылка в новой задаче