Merge branch 'main' into actions-sha
This commit is contained in:
@@ -13,7 +13,7 @@ module.exports = {
|
||||
babelOptions: { configFile: './.babelrc' },
|
||||
sourceType: 'module',
|
||||
},
|
||||
ignorePatterns: ['tmp/*', '!/.*', '/.next/', 'script/bookmarklets/*', 'lib/sigsci.js'],
|
||||
ignorePatterns: ['tmp/*', '!/.*', '/.next/', 'script/bookmarklets/*'],
|
||||
rules: {
|
||||
'import/no-extraneous-dependencies': ['error', { packageDir: '.' }],
|
||||
},
|
||||
|
||||
Binary file not shown.
|
Before Width: | Height: | Size: 32 KiB After Width: | Height: | Size: 18 KiB |
Binary file not shown.
|
Before Width: | Height: | Size: 30 KiB |
Binary file not shown.
|
Before Width: | Height: | Size: 65 KiB |
Binary file not shown.
|
Before Width: | Height: | Size: 26 KiB |
BIN
assets/images/help/repository/enable-debug-logging.png
Normal file
BIN
assets/images/help/repository/enable-debug-logging.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 17 KiB |
@@ -339,7 +339,7 @@ function ShowSearchResults({
|
||||
const versions = Array.from(latestVersions).map((version) => {
|
||||
return {
|
||||
title: allVersions[version].versionTitle,
|
||||
version: version,
|
||||
version,
|
||||
}
|
||||
})
|
||||
|
||||
|
||||
@@ -50,7 +50,7 @@ export const ArticleCards = () => {
|
||||
const guides = isUserFiltering ? filteredResults : includeGuides || []
|
||||
|
||||
const types = Object.entries(guideTypes).map(([key, val]) => {
|
||||
return { text: val, key: key }
|
||||
return { text: val, key }
|
||||
}) as ItemInput[]
|
||||
|
||||
types.unshift({ text: t('filters.all'), key: undefined })
|
||||
|
||||
@@ -66,7 +66,7 @@ export const TableOfContents = (props: Props) => {
|
||||
}
|
||||
: {
|
||||
key: href,
|
||||
title: title,
|
||||
title,
|
||||
renderItem: () => (
|
||||
<ActionList.Item className={cx('border-bottom')}>
|
||||
<li key={href} className={cx('mt-2', isActive && 'color-fg-muted')}>
|
||||
|
||||
@@ -97,7 +97,10 @@ export const RestReferencePage = ({ restOperations }: StructuredContentT) => {
|
||||
never render anything. It always just return null. */}
|
||||
{loadClientsideRedirectExceptions && <ClientSideRedirectExceptions />}
|
||||
{lazyLoadHighlightJS && <ClientSideHighlightJS />}
|
||||
<div className={cx(styles.restOperation, 'px-3 px-md-6 my-4 container-xl')}>
|
||||
<div
|
||||
className={cx(styles.restOperation, 'px-3 px-md-6 my-4 container-xl')}
|
||||
data-search="article-body"
|
||||
>
|
||||
<h1 className="mb-3">{title}</h1>
|
||||
{intro && (
|
||||
<Lead data-testid="lead" data-search="lead" className="markdown-body">
|
||||
|
||||
@@ -17,7 +17,7 @@ versions:
|
||||
|
||||
## About re-running workflows and jobs
|
||||
|
||||
Re-running a workflow{% if re-run-jobs %} or jobs in a workflow{% endif %} uses the same `GITHUB_SHA` (commit SHA) and `GITHUB_REF` (Git ref) of the original event that triggered the workflow run. You can re-run a workflow{% if re-run-jobs %} or jobs in a workflow{% endif %} for up to 30 days after the initial run.
|
||||
Re-running a workflow{% if re-run-jobs %} or jobs in a workflow{% endif %} uses the same `GITHUB_SHA` (commit SHA) and `GITHUB_REF` (Git ref) of the original event that triggered the workflow run. You can re-run a workflow{% if re-run-jobs %} or jobs in a workflow{% endif %} for up to 30 days after the initial run.{% if debug-reruns %} When you re-run a workflow or jobs in a workflow, you can enable debug logging for the re-run. This will enable runner diagnostic logging and step debug logging for the re-run. For more information about debug logging, see "[Enabling debug logging](/actions/monitoring-and-troubleshooting-workflows/enabling-debug-logging)."{% endif %}
|
||||
|
||||
## Re-running all the jobs in a workflow
|
||||
|
||||
@@ -37,6 +37,7 @@ Re-running a workflow{% if re-run-jobs %} or jobs in a workflow{% endif %} uses
|
||||
1. In the upper-right corner of the workflow, use the **Re-run jobs** drop-down menu, and select **Re-run all jobs**.
|
||||

|
||||
{% endif %}
|
||||
{% data reusables.actions.enable-debug-logging %}
|
||||
|
||||
{% endwebui %}
|
||||
|
||||
@@ -50,6 +51,15 @@ To re-run a failed workflow run, use the `run rerun` subcommand. Replace `run-id
|
||||
gh run rerun <em>run-id</em>
|
||||
```
|
||||
|
||||
{% if debug-reruns %}
|
||||
{% data reusables.actions.enable-debug-logging-cli %}
|
||||
|
||||
```shell
|
||||
gh run rerun <em>run-id</em> --debug
|
||||
```
|
||||
|
||||
{% endif %}
|
||||
|
||||
To view the progress of the workflow run, use the `run watch` subcommand and select the run from the interactive list.
|
||||
|
||||
```shell
|
||||
@@ -71,6 +81,7 @@ If any jobs in a workflow run failed, you can re-run just the jobs that failed.
|
||||
{% data reusables.repositories.view-run %}
|
||||
1. In the upper-right corner of the workflow, use the **Re-run jobs** drop-down menu, and select **Re-run failed jobs**.
|
||||

|
||||
{% data reusables.actions.enable-debug-logging %}
|
||||
|
||||
{% endwebui %}
|
||||
|
||||
@@ -82,6 +93,14 @@ To re-run failed jobs in a workflow run, use the `run rerun` subcommand with the
|
||||
gh run rerun <em>run-id</em> --failed
|
||||
```
|
||||
|
||||
{% if debug-reruns %}
|
||||
{% data reusables.actions.enable-debug-logging-cli %}
|
||||
|
||||
```shell
|
||||
gh run rerun <em>run-id</em> --failed --debug
|
||||
```
|
||||
|
||||
{% endif %}
|
||||
{% endcli %}
|
||||
|
||||
## Re-running a specific job in a workflow
|
||||
@@ -99,6 +118,7 @@ When you re-run a specific job in a workflow, a new workflow run will start for
|
||||
|
||||
Alternatively, click on a job to view the log. In the log, click {% octicon "sync" aria-label="The re-run icon" %}.
|
||||

|
||||
{% data reusables.actions.enable-debug-logging %}
|
||||
|
||||
{% endwebui %}
|
||||
|
||||
@@ -110,6 +130,14 @@ To re-run a specific job in a workflow run, use the `run rerun` subcommand with
|
||||
gh run rerun --job <em>job-id</em>
|
||||
```
|
||||
|
||||
{% if debug-reruns %}
|
||||
{% data reusables.actions.enable-debug-logging-cli %}
|
||||
|
||||
```shell
|
||||
gh run rerun --job <em>job-id</em> --debug
|
||||
```
|
||||
|
||||
{% endif %}
|
||||
{% endcli %}
|
||||
|
||||
{% endif %}
|
||||
|
||||
@@ -22,6 +22,12 @@ These extra logs are enabled by setting secrets in the repository containing the
|
||||
|
||||
For more information on setting secrets, see "[Creating and using encrypted secrets](/actions/automating-your-workflow-with-github-actions/creating-and-using-encrypted-secrets)."
|
||||
|
||||
{% if debug-reruns %}
|
||||
|
||||
Additionally, anyone who has access to run a workflow can enable runner diagnostic logging and step debug logging for a workflow re-run. For more information, see "[Re-running workflows and jobs](/actions/managing-workflow-runs/re-running-workflows-and-jobs)."
|
||||
|
||||
{% endif %}
|
||||
|
||||
## Enabling runner diagnostic logging
|
||||
|
||||
Runner diagnostic logging provides additional log files that contain information about how a runner is executing a job. Two extra log files are added to the log archive:
|
||||
|
||||
@@ -1199,6 +1199,16 @@ Action | Description
|
||||
| `secret_scanning.disable` | An organization owner disabled secret scanning for all existing{% ifversion ghec %} private or internal{% endif %} repositories. For more information, see "[About secret scanning](/github/administering-a-repository/about-secret-scanning)."
|
||||
| `secret_scanning.enable` | An organization owner enabled secret scanning for all existing{% ifversion ghec %} private or internal{% endif %} repositories.
|
||||
|
||||
{% if secret-scanning-alert-audit-log %}
|
||||
### `secret_scanning_alert` category actions
|
||||
|
||||
| Action | Description
|
||||
|------------------|-------------------
|
||||
| `secret_scanning_alert.create` | {% data variables.product.prodname_dotcom %} detected a secret and created a {% data variables.product.prodname_secret_scanning %} alert. For more information, see "[Managing alerts from {% data variables.product.prodname_secret_scanning %}](/code-security/secret-scanning/managing-alerts-from-secret-scanning)."
|
||||
| `secret_scanning_alert.reopen` | A user reopened a {% data variables.product.prodname_secret_scanning %} alert.
|
||||
| `secret_scanning_alert.resolve` | A user resolved a {% data variables.product.prodname_secret_scanning %} alert.
|
||||
{% endif %}
|
||||
|
||||
### `secret_scanning_new_repos` category actions
|
||||
|
||||
| Action | Description
|
||||
|
||||
@@ -16,7 +16,9 @@ topics:
|
||||
|
||||
You can export the audit log by downloading a JSON or CSV file from your enterprise on {% data variables.product.product_name %}. When you export audit log events, you can query by one or more of these supported qualifiers to filter for specific log events to export. For more information about search qualifiers, see "[Search based on the action performed](/admin/monitoring-activity-in-your-enterprise/reviewing-audit-logs-for-your-enterprise/searching-the-audit-log-for-your-enterprise#search-based-on-the-action-performed)."
|
||||
|
||||
You can export Git events data by downloading a JSON file from your enterprise audit log. Unlike audit log data, you cannot query for specific Git events to filter and export in the audit log user interface.
|
||||
You can export Git events data by downloading a JSON file from your enterprise audit log. Unlike audit log data, you cannot query for specific Git events to filter and export in the audit log user interface.
|
||||
|
||||
{% data reusables.audit_log.git-events-export-limited %}
|
||||
|
||||
{% data reusables.audit_log.exported-log-keys-and-values %}
|
||||
|
||||
|
||||
@@ -311,7 +311,6 @@ Errors with `body` will be prefixed with `body[i]` where `i` represents the zero
|
||||
body:
|
||||
- attributes:
|
||||
value: "Thanks for taking the time to fill out this bug! If you need real-time help, join us on Discord."
|
||||
preview_only: false
|
||||
```
|
||||
|
||||
The error can be fixed by adding the key `type` with a valid input type as the value. For the available `body` input types and their syntaxes, see "[Syntax for {% data variables.product.prodname_dotcom %}'s form schema](/communities/using-templates-to-encourage-useful-issues-and-pull-requests/syntax-for-githubs-form-schema#keys)."
|
||||
@@ -321,7 +320,6 @@ body:
|
||||
- type: markdown
|
||||
attributes:
|
||||
value: "Thanks for taking the time to fill out this bug! If you need real-time help, join us on Discord."
|
||||
preview_only: false
|
||||
```
|
||||
|
||||
## Body[i]: `x` is not a valid input type
|
||||
@@ -337,7 +335,6 @@ body:
|
||||
- type: x
|
||||
attributes:
|
||||
value: "Thanks for taking the time to fill out this bug! If you need real-time help, join us on Discord."
|
||||
preview_only: false
|
||||
```
|
||||
|
||||
The error can be fixed by changing `x` to one of the valid types.
|
||||
@@ -347,7 +344,6 @@ body:
|
||||
- type: markdown
|
||||
attributes:
|
||||
value: "Thanks for taking the time to fill out this bug! If you need real-time help, join us on Discord."
|
||||
preview_only: false
|
||||
```
|
||||
|
||||
## Body[i]: required attribute key `value` is missing
|
||||
@@ -363,7 +359,6 @@ body:
|
||||
- type: markdown
|
||||
attributes:
|
||||
value: "Thanks for taking the time to fill out this bug! If you need real-time help, join us on Discord."
|
||||
preview_only: false
|
||||
- type: markdown
|
||||
```
|
||||
|
||||
@@ -374,7 +369,6 @@ body:
|
||||
- type: markdown
|
||||
attributes:
|
||||
value: "Thanks for taking the time to fill out this bug! If you need real-time help, join us on Discord."
|
||||
preview_only: false
|
||||
- type: markdown
|
||||
attributes:
|
||||
value: "This is working now!"
|
||||
|
||||
@@ -19,7 +19,7 @@ shortTitle: GitHub Campus Program
|
||||
- Exclusive access to new features, GitHub Education-specific swag, and free developer tools from {% data variables.product.prodname_dotcom %} partners
|
||||
- Automated access to premium {% data variables.product.prodname_education %} features, like the {% data variables.product.prodname_student_pack %}
|
||||
|
||||
To read about how GitHub is used by educators, see [GitHub Education stories.](https://education.github.com/stories)
|
||||
To read about how GitHub is used by educators, see [GitHub Education stories](https://education.github.com/stories).
|
||||
|
||||
## {% data variables.product.prodname_campus_program %} terms and conditions
|
||||
|
||||
@@ -32,7 +32,7 @@ To read about how GitHub is used by educators, see [GitHub Education stories.](h
|
||||
- New organizations in your enterprise are automatically added to your enterprise account. To add organizations that existed before your school joined the {% data variables.product.prodname_campus_program %}, please contact [GitHub Education Support](https://support.github.com/contact/education). For more information about administrating your enterprise, see the [enterprise administrators documentation](/admin). New organizations in your enterprise are automatically added to your enterprise account. To add organizations that existed before your school joined the {% data variables.product.prodname_campus_program %}, please contact GitHub Education Support.
|
||||
|
||||
|
||||
To read more about {% data variables.product.prodname_dotcom %}'s privacy practices, see ["Global Privacy Practices"](/github/site-policy/global-privacy-practices)
|
||||
To read more about {% data variables.product.prodname_dotcom %}'s privacy practices, see ["Global Privacy Practices"](/github/site-policy/global-privacy-practices).
|
||||
|
||||
## {% data variables.product.prodname_campus_program %} Application Eligibility
|
||||
|
||||
|
||||
@@ -32,27 +32,6 @@ For more information about personal accounts on {% data variables.product.produc
|
||||
{% data reusables.education.plan-to-use-github %}
|
||||
{% data reusables.education.submit-application %}
|
||||
|
||||
## Upgrading your organization
|
||||
|
||||
After your request for an educator or researcher discount has been approved, you can upgrade the organizations you use with your learning community to {% data variables.product.prodname_team %}, which allows unlimited users and private repositories with full features, for free. You can upgrade an existing organization or create a new organization to upgrade.
|
||||
|
||||
### Upgrading an existing organization
|
||||
|
||||
{% data reusables.education.upgrade-page %}
|
||||
{% data reusables.education.upgrade-organization %}
|
||||
|
||||
### Upgrading a new organization
|
||||
|
||||
{% data reusables.education.upgrade-page %}
|
||||
1. Click {% octicon "plus" aria-label="The plus symbol" %} **Create an organization**.
|
||||

|
||||
3. Read the information, then click **Create organization**.
|
||||

|
||||
4. Under "Choose your plan", click **Choose {% data variables.product.prodname_free_team %}**.
|
||||
5. Follow the prompts to create your organization.
|
||||
{% data reusables.education.upgrade-page %}
|
||||
{% data reusables.education.upgrade-organization %}
|
||||
|
||||
## Further reading
|
||||
|
||||
- "[Why wasn't my application for an educator or researcher discount approved?](/articles/why-wasn-t-my-application-for-an-educator-or-researcher-discount-approved)"
|
||||
|
||||
@@ -154,7 +154,7 @@ When you fork a project in order to propose changes to the original repository,
|
||||
|
||||
6. Type `git remote add upstream`, and then paste the URL you copied in Step 3 and press **Enter**. It will look like this:
|
||||
```shell
|
||||
$ git remote add upstream https://{% data variables.command_line.codeblock %}/YOUR_USERNAME/Spoon-Knife.git
|
||||
$ git remote add upstream https://{% data variables.command_line.codeblock %}/ORIGINAL_OWNER/Spoon-Knife.git
|
||||
```
|
||||
|
||||
7. To verify the new upstream repository you have specified for your fork, type `git remote -v` again. You should see the URL for your fork as `origin`, and the URL for the original repository as `upstream`.
|
||||
|
||||
@@ -148,14 +148,19 @@ For more information, see "[Relative Links](#relative-links)."
|
||||
{% ifversion fpt or ghec or ghes > 3.3 or ghae-issue-5559 %}
|
||||
### Specifying the theme an image is shown to
|
||||
|
||||
You can specify the theme an image is displayed to by appending `#gh-dark-mode-only` or `#gh-light-mode-only` to the end of an image URL, in Markdown.
|
||||
You can specify the theme an image is displayed for in Markdown by using the HTML `<picture>` element in combination with the `prefers-color-scheme` media feature. We distinguish between light and dark color modes, so there are two options available. You can use these options to display images optimized for dark or light backgrounds. This is particularly helpful for transparent PNG images.
|
||||
|
||||
We distinguish between light and dark color modes, so there are two options available. You can use these options to display images optimized for dark or light backgrounds. This is particularly helpful for transparent PNG images.
|
||||
For example, the following code displays a sun image for light themes and a moon for dark themes:
|
||||
|
||||
| Context | URL |
|
||||
|--------|--------|
|
||||
| Dark Theme | `` |
|
||||
| Light Theme | `` |
|
||||
```HTML
|
||||
<picture>
|
||||
<source media="(prefers-color-scheme: dark)" srcset="https://user-images.githubusercontent.com/25423296/163456776-7f95b81a-f1ed-45f7-b7ab-8fa810d529fa.png">
|
||||
<source media="(prefers-color-scheme: light)" srcset="https://user-images.githubusercontent.com/25423296/163456779-a8556205-d0a5-45e2-ac17-42d089e3c3f8.png">
|
||||
<img alt="Shows an illustrated sun in light color mode and a moon with stars in dark color mode." src="https://user-images.githubusercontent.com/25423296/163456779-a8556205-d0a5-45e2-ac17-42d089e3c3f8.png">
|
||||
</picture>
|
||||
```
|
||||
|
||||
The old method of specifying images based on the theme, by using a fragment appended to the URL (`#gh-dark-mode-only` or `#gh-light-mode-only`), is deprecated and will be removed in favor of the new method described above.
|
||||
{% endif %}
|
||||
|
||||
## Lists
|
||||
|
||||
@@ -12,7 +12,7 @@ topics:
|
||||
- API
|
||||
---
|
||||
|
||||
You can access most objects in GitHub (users, issues, pull requests, etc.) using either the REST API or the GraphQL API. With a [recent update](https://developer.github.com/changes/2017-12-19-graphql-node-id/), you can find the **global node ID** of many objects from within the REST API and use these IDs in your GraphQL operations.
|
||||
You can access most objects in GitHub (users, issues, pull requests, etc.) using either the REST API or the GraphQL API. You can find the **global node ID** of many objects from within the REST API and use these IDs in your GraphQL operations. For more information, see "[Preview GraphQL API v4 Node IDs in REST API v3 resources](https://developer.github.com/changes/2017-12-19-graphql-node-id/)."
|
||||
|
||||
{% note %}
|
||||
|
||||
|
||||
@@ -127,6 +127,9 @@ Using the qualifier `country`, you can filter events in the audit log based on t
|
||||
## Exporting the audit log
|
||||
|
||||
{% data reusables.audit_log.export-log %}
|
||||
|
||||
{% data reusables.audit_log.git-events-export-limited %}
|
||||
|
||||
{% data reusables.audit_log.exported-log-keys-and-values %}
|
||||
{% endif %}
|
||||
|
||||
@@ -737,7 +740,19 @@ For more information, see "[Managing the publication of {% data variables.produc
|
||||
|------------------|-------------------
|
||||
| `disable` | Triggered when an organization owner disables secret scanning for all existing{% ifversion ghec %}, private or internal{% endif %} repositories. For more information, see "[About secret scanning](/github/administering-a-repository/about-secret-scanning)."
|
||||
| `enable` | Triggered when an organization owner enables secret scanning for all existing{% ifversion ghec %}, private or internal{% endif %} repositories.
|
||||
{% endif %}
|
||||
|
||||
{% if secret-scanning-alert-audit-log %}
|
||||
### `secret_scanning_alert` category actions
|
||||
|
||||
| Action | Description
|
||||
|------------------|-------------------
|
||||
| `create` | Triggered when {% data variables.product.prodname_dotcom %} detects an exposed secret and creates a {% data variables.product.prodname_secret_scanning %} alert. For more information, see "[Managing alerts from {% data variables.product.prodname_secret_scanning %}](/code-security/secret-scanning/managing-alerts-from-secret-scanning)."
|
||||
| `reopen` | Triggered when a user reopens a {% data variables.product.prodname_secret_scanning %} alert.
|
||||
| `resolve` | Triggered when a user resolves a {% data variables.product.prodname_secret_scanning %} alert.
|
||||
{% endif %}
|
||||
|
||||
{% ifversion ghec or ghes or ghae %}
|
||||
### `secret_scanning_new_repos` category actions
|
||||
|
||||
| Action | Description
|
||||
|
||||
@@ -50,14 +50,14 @@ When installing or publishing a Docker image, the {% data variables.product.prod
|
||||
|
||||
## Pushing container images
|
||||
|
||||
This example pushes the latest version of `IMAGE-NAME`.
|
||||
This example pushes the latest version of `IMAGE_NAME`.
|
||||
```shell
|
||||
$ docker push {% data reusables.package_registry.container-registry-hostname %}/OWNER/IMAGE_NAME:latest
|
||||
```
|
||||
|
||||
This example pushes the `2.5` version of the image.
|
||||
```shell
|
||||
$ docker push {% data reusables.package_registry.container-registry-hostname %}/OWNER/IMAGE-NAME:2.5
|
||||
$ docker push {% data reusables.package_registry.container-registry-hostname %}/OWNER/IMAGE_NAME:2.5
|
||||
```
|
||||
|
||||
When you first publish a package, the default visibility is private. To change the visibility or set access permissions, see "[Configuring a package's access control and visibility](/packages/learn-github-packages/configuring-a-packages-access-control-and-visibility)."
|
||||
|
||||
@@ -11,13 +11,15 @@ shortTitle: Change visibility of site
|
||||
|
||||
## About access control for {% data variables.product.prodname_pages %} sites
|
||||
|
||||
With access control for {% data variables.product.prodname_pages %}, you can restrict access to your {% data variables.product.prodname_pages %} site by publishing the site privately. A privately published site can only be accessed by people with read access to the repository the site is published from. You can use privately published sites to share your internal documentation or knowledge base with members of your enterprise.
|
||||
With access control for {% data variables.product.prodname_pages %}, you can restrict access to your project site by publishing the site privately. A privately published site can only be accessed by people with read access to the repository the site is published from. You can use privately published sites to share your internal documentation or knowledge base with members of your enterprise.
|
||||
|
||||
{% data reusables.pages.privately-publish-ghec-only %}
|
||||
|
||||
If your enterprise uses {% data variables.product.prodname_emus %}, access control is not available, and all {% data variables.product.prodname_pages %} sites are only accessible to other enterprise members. For more information about {% data variables.product.prodname_emus %}, see "[About {% data variables.product.prodname_pages %}](/pages/getting-started-with-github-pages/about-github-pages#limitations-for-enterprise-managed-users)."
|
||||
|
||||
If your organization uses {% data variables.product.prodname_ghe_cloud %} without {% data variables.product.prodname_emus %}, you can choose to publish your sites privately or publicly to anyone on the internet. Access control is available for project sites that are published from a private or internal repository that are owned by the organization. You cannot manage access control for an organization site. For more information about the types of {% data variables.product.prodname_pages %} sites, see "[About {% data variables.product.prodname_pages %}](/pages/getting-started-with-github-pages/about-github-pages#types-of-github-pages-sites)."
|
||||
If your organization uses {% data variables.product.prodname_ghe_cloud %} without {% data variables.product.prodname_emus %}, you can choose to publish your project sites privately or publicly to anyone on the internet.
|
||||
|
||||
Access control is available for project sites that are published from a private or internal repository that are owned by the organization. You cannot manage access control for an organization site. For more information about the types of {% data variables.product.prodname_pages %} sites, see "[About {% data variables.product.prodname_pages %}](/pages/getting-started-with-github-pages/about-github-pages#types-of-github-pages-sites)."
|
||||
|
||||
## About subdomains for privately published sites
|
||||
|
||||
|
||||
7
data/features/debug-reruns.yml
Normal file
7
data/features/debug-reruns.yml
Normal file
@@ -0,0 +1,7 @@
|
||||
# Issue 6629
|
||||
# Enabling debug logging when re-running jobs or workflows
|
||||
versions:
|
||||
fpt: '*'
|
||||
ghec: '*'
|
||||
ghes: '>=3.6'
|
||||
ghae: 'issue-6629'
|
||||
6
data/features/secret-scanning-alert-audit-log.yml
Normal file
6
data/features/secret-scanning-alert-audit-log.yml
Normal file
@@ -0,0 +1,6 @@
|
||||
# Reference: #7046.
|
||||
# Documentation for new audit log events for alerts for secret scanning.
|
||||
versions:
|
||||
ghec: '*'
|
||||
ghes: '>=3.6'
|
||||
ghae: 'issue-7046'
|
||||
@@ -1,9 +1,12 @@
|
||||
By default, the artifacts and log files generated by workflows are retained for 90 days before they are automatically deleted. You can adjust the retention period, depending on the type of repository:
|
||||
By default, the artifacts and log files generated by workflows are retained for 90 days before they are automatically deleted.
|
||||
|
||||
{%- ifversion fpt or ghec %}
|
||||
You can adjust the retention period, depending on the type of repository:
|
||||
|
||||
{%- ifversion fpt or ghec or ghes %}
|
||||
- For public repositories: you can change this retention period to anywhere between 1 day or 90 days.
|
||||
- For private{% ifversion ghec %} and internal{% endif %} repositories: you can change this retention period to anywhere between 1 day or 400 days.
|
||||
{%- else %}
|
||||
You can change this retention period to anywhere between 1 day or 400 days.
|
||||
{%- endif %}
|
||||
|
||||
- For private{% ifversion ghec or ghes or ghae %} and internal{% endif %} repositories: you can change this retention period to anywhere between 1 day or 400 days.
|
||||
|
||||
When you customize the retention period, it only applies to new artifacts and log files, and does not retroactively apply to existing objects. For managed repositories and organizations, the maximum retention period cannot exceed the limit set by the managing organization or enterprise.
|
||||
|
||||
1
data/reusables/actions/enable-debug-logging-cli.md
Normal file
1
data/reusables/actions/enable-debug-logging-cli.md
Normal file
@@ -0,0 +1 @@
|
||||
To enable enable runner diagnostic logging and step debug logging for the re-run, use the `--debug` flag.
|
||||
4
data/reusables/actions/enable-debug-logging.md
Normal file
4
data/reusables/actions/enable-debug-logging.md
Normal file
@@ -0,0 +1,4 @@
|
||||
{% if debug-reruns %}
|
||||
1. Optionally, to enable runner diagnostic logging and step debug logging for the re-run, select **Enable debug logging**.
|
||||

|
||||
{% endif %}
|
||||
7
data/reusables/audit_log/git-events-export-limited.md
Normal file
7
data/reusables/audit_log/git-events-export-limited.md
Normal file
@@ -0,0 +1,7 @@
|
||||
{% ifversion ghec %}
|
||||
{% note %}
|
||||
|
||||
**Note:** When you export Git events, events that were initiated via the web browser or the REST or GraphQL APIs are not included. For example, when a user merges a pull request in the web browser, changes are pushed to the base branch, but the Git event for that push is not included in the export.
|
||||
|
||||
{% endnote %}
|
||||
{% endif %}
|
||||
@@ -1,2 +0,0 @@
|
||||
1. Next to the organization you want to upgrade, click **Upgrade**.
|
||||

|
||||
@@ -1 +0,0 @@
|
||||
1. Go to "Upgrade your organization" on the [Organization Upgrades](https://education.github.com/toolbox/offers/github-org-upgrades) page.
|
||||
@@ -1,5 +1,5 @@
|
||||
{% ifversion fpt %}
|
||||
You can create {% data variables.product.prodname_pages %} sites that are publicly available on the internet. Organizations that use {% data variables.product.prodname_ghe_cloud %} can also publish sites privately by managing access control for the site.
|
||||
{% elsif ghec %}
|
||||
Unless your enterprise uses {% data variables.product.prodname_emus %}, you can choose to publish sites publicly or privately by managing access control for the site.
|
||||
Unless your enterprise uses {% data variables.product.prodname_emus %}, you can choose to publish project sites publicly or privately by managing access control for the site.
|
||||
{% endif %}
|
||||
@@ -19,7 +19,6 @@ services:
|
||||
HEROKU_PRODUCTION_APP: true
|
||||
PORT: 4000
|
||||
DD_AGENT_HOST: datadog-agent
|
||||
SIGSCI_RPC_ADDRESS: sigsci-agent:8000
|
||||
depends_on:
|
||||
- datadog-agent
|
||||
restart: always
|
||||
@@ -32,12 +31,3 @@ services:
|
||||
DD_API_KEY: ${DD_API_KEY}
|
||||
DD_AGENT_HOST: datadog-agent
|
||||
DD_HISTOGRAM_PERCENTILES: 0.99 0.95 0.50
|
||||
|
||||
sigsci-agent:
|
||||
image: signalsciences/sigsci-agent
|
||||
ports:
|
||||
- '8000:8000'
|
||||
environment:
|
||||
SIGSCI_RPC_ADDRESS: 0.0.0.0:8000
|
||||
SIGSCI_ACCESSKEY: ${SIGSCI_ACCESSKEYID}
|
||||
SIGSCI_SECRETACCESSKEY: ${SIGSCI_SECRETACCESSKEY}
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:7a107e0e65d9055f6f2b9e54c22c7a360c480123832ef915738cc38258284724
|
||||
size 680760
|
||||
oid sha256:43869d8585f951b90be617ad0f0ed307c21b3dbf026602552ba2ec089c720a1b
|
||||
size 731447
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:9f7355968bfa6a64f13c7eb1f0cc5c17a8e7da1f101e61e7abaab01b4c80753a
|
||||
size 1329872
|
||||
oid sha256:982a7d348249a8cd9dc752fc00412158d933ef5999365e152bd6873c593eb1f6
|
||||
size 1550885
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:36f81a82620c46cdde46438bca1db1ad48d29091862cbb2792ab75eb2d56004c
|
||||
size 909627
|
||||
oid sha256:230d54e6114c6dab5e5d670a7631f5d8e59a110c99a96787dfef8bc9951be694
|
||||
size 987107
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:8adc7917c3d2d7d69088934bce3d7f6ec139c4fd6cf119ce1532248a8e6c1eac
|
||||
size 3527038
|
||||
oid sha256:1bd1c993b1422e06a49ad7aa6b28d9769237de3adea6cd640d3fa06a16c06196
|
||||
size 3981317
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:5a87568e4289843a381a9e8a8d632a25ac30b5e1bec922c870b7214bd7e5cf4c
|
||||
size 626755
|
||||
oid sha256:4422809e90cab6ed10a90315189675f144d621f64831bc789d106ae8dff109e3
|
||||
size 674610
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:3685c626ed482e1ecd2bcd6a67bc2b6b775faca671d6543fb0c1f1de3641bc4f
|
||||
size 2646062
|
||||
oid sha256:e53df79439a64234ef61815a75668b8ab8c8daae859d3abb68bb4b5636e9d541
|
||||
size 2964314
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:7fe8e4e4353e253211fb06f76f7e53557dcebb8f3c523d84b9d3a09d107f134f
|
||||
size 689784
|
||||
oid sha256:4f029ced57c862b7e5fd93ba19dd35797c2d9d998be6aea92fb74a027994342a
|
||||
size 741129
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:2b8b2f0d6d8fe6bc0521ce45fe810bdea526c44a7fc037b3082f2b5b446cc74c
|
||||
size 3702490
|
||||
oid sha256:fe0e34c35444315a25d2b592ee8f2b164b459ae56b2d983ce84f09a672f98751
|
||||
size 4109794
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:54d5898d2ff6647f37d86dd338d53ab42325969848b2941f83d46f6c61b64394
|
||||
size 616973
|
||||
oid sha256:2091b9a83520e2b0b6c58bf799531cd5c8fa3dbdccf82a5ca188d96793dc3baf
|
||||
size 665592
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:472672d62d5785aacf297b7f5722733da97ac50f7089176189a8f6162be88cc6
|
||||
size 2546010
|
||||
oid sha256:742abd0a484ddee7a07652f9a000278cc3f16cf2dff3ba9acedad756c607cb69
|
||||
size 2864110
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:eef3a5142d3377125a29b33d5dc85ec78ed476289e27ba6b5bf04db3f77e8c6a
|
||||
size 698319
|
||||
oid sha256:993c8d3f70e8460c3891f1915826b4b4fa193022e8cc3ad0281a652eaa3387aa
|
||||
size 750552
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:9a8bd35c2dcb2f2c5d5ac5fd942dbc4b26bf40f97fd4b81348577097bb4ac2c3
|
||||
size 1356468
|
||||
oid sha256:8e6a71d13e74c32ee19b2d68d15c69390de78d64b12754424cf7cf1dc7fe1b09
|
||||
size 1581873
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:d949b4c26263591daf64d2dfb2c1ca12eb17188a5b9c77e589ee5b846e951448
|
||||
size 939384
|
||||
oid sha256:0b3d1228da397a9026027c7b480fcfa2ea8c5d7a71b94d97ae70abbc25d1c5ef
|
||||
size 1018355
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:6bedc1be5b04f2e979b9575e62731fa73e68b695f583cfb918fc7a31f8a7761c
|
||||
size 3646845
|
||||
oid sha256:024ac8bdb4e663b522fcee3c24c84a7b7d02bae8825c1ff9570cecae1e2c19e7
|
||||
size 4113458
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:d31b923df1aab7e6f44f5a1e2d7e1aab9e640cc72100a1d1f4cad5718de94faf
|
||||
size 643281
|
||||
oid sha256:11e5105baa3895d02b0b55d7a5d54c5b42668ed9fc71ff5499eb3683ca470ed1
|
||||
size 692207
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:bf33abe48954e67362f4d0c7516fdab067306e0ed627c71c7ff9cdec6384166e
|
||||
size 2716898
|
||||
oid sha256:1af972faa08ea5237a63d114f40619e8577aa018395bc5ba4e526e042a4e4bfd
|
||||
size 3041259
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:9624aae47ad150f40b37bcf4c3193b4e84021b099b8d88de73db612d316647c5
|
||||
size 707494
|
||||
oid sha256:b11431dba18e9e837b4e9db16fa721f5250db41a1e1adf724169a5564b8dcd87
|
||||
size 759638
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:10879aea569685065a3843735f5fd0bd476559a3fcbb31c1b386e0e54254b339
|
||||
size 3798666
|
||||
oid sha256:e53f83f50b791cdfd9c0cc7a06b80ed7e9a14aa53ce06aba5e088739632ef9a9
|
||||
size 4213770
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:2569c79ee2766ccd39f50a05ca3101d097b6314640a385e0d77d547cba47c6bd
|
||||
size 633332
|
||||
oid sha256:8e9c5b929a2268912487bd93082fc2ef983abb3108d067b17ec42cc47d75c84b
|
||||
size 682789
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:35cc96348710bc1c43a235003a180a9aa17c5e98fdff3bda5b107914315342ac
|
||||
size 2609625
|
||||
oid sha256:ae628c51cb627cadd4b65d7d137b6631c7f32c733d3f1f1b159d6c29713d5761
|
||||
size 2934826
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:36fdd2ed46ba45b728e5ddb63e1ca1dadcf2d1615b52e2d6b74d078002d243cd
|
||||
size 721538
|
||||
oid sha256:26382bbacff19d97e56d6035ab900202ada6dc5e22ba8e21643ca4c3bbf2509e
|
||||
size 773587
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:db913f55ebddee8261f4b5d725a15f1c75b84d183cc6f825cb8987e2061209ba
|
||||
size 1399724
|
||||
oid sha256:5f0692f53413d7a75f13c2e46716dd8209a8e5e6301fb1a823dd80701b1511e6
|
||||
size 1622004
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:e59fcaa70e7494bd555d2874464650c49a10bebccff631092c8a045df1d69462
|
||||
size 974294
|
||||
oid sha256:1af557f08e08c2315a0d09aef1cd931325fec310f8cd060c0ac23195b2afe237
|
||||
size 1052572
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:ec409d720c37776aed5a7565969a2ec4447532f249742bbd657e68310a76af56
|
||||
size 3764179
|
||||
oid sha256:b1534275cefd892feb482c82cf781674516ae290da289fe015eace70c7eb2595
|
||||
size 4209066
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:d3e4c5fd5d673d742aa39e565e6b29eecf728709032c1aec73e61bc243aedbad
|
||||
size 662338
|
||||
oid sha256:23d846199b40353a01626947ab2892027b84beaa526ee3115f3481e62fcbd55f
|
||||
size 711311
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:db1cb4c14c3f4b414a2b927efc6919c75ad444e0138296293cc5de5942103e7a
|
||||
size 2801219
|
||||
oid sha256:c9caaef0e5273497e7cc4dabe9122ea74901ea151c7dd19f88d9054047fe1fd8
|
||||
size 3119871
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:39ad22e09e8668f2d5590174e1eeb270ed1c76a519e1a32e433580ec9c63a620
|
||||
size 730490
|
||||
oid sha256:df904c887192cfcf2c44045791268a65f5fedb0f16a67fac035e5aa4f68a7d16
|
||||
size 782870
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:e784527f13079c936cd53a9e8fe17ccefb9b3e6343ea11bd415e5e2961f36a78
|
||||
size 3920330
|
||||
oid sha256:d554fbe7e50dbde57e32c898f4db4cc7aeee633719ce6000322f269f6a5d3846
|
||||
size 4331745
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:ab60981936f68ff4cabee9d1c990bef674133461457119eab412c8a5ac0ca924
|
||||
size 652103
|
||||
oid sha256:a5eda0b7420b9bd870911ab35c7a7af14d306a4b87de751983e8a06c5edacee9
|
||||
size 701823
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:7a6e74bf6858d5a227f66419e6071d94a17d2f43447f8769bdd3b487ae77703d
|
||||
size 2688859
|
||||
oid sha256:9f2cc98d2a4b5edb21e313ecb2108ced954bfe9825a9b3452cba335c088ae89d
|
||||
size 3011225
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:56173537ae1ac887d684b0098f5ec52b1555dbc19e418ad69ec8ea6591deaf7e
|
||||
size 721790
|
||||
oid sha256:99ac0f72ccb0cff07bb969747f45042fe5f3c9fd4e952a7c432dd6c6e9fb4f72
|
||||
size 775436
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:9b24ae0331b7cd46063cdfc4c1896d812ab10286bcacc55025bff19b9a5fdcb0
|
||||
size 1401645
|
||||
oid sha256:c79e56caeed4b6040f3e5d11d03885ec0815e417ab29259e2e1a62f680e12978
|
||||
size 1633501
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:f060876eb33b334218ab044314cfa27c1d537b43fc731659aa3bf0a304b9f9b4
|
||||
size 981247
|
||||
oid sha256:02abd5f58b4044225dfebf60e6364a518087bca234deea3cfb5e7943c349238c
|
||||
size 1061785
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:ca0ec7ddafea9f3623480b1a7a7e9c1f7bdac3f820111561734b96b15301a1f5
|
||||
size 3783410
|
||||
oid sha256:055fff327e9e82d956c4c30567824a496c385d4704949c7a421b1fb00297e477
|
||||
size 4247811
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:ed832ead33a2acde01e6d48791ae4bc72f155148a148414017ac57ac1efc2973
|
||||
size 663854
|
||||
oid sha256:21c74ccbd39fcbeadddebf3efd38650f4d195eb530e8e65bdf7739e88e78f42f
|
||||
size 714774
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:5ea229a64db097076d8252eeecda8cc1cfb24899e7f2cbca11ee8186e8e41238
|
||||
size 2805472
|
||||
oid sha256:9c4e078b4379c8bae55fa9dc1ef9c1074a5898415a827bc446c963131d578622
|
||||
size 3139162
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:1550df52bd55072f947e1b75665bb82df83f5423f337b970ff83d02fb38d4266
|
||||
size 731366
|
||||
oid sha256:67c490aa1c6e507682dcd65c9466519d8eeebb9771a6de1bac306df898e38f80
|
||||
size 785451
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:ff53411b3c4014df5304c7159b9fa3fbb468347c9dfe88ad6079bea831284fbb
|
||||
size 3926286
|
||||
oid sha256:c5dfed75412d0af974d713ba2469123c66dc4eb3126c94577b3ccfc158602f31
|
||||
size 4355739
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:a704288432a8190d4ac11260175d732dfb1c7673b6000c80ddd943f8ded1a63a
|
||||
size 653704
|
||||
oid sha256:0df3cf6229162944e807b69c7ce11e254262ebbc0e492375ae6024f28cb7fcb3
|
||||
size 705049
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:d580edd46c68d7ba019ab94566a2aff4299e1ce88f8282e35a84c9fb1bd6dd33
|
||||
size 2694129
|
||||
oid sha256:2c9c7ecf9d0581bae9f06618a00e7c4d2c6bee91ef6006692af140ca810164e0
|
||||
size 3032078
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:700db0829e85f30f9d8140c4fd01b7cb574db5a81aa2c1667d25c5601ebf6602
|
||||
size 747895
|
||||
oid sha256:78b336dbcc5d72bc7ce475226962f412594c86e5a758c765fd5c43f2b9a4eca5
|
||||
size 801953
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:183142c46befd248c7357bee7f209c8312eb912b0fc34e15b9e1508a1fd030bb
|
||||
size 1460274
|
||||
oid sha256:8c230bcea2b8e6ed73a5d5b1a7b4217b4a8d855af2f293f3338060984d33d0c2
|
||||
size 1697333
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:ea67d7fa14054078b5768496c4e3af0f699e398d998b09d41dc9081df60571a1
|
||||
size 1015493
|
||||
oid sha256:d1318d7cc13f45afd322234e61cbc82f120b623682cebeb1d170a55cd2547377
|
||||
size 1097493
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:ff7295948137c918b8ca2c8aa262b216a7ed628bf49b86eddb885f4ae2b9da96
|
||||
size 3915750
|
||||
oid sha256:c9fa6b3f48318851d1259baab19ef7ddf97b5e8bef490c009ac23fd2c6f2e7f6
|
||||
size 4391792
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:90c2f3e9a3db82bae46cdfd9b748e4d80dd79fccf3bd871b3241e499a88269e4
|
||||
size 685026
|
||||
oid sha256:c65843a315f46557fd43e2e3e900391b128689c269f325886edd9d70d32bd543
|
||||
size 736344
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:f1d53e967c9b4648c270cff755fd3b1d48e0f230f74f0c51897274412d99c313
|
||||
size 2912087
|
||||
oid sha256:3cd7e4b8dfcc53224ffb7aa10d69f2943755fdc751aab8c12e8125d3531c3223
|
||||
size 3252234
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:39ef672933bb9a82dcd2ed3542d88cf465468969df5c843689afde1768c90c15
|
||||
size 754326
|
||||
oid sha256:240c76879689c29d506f9c60998171f05f84d58972ea6dc2c9faf4e89fed1759
|
||||
size 809085
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:96a6ac2720eaf17d88f80e7e41243e10db67e9830f997e3e62e742c6e0e9c7f1
|
||||
size 4068858
|
||||
oid sha256:8b844d0fb026503c076c52048d9cd7adf8d5273fbd4d1007a003926c52f10ae4
|
||||
size 4506173
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:0036b07a08ad3c89201ee5695fc5a6359904fb604cc0968904657f735f47c6e0
|
||||
size 674390
|
||||
oid sha256:084d2b14b64de4425c7c10ce4c8421b4120a3e5b8736b2d792af56970d9b2861
|
||||
size 726148
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:f1962684b5d478833474b6b31bf59a55f62fd520126263be8831871c4ba35167
|
||||
size 2791064
|
||||
oid sha256:43f1bcae72a50c305de0094db9087d11d5f703d2bf6d87fbcce6b1013f4a2de1
|
||||
size 3133090
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:49fa8fa465e2280596b481fea4854453fbdf0cc02dd2fa4f655ffca741104d80
|
||||
size 920075
|
||||
oid sha256:83fc93f053c234b34fde14a662605536753424639a5002a3cfd23b73225a2e7c
|
||||
size 979862
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:9ba80aa376658eed60a8a910dddb82d30d673be20aef40587d60e570799d48a5
|
||||
size 1445932
|
||||
oid sha256:7a4ec29bd43d14945e54567209768b08a9e79280507e80309419a1af1146a8ab
|
||||
size 1696581
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:1c282a4ac1c7080dfba74a8daacb5248c476d8bef8b9df847185a972c79b0de1
|
||||
size 1243609
|
||||
oid sha256:02f729f61c4896fda4ecc567603ea4fe9d3fc8ce3c01782322a38a980fb379cc
|
||||
size 1338586
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:0f78f84bef5c440b5b6566e39bd3936f28923a74ef70834a093c0ae7c60a4e0f
|
||||
size 4507331
|
||||
oid sha256:8f5b5dfc1093a92ca9d909ad2c2efd2392adca7375e37004608f89f5cdcb8950
|
||||
size 5041518
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:796062e32d5be780bfb12e134b703791f58a8a05854288b4629379e1fd470965
|
||||
size 826073
|
||||
oid sha256:e13dc2e90bc42033cde05a3705a3f785c1ac774b33c4dea8df1f2295cf9cd6c5
|
||||
size 883023
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:c82a9926e69b8a5c4876576325f024aee7c0c49b690bf8ab30056a7f40308b3f
|
||||
size 3314262
|
||||
oid sha256:c2cae5dead6bc6243c2e229cd8452100668c9b08ba77093b7ddf0798f3d81304
|
||||
size 3676425
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:115a943b5798e8bcf00bbc7cef687cfd3cca893ced538b14b06aab181f851fa8
|
||||
size 923249
|
||||
oid sha256:2a0523cc7a935824578e118f6068a9b9be9c9a258102b1cfc3742bebb1c28427
|
||||
size 983980
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:d15668c27a50b033ee3d69cdb707bd1ec3d8541911a0128a66e26154cebbb775
|
||||
size 4739242
|
||||
oid sha256:1a08c838b63bd3203003f14d82dbb69f2fd0e93e528b18cfb7daafa520989c3f
|
||||
size 5207764
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:d147496b0841f77f725a28ffda175d9da5be5d8c953bec8f89a80927631c4204
|
||||
size 814245
|
||||
oid sha256:7920582ad1df830222192a7bcbc1ee05fe16d4e73f688ea17545f6b165d2c949
|
||||
size 870919
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:17bbfe27163bf14bec1d266052dde86b69da479003c5785e190006b8382fbb90
|
||||
size 3193477
|
||||
oid sha256:b0e3ec4b5cfc411fd8448732d5003f2907d84fdefd41c13872a846d52b110045
|
||||
size 3557028
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:2238ce357ed2f597e5915f5d9cdb5ef4cd5eb01067b8503b1446a5e86c6bfe12
|
||||
size 562202
|
||||
oid sha256:5b76f01ff3c0cdba482da13b4ac4d160d8daada22e3191ef8db6b27c463dfe70
|
||||
size 614517
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:a33d968fbb779416b8a3b6ff0803bbcd39e82a0f70b4694516227698c5693ff7
|
||||
size 1038672
|
||||
oid sha256:69ca33654de4c6358e7c7475d7ca36d3ddf0df124e6b55fbe4b3ce10e4f30da8
|
||||
size 1255873
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:0e33eac452c933f0c5e64161f50d029747031092b387c4d610463346a0ea9627
|
||||
size 777559
|
||||
oid sha256:089ac02f0a23255124e5d586c78dc4d9f8eaa8a8258c63757119cb36c91a9674
|
||||
size 851830
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:a3693438e6521a69e147285b2863aae2ab3f734a2e527a639c8e9e942d497981
|
||||
size 2953034
|
||||
oid sha256:d865176c9fcb9c0c4b7d9ab5e93f7f99950df5d906864e786044a8f13eab59d1
|
||||
size 3367830
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:83bea77fd58eec4af3830f23218f5804d2a6a241643f2d5f08311ca37b950104
|
||||
size 523372
|
||||
oid sha256:b26038254743c5cfb8e014f10aef8eef4bd7ebdc5344fa04a82bb3dc594d2fee
|
||||
size 571279
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:c8b13b273adb13c6aa9824f4c32c032140db78b9f8967db3f424cfef2092df31
|
||||
size 2128714
|
||||
oid sha256:8ff0346427978463228c29474bdb8b5ff2da1dc43e952cb65b2006f7ff233c75
|
||||
size 2434835
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:38aaad5ed30aca927cebf447cf8814cf7a4a0211f9ab3c64d54db583b2cb85bb
|
||||
size 572837
|
||||
oid sha256:8dae3e6732908be4e5c381f84af91362fa50026cbe40bb85eecf2ab10101e5db
|
||||
size 623726
|
||||
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user