Merge branch 'main' into codewithdev-ui-changes
@@ -20,7 +20,7 @@ jobs:
|
||||
# Avoid github/docs and forks of it
|
||||
if: github.repository == 'github/docs-internal'
|
||||
|
||||
runs-on: ubuntu-latest
|
||||
runs-on: ubuntu-20.04-xl
|
||||
|
||||
steps:
|
||||
- uses: getong/elasticsearch-action@95b501ab0c83dee0aac7c39b7cea3723bef14954
|
||||
|
||||
17
.github/workflows/site-policy-sync.yml
vendored
@@ -1,7 +1,7 @@
|
||||
name: Site policy sync
|
||||
|
||||
# **What it does**: Updates our site-policy repo when changes happen to site policy docs.
|
||||
# **Why we have it**: We want keep site-policy repo up to date.
|
||||
# **What it does**: Creates a branch in our site-policy repo with changes to site policy docs.
|
||||
# **Why we have it**: We want to keep the site-policy repo up to date.
|
||||
# **Who does it impact**: site-policy-admins and Developer Policy teams.
|
||||
|
||||
# Controls when the action will run.
|
||||
@@ -53,24 +53,17 @@ jobs:
|
||||
echo "DESCRIPTION=$DESCRIPTION" >> $GITHUB_ENV
|
||||
git commit -m "$(echo $DESCRIPTION)"
|
||||
|
||||
- name: If there are changes to push, create a pull request in the public repo using the gh command line tool, then immediately approve the PR
|
||||
id: createAndMergePullRequest
|
||||
- name: If there are changes to push, create a branch in the public repo and push changes
|
||||
env:
|
||||
GITHUB_TOKEN: ${{ secrets.API_TOKEN_SITEPOLICY }}
|
||||
GITHUB_TOKEN: ${{ secrets.DOCUBOT_REPO_PAT }}
|
||||
run: |
|
||||
cd public-repo
|
||||
git config --local user.name 'site-policy-bot'
|
||||
git config --local user.email 'site-policy-bot@github.com'
|
||||
DIFF=$(git diff --name-status --summary HEAD^..HEAD)
|
||||
NUM_FILES_CHANGED=$(git diff --name-only HEAD^..HEAD | wc -l)
|
||||
[[ $NUM_FILES_CHANGED -ge 2 ]] && TITLE="Sync changes from GitHub Docs" || TITLE=$(echo $DIFF | sed -e 's/^A\s/Added /g;s/^D\s/Deleted /g;s/^C\s/Copied /g;s/^M\s/Modified /g;s/^R100\s/Renamed /g;')
|
||||
if [[ ! -z $TITLE ]]
|
||||
if [[ $NUM_FILES_CHANGED -ge 1]]
|
||||
then
|
||||
echo -e "This is an automated pull request to sync changes from GitHub Docs.\n\nDiff summary:\n\n${DIFF}" > msg
|
||||
git push --set-upstream origin automated-sync-$GITHUB_RUN_ID
|
||||
PR_URL=$(gh pr create --title "${TITLE}" --body-file msg --head automated-sync-$GITHUB_RUN_ID --base main --repo github/site-policy)
|
||||
gh pr diff ${PR_URL}
|
||||
gh pr review --approve || echo "Nothing to approve"
|
||||
else
|
||||
echo "No updates to push to the public repo"
|
||||
fi
|
||||
|
||||
3
.github/workflows/sync-search-pr.yml
vendored
@@ -110,8 +110,7 @@ jobs:
|
||||
run: |
|
||||
./script/search/index-elasticsearch.js \
|
||||
--language en \
|
||||
--version dotcom \
|
||||
--source-directory /tmp/records
|
||||
--version dotcom -- /tmp/records
|
||||
|
||||
- name: Check created indexes and aliases
|
||||
run: |
|
||||
|
||||
BIN
assets/images/automatically-watch-repos-and-teams.png
Normal file
|
After Width: | Height: | Size: 111 KiB |
|
Before Width: | Height: | Size: 99 KiB After Width: | Height: | Size: 129 KiB |
|
Before Width: | Height: | Size: 13 KiB After Width: | Height: | Size: 17 KiB |
|
Before Width: | Height: | Size: 38 KiB After Width: | Height: | Size: 26 KiB |
|
Before Width: | Height: | Size: 18 KiB After Width: | Height: | Size: 24 KiB |
|
Before Width: | Height: | Size: 41 KiB After Width: | Height: | Size: 24 KiB |
|
Before Width: | Height: | Size: 48 KiB After Width: | Height: | Size: 78 KiB |
|
Before Width: | Height: | Size: 135 KiB After Width: | Height: | Size: 189 KiB |
|
After Width: | Height: | Size: 212 KiB |
BIN
assets/images/help/notifications/add-new-route-emphasized.png
Normal file
|
After Width: | Height: | Size: 137 KiB |
BIN
assets/images/help/notifications/custom-router-emphasized.png
Normal file
|
After Width: | Height: | Size: 28 KiB |
|
After Width: | Height: | Size: 94 KiB |
|
After Width: | Height: | Size: 540 KiB |
|
After Width: | Height: | Size: 309 KiB |
|
After Width: | Height: | Size: 34 KiB |
|
After Width: | Height: | Size: 583 KiB |
BIN
assets/images/participating-watching-subscriptions.png
Normal file
|
After Width: | Height: | Size: 39 KiB |
@@ -33,7 +33,10 @@ We recommend auditing and unsubscribing from your subscriptions as a part of a h
|
||||
|
||||
When your inbox has too many notifications to manage, consider whether you have oversubscribed or how you can change your notification settings to reduce the subscriptions you have and the types of notifications you're receiving. For example, you may consider disabling the settings to automatically watch all repositories and all team discussions whenever you've joined a team or repository.
|
||||
|
||||

|
||||
{% ifversion update-notification-settings-22 %}
|
||||

|
||||
{% else %}
|
||||
{% endif %}
|
||||
|
||||
For more information, see "[Configuring notifications](/github/managing-subscriptions-and-notifications-on-github/configuring-notifications#automatic-watching)."
|
||||
|
||||
|
||||
@@ -79,15 +79,27 @@ You can customize notifications for a repository. For example, you can choose to
|
||||
### Participating in conversations
|
||||
Anytime you comment in a conversation or when someone @mentions your username, you are _participating_ in a conversation. By default, you are automatically subscribed to a conversation when you participate in it. You can unsubscribe from a conversation you've participated in manually by clicking **Unsubscribe** on the issue or pull request or through the **Unsubscribe** option in the notifications inbox.
|
||||
|
||||
For conversations you're watching or participating in, you can choose whether you want to receive notifications by email or through the notifications inbox on {% data variables.product.product_location %}{% ifversion fpt or ghes or ghec %} and {% data variables.product.prodname_mobile %}{% endif %}.
|
||||
{% ifversion update-notification-settings-22 %}For conversations you're watching or participating in, you can choose whether you want to receive notifications on {% data variables.product.company_short %} or by email in your notification settings. For more information, see "[Choosing your notification settings](/account-and-profile/managing-subscriptions-and-notifications-on-github/setting-up-notifications/configuring-notifications#choosing-your-notification-settings)."
|
||||
|
||||

|
||||
|
||||
{% else %}
|
||||
|
||||
For conversations you're watching or participating in, you can choose whether you want to receive notifications by email or through the notifications inbox on {% data variables.product.product_location %}{% ifversion ghes %} and {% data variables.product.prodname_mobile %}{% endif %}. For more information, see "[Choosing your notification settings](/account-and-profile/managing-subscriptions-and-notifications-on-github/setting-up-notifications/configuring-notifications#choosing-your-notification-settings)."
|
||||
|
||||
{% endif %}
|
||||
|
||||
|
||||

|
||||
|
||||
For example:
|
||||
- If you don't want notifications to be sent to your email, unselect **email** for participating and watching notifications.
|
||||
- If you want to receive notifications by email when you've participated in a conversation, then you can select **email** under "Participating".
|
||||
|
||||
If you do not enable watching or participating notifications for web{% ifversion fpt or ghes or ghec %} and mobile{% endif %}, then your notifications inbox will not have any updates.
|
||||
{% ifversion update-notification-settings-22 %}If you do not enable "Notify me: On GitHub" for watching or participating notifications, then your notifications inbox will not have any updates.
|
||||
|
||||
{% else %}
|
||||
|
||||
If you do not enable watching or participating notifications for web{% ifversion ghes %} and mobile{% endif %}, then your notifications inbox will not have any updates.{% endif %}
|
||||
|
||||
## Customizing your email notifications
|
||||
|
||||
@@ -146,11 +158,16 @@ Email notifications from {% data variables.product.product_location %} contain t
|
||||
|
||||
## Automatic watching
|
||||
|
||||
By default, anytime you gain access to a new repository, you will automatically begin watching that repository. Anytime you join a new team, you will automatically be subscribed to updates and receive notifications when that team is @mentioned. If you don't want to automatically be subscribed, you can unselect the automatic watching options.
|
||||
By default, anytime you gain access to a new repository, you will automatically begin watching that repository. Anytime you join a new team, you will automatically be subscribed to updates and receive notifications when that team is @mentioned. If you don't want to automatically be subscribed, you can unselect the automatic watching options in your notification settings.
|
||||
|
||||

|
||||
{% ifversion update-notification-settings-22 %}
|
||||

|
||||
{% else %}
|
||||
{% endif %}
|
||||
|
||||
If "Automatically watch repositories" is disabled, then you will not automatically watch your own repositories. You must navigate to your repository page and choose the watch option.
|
||||
If "Automatically watch repositories" is disabled, then you will not automatically watch your own repositories. You must navigate to your repository page and choose the watch option.
|
||||
|
||||
For more information, see "[Choosing your notification settings](/account-and-profile/managing-subscriptions-and-notifications-on-github/setting-up-notifications/configuring-notifications#choosing-your-notification-settings)."
|
||||
|
||||
## Configuring your watch settings for an individual repository
|
||||
|
||||
@@ -172,9 +189,17 @@ If you belong to an organization, you can choose the email account you want noti
|
||||
|
||||
{% data reusables.notifications.access_notifications %}
|
||||
{% data reusables.notifications-v2.manage-notifications %}
|
||||
|
||||
3. Under "Default notification email", select the email address you'd like notifications sent to.
|
||||

|
||||
4. Click **Save**.
|
||||
{% ifversion update-notification-settings-22 %}
|
||||
|
||||

|
||||
|
||||
{% else %}
|
||||
|
||||
{% endif %}
|
||||
{% ifversion ghes or ghae %}
|
||||
4. Click **Save**.{% endif %}
|
||||
|
||||
### Customizing email routes per organization
|
||||
|
||||
@@ -182,12 +207,35 @@ If you are a member of more than one organization, you can configure each one to
|
||||
|
||||
{% data reusables.notifications.access_notifications %}
|
||||
{% data reusables.notifications-v2.manage-notifications %}
|
||||
3. Under "Custom routing," find your organization's name in the list.
|
||||

|
||||
{% ifversion update-notification-settings-22 %}
|
||||
3. Under "Default notifications email", click **Custom routing**.
|
||||
|
||||

|
||||
|
||||
4. Click **Add new route**.
|
||||
|
||||

|
||||
|
||||
5. Click **Pick organization**, then select the organization you want to customize from the dropdown.
|
||||
|
||||

|
||||
|
||||
6. Select one of your verified email addresses, then click **Save**.
|
||||
|
||||

|
||||
|
||||
{% else %}
|
||||
3. Under "Custom routing," find your organization's name in the list.
|
||||
|
||||

|
||||
|
||||
4. Click **Edit** next to the email address you want to change.
|
||||

|
||||
|
||||

|
||||
|
||||
5. Select one of your verified email addresses, then click **Save**.
|
||||

|
||||
|
||||
{% endif %}
|
||||
|
||||
## {% data variables.product.prodname_dependabot_alerts %} notification options
|
||||
|
||||
@@ -197,14 +245,17 @@ If you are a member of more than one organization, you can configure each one to
|
||||
|
||||
For more information about the notification delivery methods available to you, and advice on optimizing your notifications for {% data variables.product.prodname_dependabot_alerts %}, see "[Configuring notifications for {% data variables.product.prodname_dependabot_alerts %}](/code-security/dependabot/dependabot-alerts/configuring-notifications-for-dependabot-alerts)."
|
||||
|
||||
{% ifversion fpt or ghes or ghec %}
|
||||
{% ifversion update-notification-settings-22 or ghes %}
|
||||
## {% data variables.product.prodname_actions %} notification options
|
||||
|
||||
Choose how you want to receive workflow run updates for repositories that you are watching that are set up with {% data variables.product.prodname_actions %}. You can also choose to only receive notifications for failed workflow runs.
|
||||
Choose how you want to receive workflow run updates for repositories that you are watching that are set up with {% data variables.product.prodname_actions %}. You can also choose to only receive notifications for failed workflow runs.{% endif %}
|
||||
|
||||

|
||||
{% ifversion update-notification-settings-22 %}
|
||||
{% endif %}
|
||||
|
||||
{% ifversion ghes %}
|
||||
{% endif %}
|
||||
|
||||
{% endif %}
|
||||
|
||||
{% ifversion fpt or ghec or ghes > 3.3 or ghae > 3.3 %}
|
||||
## Organization alerts notification options
|
||||
|
||||
@@ -201,7 +201,7 @@ The `github` context contains information about the workflow run and the event t
|
||||
| `github.ref` | `string` | {% data reusables.actions.ref-description %} |
|
||||
{%- ifversion fpt or ghec or ghes > 3.3 or ghae > 3.3 %}
|
||||
| `github.ref_name` | `string` | {% data reusables.actions.ref_name-description %} |
|
||||
| `github.ref_protected` | `string` | {% data reusables.actions.ref_protected-description %} |
|
||||
| `github.ref_protected` | `boolean` | {% data reusables.actions.ref_protected-description %} |
|
||||
| `github.ref_type` | `string` | {% data reusables.actions.ref_type-description %} |
|
||||
{%- endif %}
|
||||
| `github.path` | `string` | Path on the runner to the file that sets system `PATH` variables from workflow commands. This file is unique to the current step and is a different file for each step in a job. For more information, see "[Workflow commands for {% data variables.product.prodname_actions %}](/actions/learn-github-actions/workflow-commands-for-github-actions#adding-a-system-path)." |
|
||||
|
||||
@@ -87,15 +87,9 @@ For more information, see "[Creating actions](/actions/creating-actions)."
|
||||
|
||||
{% data reusables.actions.workflow-basic-example-and-explanation %}
|
||||
|
||||
## More complex examples
|
||||
{% data reusables.actions.link-to-example-library %}
|
||||
|
||||
## Next steps
|
||||
|
||||
- To continue learning about {% data variables.product.prodname_actions %}, see "[Finding and customizing actions](/actions/learn-github-actions/finding-and-customizing-actions)."
|
||||
{% ifversion fpt or ghec or ghes %}
|
||||
- To understand how billing works for {% data variables.product.prodname_actions %}, see "[About billing for {% data variables.product.prodname_actions %}](/actions/reference/usage-limits-billing-and-administration#about-billing-for-github-actions)."
|
||||
{% endif %}
|
||||
{% data reusables.actions.onboarding-next-steps %}
|
||||
|
||||
## Contacting support
|
||||
|
||||
|
||||
@@ -77,21 +77,13 @@ Committing the workflow file to a branch in your repository triggers the `push`
|
||||
|
||||
For example, you can see the list of files in your repository:
|
||||

|
||||
|
||||
|
||||
The example workflow you just added is triggered each time code is pushed to the branch, and shows you how {% data variables.product.prodname_actions %} can work with the contents of your repository. For an in-depth tutorial, see "[Understanding {% data variables.product.prodname_actions %}](/actions/learn-github-actions/understanding-github-actions)."
|
||||
|
||||
## More starter workflows
|
||||
|
||||
{% data reusables.actions.workflow-template-overview %}
|
||||
|
||||
## More complex examples
|
||||
{% data reusables.actions.link-to-example-library %}
|
||||
|
||||
## Next steps
|
||||
|
||||
The example workflow you just added runs each time code is pushed to the branch, and shows you how {% data variables.product.prodname_actions %} can work with the contents of your repository. But this is only the beginning of what you can do with {% data variables.product.prodname_actions %}:
|
||||
|
||||
- Your repository can contain multiple workflows that trigger different jobs based on different events.
|
||||
- You can use a workflow to install software testing apps and have them automatically test your code on {% data variables.product.prodname_dotcom %}'s runners.
|
||||
|
||||
{% data variables.product.prodname_actions %} can help you automate nearly every aspect of your application development processes. Ready to get started? Here are some helpful resources for taking your next steps with {% data variables.product.prodname_actions %}:
|
||||
|
||||
- "[Learn {% data variables.product.prodname_actions %}](/actions/learn-github-actions)" for an in-depth tutorial.
|
||||
{% data reusables.actions.onboarding-next-steps %}
|
||||
|
||||
@@ -87,7 +87,7 @@ You can add a {% data variables.actions.hosted_runner %} to an organization, whe
|
||||
|
||||
## Running jobs on your runner
|
||||
|
||||
Once your runner type has been been defined, you can update your workflows to send jobs to the runner instances for processing. In this example, a runner group is populated with Ubuntu 16-core runners, which have been assigned the label `ubuntu-20.04-16core`. If you have a runner matching this label, the `check-bats-version` job then uses the `runs-on` key to target that runner whenever the job is run:
|
||||
Once your runner type has been defined, you can update your workflow YAML files to send jobs to your newly created runner instances for processing. In this example, a runner group is populated with Ubuntu 16-core runners, which have been assigned the label `ubuntu-20.04-16core`. If you have a runner matching this label, the `check-bats-version` job then uses the `runs-on` key to target that runner whenever the job is run:
|
||||
|
||||
```yaml
|
||||
name: learn-github-actions
|
||||
@@ -104,6 +104,8 @@ jobs:
|
||||
- run: bats -v
|
||||
```
|
||||
|
||||
To find out which runners are enabled for your repository and organization, you must contact your organization admin. Your organization admin can create new runners and runner groups, as well as configure permissions to specify which repositories can access a runner group.
|
||||
|
||||
## Managing access to your runners
|
||||
|
||||
{% note %}
|
||||
|
||||
@@ -46,7 +46,10 @@ You can configure notification settings for yourself or your organization from t
|
||||
{% data reusables.notifications.vulnerable-dependency-notification-delivery-method-customization2 %}
|
||||
{% data reusables.notifications.vulnerable-dependency-notification-options %}
|
||||
|
||||

|
||||
{% ifversion update-notification-settings-22 %}
|
||||
{% else %}
|
||||
{% endif %}
|
||||
|
||||
|
||||
{% note %}
|
||||
|
||||
|
||||
@@ -73,6 +73,8 @@ Organization owners can specify who can create and use codespaces at the organiz
|
||||
|
||||

|
||||
|
||||
If codespaces for this repository are billable, a message is displayed below the **Create codespace on BRANCH** button telling you who will pay for the codespace.
|
||||
|
||||
1. Create your codespace, either using the default options, or after configuring advanced options:
|
||||
|
||||
* **Use the default options**
|
||||
@@ -131,7 +133,7 @@ To create a new codespace, use the `gh codespace create` subcommand.
|
||||
gh codespace create
|
||||
```
|
||||
|
||||
You are prompted to choose a repository, a branch, a dev container configuration file (if more than one is available), and a machine type (if more than one is available).
|
||||
You are prompted to choose a repository. If codespaces for this repository are billable, a message is displayed telling you who will pay for the codespace. You are then prompted to choose a branch, a dev container configuration file (if more than one is available), and a machine type (if more than one is available).
|
||||
|
||||
Alternatively, you can use flags to specify some or all of the options:
|
||||
|
||||
|
||||
@@ -41,3 +41,5 @@ You can also personalize aspects of your codespace environment by using a public
|
||||
For information on pricing, storage, and usage for {% data variables.product.prodname_github_codespaces %}, see "[About billing for {% data variables.product.prodname_github_codespaces %}](/billing/managing-billing-for-github-codespaces/about-billing-for-github-codespaces)."
|
||||
|
||||
{% data reusables.codespaces.codespaces-spending-limit-requirement %} For information on how organizations owners and billing managers can manage the spending limit for {% data variables.product.prodname_github_codespaces %} for an organization, see "[Managing spending limits for {% data variables.product.prodname_github_codespaces %}](/billing/managing-billing-for-github-codespaces/managing-spending-limits-for-github-codespaces)."
|
||||
|
||||
You can see who will pay for a codespace before you create it. For more information, see "[Creating a codespace](/codespaces/developing-in-codespaces/creating-a-codespace#creating-a-codespace)."
|
||||
3
data/features/update-notification-settings-22.yml
Normal file
@@ -0,0 +1,3 @@
|
||||
versions:
|
||||
fpt: '*'
|
||||
ghec: '*'
|
||||
@@ -1 +1 @@
|
||||
actions/setup-dotnet@{% ifversion actions-node16-action %}v2{% else %}v1{% endif %}
|
||||
actions/setup-dotnet@{% ifversion actions-node16-action %}v3{% else %}v1{% endif %}
|
||||
|
||||
@@ -1 +0,0 @@
|
||||
For examples that demonstrate more complex features of {% data variables.product.prodname_actions %}, see "[Examples](/actions/examples)." You can see detailed examples that explain how to test your code on a runner, access the {% data variables.product.prodname_dotcom %} CLI, and use advanced features such as concurrency and test matrices.
|
||||
7
data/reusables/actions/onboarding-next-steps.md
Normal file
@@ -0,0 +1,7 @@
|
||||
{% data variables.product.prodname_actions %} can help you automate nearly every aspect of your application development processes. Ready to get started? Here are some helpful resources for taking your next steps with {% data variables.product.prodname_actions %}:
|
||||
|
||||
- For continuous integration (CI) workflows to build and test your code, see "[Automating builds and tests](/actions/automating-builds-and-tests)."
|
||||
- For building and publishing packages, see "[Publishing packages](/actions/publishing-packages)."
|
||||
- For deploying projects, see "[Deployment](/actions/deployment)."
|
||||
- For automating tasks and processes on {% data variables.product.prodname_dotcom %}, see "[Managing issues and pull requests](/actions/managing-issues-and-pull-requests)."
|
||||
- For examples that demonstrate more complex features of {% data variables.product.prodname_actions %}, including many of the above use cases, see "[Examples](/actions/examples)." You can see detailed examples that explain how to test your code on a runner, access the {% data variables.product.prodname_dotcom %} CLI, and use advanced features such as concurrency and test matrices.
|
||||
@@ -15,6 +15,8 @@ After you connect your account on {% data variables.product.product_location %}
|
||||
|
||||

|
||||
|
||||
If codespaces are billable for the repository you choose, a message will be displayed in subsequent prompts telling you who will pay for the codespace.
|
||||
|
||||
4. Click the branch you want to develop on.
|
||||
|
||||

|
||||
|
||||
@@ -16,4 +16,7 @@
|
||||
|
||||
{% endnote %}
|
||||
|
||||
You can customize the way you are notified about {% data variables.product.prodname_dependabot_alerts %}. For example, you can receive a weekly digest email summarizing alerts for up to 10 of your repositories using the **Email a digest summary of vulnerabilities** and **Weekly security email digest** options.
|
||||
{% ifversion update-notification-settings-22 %}
|
||||
You can customize the way you are notified about {% data variables.product.prodname_dependabot_alerts %}. For example, you can receive a daily or weekly digest email summarizing alerts for up to 10 of your repositories using the **Email weekly digest** option.
|
||||
{% else %}
|
||||
You can customize the way you are notified about {% data variables.product.prodname_dependabot_alerts %}. For example, you can receive a weekly digest email summarizing alerts for up to 10 of your repositories using the **Email a digest summary of vulnerabilities** and **Weekly security email digest** options.{% endif %}
|
||||
|
||||
30
lib/hydro.js
@@ -11,12 +11,23 @@ const TIME_OUT_TEXT = 'ms has passed since batch creation'
|
||||
const MOCK_HYDRO_POST =
|
||||
process.env.NODE_ENV === 'test' || JSON.parse(process.env.MOCK_HYDRO_POST || 'false')
|
||||
|
||||
// If the request to Hydro took an age, it could be either our
|
||||
// network or that Hydro is just slow to respond. (Event possibly
|
||||
// too slow to respond with a 422 code)
|
||||
// If this happens, we'd rather kill it now rather than let it
|
||||
// linger within the thread.
|
||||
const POST_TIMEOUT_MS = 3000
|
||||
// The point of all of this is to come in under 10 seconds. Because beyond
|
||||
// 10 seconds the `middleware/timeout.js` will cancel the whole request.
|
||||
// My capping the retry delay to max 2s, if Hydro is infinitely slow,
|
||||
// what will happen here is:
|
||||
//
|
||||
// 1s + 0s +
|
||||
// 1s + 1s +
|
||||
// 1s + 2s +
|
||||
// 1s + 2s = ~9s
|
||||
//
|
||||
// Which means it will try 4 times, (first + 3 retries) with a timeout
|
||||
// of 1000ms each time.
|
||||
// The hope is that a patient retry is more useful than fewer individually
|
||||
// longer timeouts.
|
||||
const calculateDelay = ({ computedValue }) => Math.min(computedValue, 2000)
|
||||
const retryConfiguration = { limit: 3, calculateDelay }
|
||||
const timeoutConfiguration = { response: 1000 }
|
||||
|
||||
let _agent
|
||||
function getHttpsAgent() {
|
||||
@@ -105,15 +116,14 @@ export default class Hydro {
|
||||
},
|
||||
// Because we prefer to handle the status code manually below
|
||||
throwHttpErrors: false,
|
||||
// The default is no timeout.
|
||||
timeout: {
|
||||
response: POST_TIMEOUT_MS,
|
||||
},
|
||||
agent: {
|
||||
// Deliberately not setting up a `http` or `http2` agent
|
||||
// because it won't be used for this particular `got` request.
|
||||
https: agent,
|
||||
},
|
||||
// See above, where these are configured for the explanation
|
||||
retry: retryConfiguration,
|
||||
timeout: timeoutConfiguration,
|
||||
})
|
||||
}
|
||||
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:593c143c02cc71f450c9f860233d59815faeda38559e4b06c370eca72ac1f443
|
||||
size 787404
|
||||
oid sha256:975556001be97233865a63f0d4adc96a1645e03f02f9a24328c00a7bd8abe934
|
||||
size 786802
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:15a7f9236aecc879077bfe184a90480fa620a1dbb7115273ab96d5ca70ffdf44
|
||||
size 1531925
|
||||
oid sha256:962d44048f87413e2b85ebc3bc342dc8d9df0ea8d96015227ffaf21b5bec2e02
|
||||
size 1533032
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:08a5465defaae2dbe4cea7001d0154d75378ae9a68b990f442eb5a420408d414
|
||||
size 1101850
|
||||
oid sha256:1e57cb4a411c9d03c5aaf8122f7f65e5832bd8b0da53e2657c07339217dc260a
|
||||
size 1102078
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:94616815df9a4a601ce5664d1ffef01c8e5053f24c8a97ed498f578b24e05892
|
||||
size 4468559
|
||||
oid sha256:b28ebbdbe82a04b46807c69a63933c7588a87e07f80a6262d544065b3c29b323
|
||||
size 4468106
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:e0c4f3e68683d6b1c1fab41b956a080a1bf1b8d70baeb77d4516cb2988f4b870
|
||||
size 740414
|
||||
oid sha256:00d9644118a6b5add57d38b086a450e5155a571af11d7555fc3ad2fc5b201b6f
|
||||
size 740932
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:52447856b68e38145de502484a065f77a51fc565286f5c1a6f778b1c8b59d9be
|
||||
size 3087285
|
||||
oid sha256:29b9141739c240e2653b9caeb93841cc5712549d06b3b44b08e16c5bb258a709
|
||||
size 3089234
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:7932fa1a6b417bc72fe410abc9f0465982ad2bbc7a8829dd54a13aebab37c21d
|
||||
size 829206
|
||||
oid sha256:b1bb3feff87da2c29c89eaf2112a38c482d8aeb5268c2f38d698a94697112dce
|
||||
size 829198
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:f7d8e35e8c1bd637db36fb5b1d33d4c34d771825cbeea63a804709ab8f97e74c
|
||||
size 4379545
|
||||
oid sha256:b36825599eb6bee153e1a8c656e887b7edf79985118c829b8a763c33781461c4
|
||||
size 4378805
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:1b8fc47f7971ed72e51e66189443b9fc0b4fbb26d88398d437579a987b08dbad
|
||||
size 727153
|
||||
oid sha256:5efc4a703bcd3e71901324e94d85ea6ce95108909eadd72ba2100ff034f781df
|
||||
size 727315
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:140877ae6c206b24bfbde48d89896b94731c3a92a5fa86fca3baef4d5bafc8e2
|
||||
size 3070276
|
||||
oid sha256:ebf7d37ec017919c80af64598e3491c9a8803a1df96b3d646a94c7325ee6e604
|
||||
size 3073005
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:d93e755286af8d23e481866414fabca3277c8288c3b83c9bd3af9ce9df5bcf52
|
||||
size 812146
|
||||
oid sha256:a4758a07213f26fddb530d2c06f44b331b331217b6487c394479d96032fd133e
|
||||
size 811527
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:fc6779c50d250c25fd658235ca1be2b700c12bce8bc5b71991f126dc948be556
|
||||
size 1585736
|
||||
oid sha256:fca4d22531f809cbbfc46d3473245fb0ee91e6f9d3a5555e566287f3d13d157c
|
||||
size 1587151
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:792eff61d52f71365ff0eb0d6bd99ea3dc2fb28247c756fa00868af65647c14d
|
||||
size 1137387
|
||||
oid sha256:15e91419dbbd1ba89a2aef2cf4d86efe5d72cdd5088e3af3428502f23b716e95
|
||||
size 1137314
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:e40e9dcc8bbf61749cccb8bbd46898739ec5f9d1d1fe9c84e2252a401e92772e
|
||||
size 4571984
|
||||
oid sha256:29516360456cfb13f7bb51c8cfd1eb432b297766bb6468b7ede42538fd2a63a0
|
||||
size 4572508
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:3f7d39a589af26654a9fc975cc85d285083d6efa86cba4648254e2c5d2ff8c56
|
||||
size 762348
|
||||
oid sha256:45f3ebf0bde8c15dff516cbc466961bb7c1439c06a9eece34c8a572284ae94c2
|
||||
size 762737
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:e434f5f10cdc291c9ff290efacaba2be23c971f0f9bab2cb2c22618a28418736
|
||||
size 3181560
|
||||
oid sha256:b0fc4c57857a0c9d8ca01d472f27136698a0c4ec15aef6ff42ff78056f8d3504
|
||||
size 3183139
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:e2ceee737419c79b6ab4dadd836cbd9c14f2c40f5fc267c82fbeda8114f501e8
|
||||
size 853475
|
||||
oid sha256:783c79915657351a4410542738a59dff4d518ef462a55e65ff80ddfa43f96fbe
|
||||
size 853258
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:0bac969d8cff678232dcabff27eb48796f2a9520d1079c93ec25e09e6abd55a1
|
||||
size 4509778
|
||||
oid sha256:0905ab48e53545663d3f524efa6388e07ba3fd5a129fe2658befdef4b5a0bb05
|
||||
size 4509900
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:dd51054f8390e5aa3c6d0dab70e950202e06fe0bd82c6fe387a320415a0d820d
|
||||
size 749030
|
||||
oid sha256:626b4d5de84f0ace5ec914440137b28263b6957d1b5fad716b17890186942cd3
|
||||
size 749340
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:570f78c1f1dadf41aa6204a5223c3f1321671bb1f753ebe45f050139fd3484f4
|
||||
size 3163978
|
||||
oid sha256:82eb51532306a636b66a8686f4901eee0bd5896f9dbfd1a3740c6f8e52bae500
|
||||
size 3167073
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:65f5e4f2ce1354208033d95d6da32c3013fc7d5b7a21211aedcf84b735bb17b6
|
||||
size 814166
|
||||
oid sha256:62dfb3820fa483f7d911ef36e844caeb5bf581e4173f6b7d809d98b63855eef0
|
||||
size 813665
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:82517429697a57e58d86ff656f97efb2b72bad77d923bf5bc4b3bd78c4bf9cfb
|
||||
size 1598517
|
||||
oid sha256:15f27ab06def1f8a02fae2dedee07005784f8e674cc1ad921ed5c087d464918a
|
||||
size 1599721
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:82c5019d0f941327dfdf7931c6fb777b93af57309d909396c7f19c13aada7959
|
||||
size 1149092
|
||||
oid sha256:9fdd00da18ec8c8792b31dd9ca76a4bb7e58cb1f5f502dca0b114630b623bdfd
|
||||
size 1149291
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:931809971ee52434ba2b8199eebd6939fc4a76373a0cbfa94e2c7382ba458f30
|
||||
size 4632956
|
||||
oid sha256:ea598c537058a0d72184a1197511b918cf130fcfae3c528d92f6d3e10f988dad
|
||||
size 4633090
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:b52385e767b1405e3108bfc1cf338b654bf6006c1d9ecb808e0d1cb0b51d957d
|
||||
size 766779
|
||||
oid sha256:2ad6ef3969a7be4570f78578e3415e62e445698008b1764537e5d368874fe132
|
||||
size 767007
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:8739346d5b85328f881af695f5f671afe2ca919f629000f27c0aa32ce564a247
|
||||
size 3207822
|
||||
oid sha256:0c65596433287643150525715d5c13f9028821a9f379cce5d843b870a9bb4a7b
|
||||
size 3209483
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:7beb4691d5460aafcf11a6bd589f6b70928da0589a737c4c558febe8d62b1c82
|
||||
size 855870
|
||||
oid sha256:f3256260e3d6bb5e98873b5c4c84f103c7ed12c2244cfcb322fce8d20d9007ee
|
||||
size 855634
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:6030c40194a13040c02f252248cb0e8c25d8762b9adb8473d00ce02eba13a9c8
|
||||
size 4537759
|
||||
oid sha256:c923c202d948f830ad1e0c6dd6fe45b0ce7df79d52812bcce38332aa485d6a83
|
||||
size 4536954
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:e5b0123d967b2c4d0a30df18568a8d5c337fdb45e1ebb925a0daed1b8e5ac22d
|
||||
size 753421
|
||||
oid sha256:66d23a4ed4272c5fc57d48f8174f6d3cc82cdedfad1723982d4774188312560b
|
||||
size 753710
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:9ca3811738475c30b03d89bc3c4bea01bff7e4350e93fba57b61d4a377221553
|
||||
size 3191483
|
||||
oid sha256:0edbf0cc777277754109919c7f300e3b4a62925e3f8c72559268499f165e5e0d
|
||||
size 3193263
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:6e87c91faa872cb3aa979350023b3751ad70cfd7a34b4cb1c9000752d2aac6ef
|
||||
size 844974
|
||||
oid sha256:72e30f2844f5fc9bde561a1e3f14fcdc8752b2c74c9314bc54938f06f2c62d5f
|
||||
size 844303
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:be8bf9bd8b068d311e805460fbc4bf56ee469cceeb2aeefc18a66e9b1aa15951
|
||||
size 1660444
|
||||
oid sha256:6a15636ac263c712d32a3925e07e780af346c5514289742be9c169bb9195ac82
|
||||
size 1661212
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:e7dc8dcc1a5801fb1ff23dbdb23712591ccfc24a267b30a79ec433481980a3e1
|
||||
size 1190062
|
||||
oid sha256:ca34afc0aa3ff1494d53fbfe216fd1cc514da38c8705780dc13fd85bceb16828
|
||||
size 1190211
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:88ca3c69872b15e82d4063448bc2f4feb3c1f6304c7359b3b0a3e2ba64cd08e4
|
||||
size 4800467
|
||||
oid sha256:c29034793482077863fd531ba8d77f8ff0527eaf258568a795dae99ca62aa1ac
|
||||
size 4800073
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:762657650b1994a2d52fd2a1ff18a8d1a5e177e852471e1582f3c2932ad04a88
|
||||
size 791767
|
||||
oid sha256:d8c9ed8de7beaec636f000dfa79c92b517a293379a6aad872aa8a7d3276444e5
|
||||
size 792055
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:986e73ce6e7933c4146bef3385ba454430119790414a126890e30c89fbc8ca83
|
||||
size 3322709
|
||||
oid sha256:d018c753eac2f44d80b1399676ba3dca8a3f6cf9dbc5c53b7806dfd739f39d1e
|
||||
size 3324711
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:fabfa12c42ca888dc2c650f059e230f430fefe3b134097b1b8bd9b2c8b4457a1
|
||||
size 886127
|
||||
oid sha256:d3c6f1c012a33f92de2b3cdfd7ba7cbef788bd91f92aec1c43350761621f8cf1
|
||||
size 886033
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:c6a3e0a9d80499ae1a0eea13898009672fc4c0025069ffeaa43a034ac8090c35
|
||||
size 4708897
|
||||
oid sha256:278fca85797d575d8d826fbc9d2b5883819db5a14fc21e6b18b79e572d12f191
|
||||
size 4708240
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:8fc08c660ff0d795a0d6c7c7939d813e365d3aeecdbbb2210c9ccf8ee3cfc61d
|
||||
size 778226
|
||||
oid sha256:7e66142a3c4317d0654a85c74799a8663a21018b9703f86df8589a34d7de0941
|
||||
size 778594
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:cfcd5ce9879071a5b22ff543d0353674acfd10a9616044f5ed8252323c04abf2
|
||||
size 3307421
|
||||
oid sha256:d20bd758a2addb8c619c3b297e5a593c9fe8ca9c57e91f6d8bbfd1ffed84fe2a
|
||||
size 3307995
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:b164184cdaf5fb7900cc3c2b27598e650b4fbef6436cc1838124b34fbb845d9c
|
||||
size 867294
|
||||
oid sha256:ad0ddc8bc6af92c764820160520ceb5991ec0d8605bb9e2654ed51dd9d87e904
|
||||
size 866776
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:fefd3c66188b72297a71e7a951591eaca408d73e04bca0f0f9920a278aae2570
|
||||
size 1700561
|
||||
oid sha256:35022b7a2f91f5dd1ce498ae0708759973af3f7d8ef12c87530f68cd97512531
|
||||
size 1702993
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:3c3cb137213381016525ef994f59c67f7dfb35439d22cb7ae423f3f0ce160160
|
||||
size 1223075
|
||||
oid sha256:416c1b719864076c3a728e36b81ceddcfe34c3cb89561e08f5467759b112f84c
|
||||
size 1223219
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:5e1a30c236232b15607b4b07ec127218ac199e3fe357b5c04a412ccfcc9780ee
|
||||
size 4933462
|
||||
oid sha256:02cbb26b94afaf2eb1f3af1cd0ad0c032f68599744c3701d93e1a62be78b2c8b
|
||||
size 4933074
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:bd59064fcbd1e1f7c3c66e4b6939bd59f1c9bb06501873ed14fb28416a5cff25
|
||||
size 814199
|
||||
oid sha256:f05a37a96c3a41ce0df09334a7a2536cf2d58a373e6af44529031836c86d2e92
|
||||
size 814608
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:25c16b0fb05d12eb2144e73e90b9619a5668300d3d180a419ac0df5814d4d086
|
||||
size 3424304
|
||||
oid sha256:1b9a4e9bbcdcbf4e72b137f063706eca1491bc1bba91925098693e7e77334fbc
|
||||
size 3426567
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:dd6f5f7cf8b20783712acf5a3923f5c08189ad0359fc336babf2a8f0a987b29d
|
||||
size 911587
|
||||
oid sha256:ab6e8a5b1ce2ffc06dee18e91f33673381f5e78b32fcd9fca8e661699222acc7
|
||||
size 911435
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:6c57cb304e454cab5575c4a9d5678161bde8e5824a1744b576a1fcedfc654325
|
||||
size 4848177
|
||||
oid sha256:ae9d41b3cebc84961de59070cc8d58f7b56f51bdb39565896e7b8daec1514658
|
||||
size 4848086
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:41f90bcd51d37ed8da0645a4562807c1e58de6e7eccce7fb6f80ceb6b6b849f8
|
||||
size 800208
|
||||
oid sha256:2cae46817ece915b557e9b723283aeb9c22cbf3f3aefa251e2aa8f557965ddfd
|
||||
size 800650
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:175d111b726b3834ef7fe3a26978adbc438c8d65feb0f99e19eefb514d55611a
|
||||
size 3407358
|
||||
oid sha256:92f2ea69e2f8250097bd9c5e97bb82e595f8397e796f6310aef6e5972298400e
|
||||
size 3408740
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:4a5b7b3a10425c1aa41e73a1c91e3ea471d75b1579a884269565fb83d6244a13
|
||||
size 1014454
|
||||
oid sha256:fffc495b2e984941b6b1d1bb462a263de82657202da9ae4bb8d7707687b84601
|
||||
size 1014887
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:98a366a476053cf9a33a2c6d5148417122fda481e07b7c5d77fac750d35857d7
|
||||
size 1802451
|
||||
oid sha256:7a53ca5540ff164e028e536fda0f947ef21a6c1cada912cb803cface9af54522
|
||||
size 1804068
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:73ae722b6e81ed1fb81ed973305ac8090ee69773dd0ac2633ecc70637507f9f6
|
||||
size 1473493
|
||||
oid sha256:18c27dd78293a326d7bb444b518a0ac2a73695acc169a63132c33f457e1ece3a
|
||||
size 1473828
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:9d66c8b3a4435ef19d828df061603b4beb640d377343a0427eb945e5ffc4a28f
|
||||
size 5684200
|
||||
oid sha256:cb0de891d7c1659f2325415c5383b89c80c785483e80d190116a796049f71676
|
||||
size 5684428
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:e876dd0799ed169e493b5f75109a790a88641a883f50270e01c8a0eb6bedb8f0
|
||||
size 944607
|
||||
oid sha256:dcba75500492362b0acafa1d2c1d63574140ab4479e519d39839157bcad29d74
|
||||
size 944750
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:dd99e7718a6df8a2e8c56386dcde2be7b5315023ebf4f58a53d7ee0fc630b339
|
||||
size 3898189
|
||||
oid sha256:be6e228fff4681fb5dd5e1851cd81912bc2364985d73a5c451bf08a848ab0db2
|
||||
size 3899229
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:a50e3b37300c4102aecc15177d3bdae0d1b9c7756e4aed74100820176611d7c0
|
||||
size 1064517
|
||||
oid sha256:b2eee0607cf92eb8a09be1a2e1c5529a95a0b38437fdd322b57efd8ef584bfbf
|
||||
size 1064552
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:6d16fbcb3aa4433575a0c9aa60e01a21156885a0ef5d6575288262084c0f8360
|
||||
size 5509058
|
||||
oid sha256:327cd60778f696b0ef888635384b3c40352ee044bbccdf2b68f73892a8503bc6
|
||||
size 5508764
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:e12fd68aeda5902a0bb915b9971aeb6cfbf7d453ec214dce69395f818e1fb4fd
|
||||
size 927507
|
||||
oid sha256:003182413388f9b33eacbf95f0d88dcb8f905cdc3e25d7f9107ae0465169d966
|
||||
size 927373
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:548a52b958331cfc544197ced933a424e6025c4f546c1b3ccb54d2c62da3279b
|
||||
size 3855111
|
||||
oid sha256:0bdaf8bf6b12e5f57366da114d473e548f0dfe7ab4bd117c65663bc1fcfa8403
|
||||
size 3856063
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:eff552bc964201baeb229dbf771601781889f64b462b0c7253b37e0c3d790d5e
|
||||
size 652045
|
||||
oid sha256:b9642a8ba0e6b596e604f2d249962fa3841899f269d277d38ad8824e9ad80cce
|
||||
size 652040
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:c0b59866e95d75d21830d1db792f5584ddda3e3e6fe4fa40f150deeee1c4b82a
|
||||
size 1288371
|
||||
oid sha256:bcd791d39d22ea188755d16a0d03ae92d67c7216a704f73653067bee15c00e98
|
||||
size 1288140
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:06c38b0435aa587814cca9606b71b510fc00e4fff2d12213ab2f497599eedc51
|
||||
size 947501
|
||||
oid sha256:09d0a47a75d61dc190bc8d119c17c3db2be4cbb4e701d870daac7ad75992ed8f
|
||||
size 947635
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:6fc14b6c1d288b072cea4e47a4d1f29e13ac566492c8aad1b430c7e82dc9804a
|
||||
size 3759800
|
||||
oid sha256:6c817637d44ae063f51fd1c8990ba4f98e179e82cc93af1b544f098555dbdeea
|
||||
size 3759200
|
||||
|
||||