Merge branch 'main' into repo-sync
This commit is contained in:
66
.github/workflows/staging-deploy-pr-docker.yml
vendored
66
.github/workflows/staging-deploy-pr-docker.yml
vendored
@@ -12,8 +12,6 @@ on:
|
||||
- completed
|
||||
|
||||
env:
|
||||
EARLY_ACCESS_SCRIPT_PATH: script/early-access/clone-for-build.js
|
||||
EARLY_ACCESS_SUPPORT_FILES: script/package.json
|
||||
# In this specific workflow relationship, the `github.event.workflow_run.pull_requests`
|
||||
# array will always contain only 1 item! Specifically, it will contain the PR associated
|
||||
# with the `github.event.workflow_run.head_branch` that triggered the preceding
|
||||
@@ -43,6 +41,11 @@ jobs:
|
||||
GITHUB_EVENT_CONTEXT: ${{ toJSON(github.event) }}
|
||||
run: echo "$GITHUB_EVENT_CONTEXT"
|
||||
|
||||
- name: Check out repo's default branch
|
||||
uses: actions/checkout@5a4ac9002d0be2fb38bd78e4b4dbde5606d7042f
|
||||
with:
|
||||
persist-credentials: 'false'
|
||||
|
||||
- name: Download build artifact
|
||||
uses: dawidd6/action-download-artifact@b9571484721e8187f1fd08147b497129f8972c74
|
||||
with:
|
||||
@@ -69,13 +72,6 @@ jobs:
|
||||
node-version: 16.x
|
||||
cache: npm
|
||||
|
||||
- if: ${{ github.repository == 'github/docs-internal' }}
|
||||
name: Download the script to clone early access
|
||||
uses: Bhacaz/checkout-files@c8f01756bfd894ba746d5bf48205e19000b0742b
|
||||
with:
|
||||
files: ${{ env.EARLY_ACCESS_SCRIPT_PATH }} ${{ env.EARLY_ACCESS_SUPPORT_FILES }}
|
||||
token: ${{ secrets.GITHUB_TOKEN }}
|
||||
|
||||
# Add any dependencies that are needed for this workflow below
|
||||
- if: ${{ github.repository == 'github/docs-internal' }}
|
||||
name: Install temporary development-only dependencies
|
||||
@@ -83,61 +79,11 @@ jobs:
|
||||
|
||||
- if: ${{ github.repository == 'github/docs-internal' }}
|
||||
name: Clone early access
|
||||
run: node ${{ env.EARLY_ACCESS_SCRIPT_PATH }}
|
||||
run: node script/early-access/clone-for-build.js
|
||||
env:
|
||||
DOCUBOT_REPO_PAT: ${{ secrets.DOCUBOT_REPO_PAT }}
|
||||
GIT_BRANCH: ${{ github.event.workflow_run.head_branch }}
|
||||
|
||||
# Remove any dependencies installed for this workflow below
|
||||
# - if: ${{ github.repository == 'github/docs-internal' }}
|
||||
# name: Remove development-only dependencies
|
||||
# run: npm prune --production
|
||||
|
||||
- if: ${{ github.repository == 'github/docs-internal' }}
|
||||
name: Delete the script directory after cloning early access
|
||||
run: rm -rf script/
|
||||
|
||||
# - name: Create a gzipped archive
|
||||
# run: |
|
||||
# touch app.tar.gz
|
||||
# tar --exclude=app.tar.gz -czf app.tar.gz ./
|
||||
|
||||
# - name: Install Heroku client development-only dependency
|
||||
# run: npm install --no-save heroku-client
|
||||
|
||||
# - name: Create a Heroku build source
|
||||
# id: build-source
|
||||
# uses: actions/github-script@2b34a689ec86a68d8ab9478298f91d5401337b7d
|
||||
# env:
|
||||
# HEROKU_API_TOKEN: ${{ secrets.HEROKU_API_TOKEN }}
|
||||
# with:
|
||||
# script: |
|
||||
# const { owner, repo } = context.repo
|
||||
|
||||
# if (owner !== 'github') {
|
||||
# throw new Error(`Repository owner must be 'github' but was: ${owner}`)
|
||||
# }
|
||||
# if (repo !== 'docs-internal' && repo !== 'docs') {
|
||||
# throw new Error(`Repository name must be either 'docs-internal' or 'docs' but was: ${repo}`)
|
||||
# }
|
||||
|
||||
# const Heroku = require('heroku-client')
|
||||
# const heroku = new Heroku({ token: process.env.HEROKU_API_TOKEN })
|
||||
|
||||
# const { source_blob: sourceBlob } = await heroku.post('/sources')
|
||||
# const { put_url: uploadUrl, get_url: downloadUrl } = sourceBlob
|
||||
|
||||
# core.setOutput('upload_url', uploadUrl)
|
||||
# core.setOutput('download_url', downloadUrl)
|
||||
|
||||
# # See: https://devcenter.heroku.com/articles/build-and-release-using-the-api#sources-endpoint
|
||||
# - name: Upload to the Heroku build source
|
||||
# run: |
|
||||
# curl '${{ steps.build-source.outputs.upload_url }}' \
|
||||
# -X PUT \
|
||||
# -H 'Content-Type:' \
|
||||
# --data-binary @app.tar.gz
|
||||
|
||||
- name: Install one-off development-only dependencies
|
||||
run: npm install --no-save --include=optional esm
|
||||
|
||||
|
||||
Binary file not shown.
|
Before Width: | Height: | Size: 15 KiB After Width: | Height: | Size: 26 KiB |
Binary file not shown.
|
Before Width: | Height: | Size: 19 KiB After Width: | Height: | Size: 31 KiB |
Binary file not shown.
|
Before Width: | Height: | Size: 6.0 KiB After Width: | Height: | Size: 10 KiB |
@@ -3,6 +3,7 @@ title: GitHub Actions Documentation
|
||||
shortTitle: GitHub Actions
|
||||
intro: 'Automate, customize, and execute your software development workflows right in your repository with {% data variables.product.prodname_actions %}. You can discover, create, and share actions to perform any job you''d like, including CI/CD, and combine actions in a completely customized workflow.'
|
||||
introLinks:
|
||||
overview: /actions/learn-github-actions/understanding-github-actions
|
||||
quickstart: /actions/quickstart
|
||||
reference: /actions/reference
|
||||
featuredLinks:
|
||||
|
||||
@@ -30,7 +30,7 @@ versions:
|
||||
ghes: '*'
|
||||
ghae: '*'
|
||||
children:
|
||||
- /introduction-to-github-actions
|
||||
- /understanding-github-actions
|
||||
- /finding-and-customizing-actions
|
||||
- /essential-features-of-github-actions
|
||||
- /managing-complex-workflows
|
||||
|
||||
@@ -1,11 +1,12 @@
|
||||
---
|
||||
title: Introduction to GitHub Actions
|
||||
shortTitle: Introduction to GitHub Actions
|
||||
intro: 'Learn about the core concepts and various components of {% data variables.product.prodname_actions %}, and see an example that shows you how to add automation to your repository.'
|
||||
title: Understanding GitHub Actions
|
||||
shortTitle: Understanding GitHub Actions
|
||||
intro: 'Learn the basics of {% data variables.product.prodname_actions %}, including core concepts and essential terminology.'
|
||||
redirect_from:
|
||||
- /github/automating-your-workflow-with-github-actions/core-concepts-for-github-actions
|
||||
- /actions/automating-your-workflow-with-github-actions/core-concepts-for-github-actions
|
||||
- /actions/getting-started-with-github-actions/core-concepts-for-github-actions
|
||||
- /actions/learn-github-actions/introduction-to-github-actions
|
||||
versions:
|
||||
fpt: '*'
|
||||
ghes: '*'
|
||||
@@ -89,6 +89,14 @@ For pull requests, you can also use search to:
|
||||
- Filter pull requests by the team requested for review: `state:open type:pr team-review-requested:github/atom`{% ifversion fpt or ghes or ghae %}
|
||||
- Filter for pull requests that are linked to an issue that the pull request may close: `linked:issue`{% endif %}
|
||||
|
||||
{% note %}
|
||||
|
||||
**Note:** {% data reusables.pull_requests.large-search-workaround %} You can limit your search with the `org:`, `user:`, or `repo:` qualifiers. For more information, see "[Searching issues and pull requests](/github/searching-for-information-on-github/searching-on-github/searching-issues-and-pull-requests#search-within-a-users-or-organizations-repositories)."
|
||||
|
||||
{% endnote %}
|
||||
|
||||
|
||||
|
||||
## Further reading
|
||||
|
||||
- "[Searching issues and pull requests](/articles/searching-issues)"
|
||||
|
||||
@@ -43,8 +43,8 @@ You can integrate your {% data variables.product.product_name %} personal accoun
|
||||
|
||||
### Slack and {% data variables.product.product_name %} integration
|
||||
|
||||
You can integrate Slack with your personal or organization account to subscribe for notifications, close or open issues, and provide rich references to issues and pull requests without leaving Slack. For more information, visit the [Slack integration app](https://github.com/marketplace/slack-github) in the marketplace.
|
||||
You can subscribe to your repositories or organizations and get realtime updates about issues, pull requests, commits, releases, deployment reviews and deployment statuses. You can also perform activities like close or open issues, and provide rich references to issues and pull requests without leaving Slack. For more information, visit the [Slack integration app](https://github.com/marketplace/slack-github) in the marketplace.
|
||||
|
||||
### Microsoft Teams and {% data variables.product.product_name %} integration
|
||||
|
||||
You can integrate Microsoft Teams with your personal or organization account to access information about {% data variables.product.product_name %} alongside wider team communication. When you integrate Microsoft Teams with {% data variables.product.product_name %}, you can subscribe for notifications, close or open issues, and provide rich references to issues and pull requests without leaving Microsoft Teams. For more information, visit the [Microsoft Teams integration app](https://appsource.microsoft.com/en-us/product/office/WA200002077) in Microsoft AppSource.
|
||||
You can subscribe to your repositories or organizations and get realtime updates about issues, pull requests, commits, deployment reviews and deployment statuses. You can also perform activities like close or open issues, comment on your issues and pull requests, and provide rich references to issues and pull requests without leaving Microsoft Teams. For more information, visit the [Microsoft Teams integration app](https://appsource.microsoft.com/en-us/product/office/WA200002077) in Microsoft AppSource.
|
||||
|
||||
@@ -50,12 +50,17 @@ With the `in` qualifier you can restrict your search to the title, body, comment
|
||||
|
||||
To search issues and pull requests in all repositories owned by a certain user or organization, you can use the `user` or `org` qualifier. To search issues and pull requests in a specific repository, you can use the `repo` qualifier.
|
||||
|
||||
{% data reusables.pull_requests.large-search-workaround %}
|
||||
|
||||
|
||||
| Qualifier | Example
|
||||
| ------------- | -------------
|
||||
| <code>user:<em>USERNAME</em></code> | [**user:defunkt ubuntu**](https://github.com/search?q=user%3Adefunkt+ubuntu&type=Issues) matches issues with the word "ubuntu" from repositories owned by @defunkt.
|
||||
| <code>org:<em>ORGNAME</em></code> | [**org:github**](https://github.com/search?q=org%3Agithub&type=Issues&utf8=%E2%9C%93) matches issues in repositories owned by the GitHub organization.
|
||||
| <code>repo:<em>USERNAME/REPOSITORY</em></code> | [**repo:mozilla/shumway created:<2012-03-01**](https://github.com/search?q=repo%3Amozilla%2Fshumway+created%3A%3C2012-03-01&type=Issues) matches issues from @mozilla's shumway project that were created before March 2012.
|
||||
|
||||
|
||||
|
||||
## Search by open or closed state
|
||||
|
||||
You can filter issues and pull requests based on whether they're open or closed using the `state` or `is` qualifier.
|
||||
|
||||
@@ -49,6 +49,7 @@ These guidelines are specific to GitHub’s documentation. For general style que
|
||||
- [Accounts](#accounts)
|
||||
- [Acronyms](#acronyms)
|
||||
- [Apps](#apps)
|
||||
- [Currency](#currency)
|
||||
- [Inclusive language](#inclusive-language-1)
|
||||
- [Prepositions](#prepositions)
|
||||
- [Product names](#product-names-1)
|
||||
@@ -470,6 +471,31 @@ Use "Apps" when referring to specific apps or types of apps.
|
||||
|
||||
GitHub Apps is always capitalized, because it’s a feature name.
|
||||
|
||||
### Currency
|
||||
|
||||
When referring to dollars, cents, amounts of currency or using the `$` sign, ensure the currency used is defined even if the amount is zero. Use the [ISO standard currency name](https://www.iso.org/iso-4217-currency-codes.html), and the [ISO standard currency code](https://www.six-group.com/en/products-services/financial-information/data-standards.html#scrollTo=currency-codes) where possible.
|
||||
|
||||
Use lowercase for currency names, but capitalize the reference to the country or region.
|
||||
- **Use:** US dollar.
|
||||
- **Avoid:** US Dollar, $USD dollar.
|
||||
|
||||
Use uppercase for currency codes.
|
||||
- **Use:** USD.
|
||||
|
||||
Where there is only one reference in an article, use the currency name without a `$` sign preceding the amount.
|
||||
- **Use:** `10 US dollars` for a single reference to currency.
|
||||
|
||||
Where an article contains several references to the same currency, ensure that the first reference uses the currency name without a `$` sign preceding the amount and includes the currency code in parentheses following the currency name.
|
||||
|
||||
For subsequent references to currency in an article or where appropriate (such as when space is a consideration, or when several amounts are presented in a table or list), include the `$` sign preceding the amount and use the ISO standard currency code following the amount.
|
||||
- **Use:** `10 US dollars (USD)` for the first reference, and `$0.25 USD` for subsequent references.
|
||||
- **Avoid:** `$10 US dollars (USD)`, `USD$0.25`.
|
||||
|
||||
Where the first reference concerns `cents` or a non-dollar amount, capitalize the reference to the country or region of the currency used in parentheses immediately after the first reference. Subsequent currency references are treated using the guidelines above.
|
||||
|
||||
- **Use:** `99 cents (US currency)` for the first reference, and `99 cents` for subsequent references.
|
||||
- **Avoid:** `$0.99 (US currency)`, `$0.99 USD cents`, `USD$0.99 cents`.
|
||||
|
||||
### Inclusive language
|
||||
|
||||
See the “Inclusive language” section of this guide.
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
{% note %}
|
||||
|
||||
**Note:** After the {% data variables.product.prodname_codespaces %} trial period ends, you must set a spending limit before you can use {% data variables.product.prodname_codespaces %}. By default, your organization will have a {% data variables.product.prodname_codespaces %} spending limit of $0, which prevents any codespaces from being created. To allow your users to create codespaces in your organization, set the limit to a value higher than $0.
|
||||
**Note:** After the {% data variables.product.prodname_codespaces %} trial period ends, you must set a spending limit before you can use {% data variables.product.prodname_codespaces %}. By default, your organization or enterprise will have a {% data variables.product.prodname_codespaces %} spending limit of $0, which prevents any codespaces from being created or existing codespaces from being opened. To allow your users to create codespaces in your organization, set the limit to a value higher than $0.
|
||||
|
||||
{% endnote %}
|
||||
|
||||
By default, your organization will have a {% data variables.product.prodname_codespaces %} spending limit of $0, which prevents new codespaces from being created or existing codespaces from being opened. To allow your users to create codespaces in your organization, set the limit to a value higher than $0.
|
||||
By default, your organization or enterprise will have a {% data variables.product.prodname_codespaces %} spending limit of $0, which prevents new codespaces from being created or existing codespaces from being opened. To allow your users to create codespaces in your organization, set the limit to a value higher than $0.
|
||||
|
||||
1
data/reusables/pull_requests/large-search-workaround.md
Normal file
1
data/reusables/pull_requests/large-search-workaround.md
Normal file
@@ -0,0 +1 @@
|
||||
If you have access to pull requests in more than 10,000 repositories, you will need to limit your search to a specific organization, user account, or repository to see results.
|
||||
@@ -100,7 +100,7 @@
|
||||
"deprecationDate": "2022-06-03"
|
||||
},
|
||||
"3.2": {
|
||||
"releaseDate": "2021-09-07",
|
||||
"releaseDate": "2021-09-09",
|
||||
"deprecationDate": "2022-09-28"
|
||||
},
|
||||
"3.3": {
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:1db2078d1f0c3881cb8ea260727894ba9cb170616190ed84dc1acfdab7d8db7f
|
||||
size 506854
|
||||
oid sha256:b44817c52ed9851af61cf234aad08e6175e3c6a3b0b54186b2f382a2843a67f4
|
||||
size 506878
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:d2c85c8d1361eab0b22fd5b80a7cca3db552488e9b69b7d4e0ac2fa55daad1f8
|
||||
size 802554
|
||||
oid sha256:0f8aa2f1bcca702cdad42426512143d67309fa67ba149871d024672b0bff534e
|
||||
size 802439
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:f03a5f0f8561ea2131ac2ccc939e772bc8bbc7ade4ff08552e450917780dc26a
|
||||
size 469499
|
||||
oid sha256:53e43540cf444bf08b1b5c909bfb4a7fabd2878cd84f6a1b7902d4be7769b2ec
|
||||
size 469327
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:04950c633a9834d8b121311f32ff7065411fc96da80870c55a2a3d6106c70ddc
|
||||
size 2079772
|
||||
oid sha256:124669c488cbeba21506268cce4134079daa8a48a3a7441ab6f3331735485bea
|
||||
size 2078720
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:4c29627b5a70d3bbf4ebc45966c7afac798fbea36a4531e463669a9937b0b8a3
|
||||
size 432664
|
||||
oid sha256:5b270b7df2724903639d177e04225b0acbb6ac03627909495e92160cd8bee68d
|
||||
size 432811
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:6b90140f5f6999e0fc23445300f331acb8d47cb7a1c06ee417e4a3567df458b2
|
||||
size 1695927
|
||||
oid sha256:c24b75c63eeccd776de644a9ec9e66c468d9afa92748c7c9a4b39891f7cb7abc
|
||||
size 1696199
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:ea843337af5824b73711eb5c81ab869f91b899e133350485d808084711908712
|
||||
size 280023
|
||||
oid sha256:e076185b87c20f94b4017d5d73fdb461428b43f714835d486daaccf966f774af
|
||||
size 280294
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:bd456cbf0d41a26aa40ec2883025933e26c54c714935508c8cf2494080b5d715
|
||||
size 1067632
|
||||
oid sha256:1cb808d9fb6eb3407f4a11f94f825eb9030aa6e2166f078ebb42935d63985998
|
||||
size 1067026
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:d476579786a5d3b58296f55fca8664d801db9a32d7454a1e9b32b76bb05efdbe
|
||||
size 528589
|
||||
oid sha256:fa86743304036bd46639c2cfa6de23d85276cb85e73da9c1ccee854b494230b8
|
||||
size 529332
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:8500a0b6db5a4f235b4ba7c721471ef6847a3b5e3d03c5ce92857c1da2a79a5e
|
||||
size 2796601
|
||||
oid sha256:de36d36b1052c9bd06ddb8f6c6defdb05f77e1722e15fcaad43cf3ccf9b9cde9
|
||||
size 2797942
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:af6ef621cd35f00b758f5af24bb1777607ce5242e765c16237f9191a5a7394ce
|
||||
size 443524
|
||||
oid sha256:b4bb49079b00be24ba2967d0cd31c6160a7cced9b3b4c8dbc23aedd51bb8b269
|
||||
size 443449
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:53ba98469e4951e4997bbcf7d3718182b1487b1d3a4f0d328651fb3198e5367a
|
||||
size 1851870
|
||||
oid sha256:8dd1d0dc2530e6133fd7f52d1bb8888e9f0fdab435bdd9cc110fa21b1ace94c2
|
||||
size 1851336
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:aa088539a6bb6d05c377fcfe773676461ce2c54fad645b985f503a78b9196774
|
||||
size 524430
|
||||
oid sha256:c7867bf315250b2dde71cd0ce508a5c3911c5b21b5aaf3cd905631905d89840c
|
||||
size 524579
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:4abed99ebb1c108cec7612d3452f821305ec3ac059d624a4066f26f480e736bd
|
||||
size 832898
|
||||
oid sha256:326cc15357264a34b2f7660162d5fd0e262a59cc9a6c11e80307370656d56bc3
|
||||
size 833810
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:50d396326a39d557733616a65dec40bc3e4fb0852794dc270ea8ae0de56c3586
|
||||
size 490077
|
||||
oid sha256:178d2956c31d4b6925b0bb391701e9c85079799640958282ada786547968903f
|
||||
size 490137
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:42a3e47645f861397f1464af7c48e26576a238e28d29ec16325514fa248c33ad
|
||||
size 2178391
|
||||
oid sha256:20e93d3197d3521ac0d506812182f17220360edd70629431e50d70b98ddcafcd
|
||||
size 2179376
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:be9f4ed5ea500aea03a07a04aa85ea6b87b81a4e3efc2f2a09a2a41d0d7bca32
|
||||
size 452568
|
||||
oid sha256:4c2fb2fc07516c6966940ad588a28e3ae37addbbb9a7ac2ceb9cc31d47b5d32f
|
||||
size 451581
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:6445600a9334e72d33af671c3137464b70bd390b1442b725f6fce4d28f110d95
|
||||
size 1770651
|
||||
oid sha256:9d7fee30b3e378c9ad4497366e386984acf4f5a07abd18ced0d7b255c4a447cb
|
||||
size 1771025
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:85f38b0be8a25b76bfbe5ecd1ab48e29811c71d1b9491e6e2d3bd868a98dd440
|
||||
size 278192
|
||||
oid sha256:b34ad3891df52ffc4ba213b58bf7b4abcf857b460471b96e303c006e96234c6e
|
||||
size 278171
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:7113cd64ba8009da22ead3edde020c8dbce61bfdc37398f63997352e4a17f6e3
|
||||
size 1055499
|
||||
oid sha256:6f51b7590eb7dcb0ddf4027e24d99edc796939fa93cd267a371d8297b47270ce
|
||||
size 1055110
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:e12c30a6ce534c8ecaaef9bc0d396ddcc6a8e080d8e07b30368ff9246844412a
|
||||
size 550785
|
||||
oid sha256:ffc7661a04784b341727f172d461862d2d54108402b8cec3918e1a3007553950
|
||||
size 550365
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:d7b44e3f4eb80f0bb113065912520c6dab034680e97d2a372cf2ff79aa951073
|
||||
size 2915021
|
||||
oid sha256:9b15ba7b2734098fb24df198d27d138dd3a4f1ecd287b7ba1ca2a4becb7416c1
|
||||
size 2911567
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:79efc2bd780cd3b5bcb7063aeb68f7cd5da057304b1814be7aceb8dd5c550997
|
||||
size 464767
|
||||
oid sha256:a7545701d154e770fbf94113ff649fc2d9e46efea9273f621c179c380e4adf2d
|
||||
size 464650
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:5db19fc6ec66e1923513589461e863586e8fecafb4bc820ed52fa427de192ccb
|
||||
size 1936831
|
||||
oid sha256:26bd4ae625a51404a664eeae15d3bc47f05530a9e8db6113d5409d523bab3c8a
|
||||
size 1936082
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:80e5dd6ca45083fae529d305f69bc134ddffab291126070d03699ffe4874baa7
|
||||
size 534156
|
||||
oid sha256:b850659f4ff4062b4f2625036e0354d42040c795ccc3890b32dbc500a429056e
|
||||
size 534143
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:c1fdd5aa2a1359fd5a7f39b9a590486345281ac0ab349c9200cabbcc0255a559
|
||||
size 845875
|
||||
oid sha256:6279f03aca0539c4a9f37f1765119eb6df187029d205276cc1b4e7138db8104b
|
||||
size 846031
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:58f6b89d005287fb9a9cd4464780a382378041857e964cd615a74979d8595736
|
||||
size 497296
|
||||
oid sha256:99eb66cb9732c0c65509146c30a72925b03679bd14832cb26c4577ea52df4dcb
|
||||
size 497516
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:12d9c2a23ae6020fe96a25eb653f3ab5914196a9493a76eee6b8aeb5ae39e0da
|
||||
size 2221181
|
||||
oid sha256:defe32e5c6290c2f5903fcadf61d9f26893c2eee3dcbba86db420bb66c11c15a
|
||||
size 2222489
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:94626f54064c4d7cf9ecd3896d3967014d7f832db2f715752276fe65d02d546f
|
||||
size 460800
|
||||
oid sha256:87194c0efb65e60ba295c89580ed9fc37d4edabc0d6bb28882aeb4cb9c894c92
|
||||
size 460783
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:ed65a6d9a0006e5407a67dd26c468f8c678eb76ccdd97464ae3fc3092b3b521e
|
||||
size 1804755
|
||||
oid sha256:4395bf90ee0fdf3d840cae4d3d9fa01d1967941daacc9235942040164eb27b19
|
||||
size 1805486
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:3cc0bb38296ad3eb9146156e3204eb3a8f0785f5204dcdf9c11333f507a4951f
|
||||
size 278484
|
||||
oid sha256:7a7221244afbe4cdd4f76eaabee2fd2e8d86bb5d27c0a2e803740e939094db5b
|
||||
size 278315
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:9f2cade24644796bfc7060b6e9d80d19fe6efbd8c0d1c1dd023a58ebd1e3a243
|
||||
size 1056753
|
||||
oid sha256:1208ca208e890c9e8266bb4a0b163ccad1f573d5c3d060ecbe176b0e315c5820
|
||||
size 1056369
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:3f77e59376ccae63708d49609d1e5489daec6a332e2381507cdf70bf52ffa57b
|
||||
size 558734
|
||||
oid sha256:c21c76fd454ffb1c42b9be83311ccee86824030246057c45e67df3b8ea75b6cd
|
||||
size 558958
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:b71350f4b5b287f834c96748e882dd81f7570fe83a54f8b152789cb325f6d9c1
|
||||
size 2966822
|
||||
oid sha256:b3d16eb42f063989363f2a5b2165ee16888743a4689ada59206407628809c5bb
|
||||
size 2964899
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:3c47c8649ef73ba5ca244c8fc338a72334a98bd82475907c7b2275ec804bcae0
|
||||
size 472166
|
||||
oid sha256:33a3ade9c10305ff86b1ce97a3d841798d06e2113993db12a3a3ecd5214d3e9b
|
||||
size 471978
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:fcbcfc09ab90de9fd77260a36ceb7137732a9fc0d4e00f3287dc602343042290
|
||||
size 1972169
|
||||
oid sha256:a65fae6e29bbf8174ce003e86295220192c7681c01bdbd1e6bdb001fb8d0c30b
|
||||
size 1971746
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:8c070e9b4670a121484d610685677bd75a81bec08853aa1a5245502f44b20bde
|
||||
size 710310
|
||||
oid sha256:3c080ca614977edb9374f078ceafdb39326ffdd8b5251728d55a281c1d0a123f
|
||||
size 709897
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:2e2bdac56fab12b99dfc299d54e0f00b318d9e469f59abaf47c50c7c7b661b91
|
||||
size 969678
|
||||
oid sha256:7bf881adf4d8642818911ff2ec7e0023e2d1fbe61029613b93cd402920e1ea5e
|
||||
size 968853
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:25c20f8dd2961d5e46490f4cd6a4fb8c18889daaf7a9047386226be5369c488f
|
||||
size 647642
|
||||
oid sha256:2d072e9712fc19c38a14a53e3ad76680b8a791c877429e728a88a465ae6dc2c5
|
||||
size 647893
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:332b2c5cad453cacebf6bb058c845170c953924ccaad313f3f4a780b1c0dce39
|
||||
size 2902185
|
||||
oid sha256:8f0bf94db81768053e01e23da5bb05640d15583abf7e72448b6e3038d11cf408
|
||||
size 2901192
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:68719331947ba8220c7ccc1b7166e313ec4c752573b8746f1c5df70f4d8aa963
|
||||
size 625052
|
||||
oid sha256:b8c11257b9430ec41a18f34a19b8b6342163a2ee3f9666a19069a9616af27cd4
|
||||
size 625143
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:bc97c90e45ccfe917ceb80dce3e850a5869f4e4d2a29b3cd120e6a1489586c63
|
||||
size 2382358
|
||||
oid sha256:907e7224b3f06ac0de2ca00a7b669bf5bc4601a8a460c3c9cd635de63372c208
|
||||
size 2382218
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:7c4bf4397c7b7a860635e48c54b59d51194742f5a15aa387c2b65788cfe063d6
|
||||
size 306772
|
||||
oid sha256:ef9265fb8baf79b3ac62b1f91832c4892e989d266263f1dea3dea1bd54747841
|
||||
size 306651
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:a0d8837ed8acc0302e552bfd0d51fa734d9dd5b3c49f3f7cecada2e0c4c4f556
|
||||
size 1088724
|
||||
oid sha256:5c7c169a673f4dbf018a2f14830e98a1eb7bf87e3417074fb601db8680d016a8
|
||||
size 1088087
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:04f17a7f2c787f3928980f74da0c15ef6e54b05ea6c042787c752e3a9713b0fd
|
||||
size 738487
|
||||
oid sha256:a0edadea9ecc849b99dcf50f378ba5f7536ba6b62922613694b21c1030913406
|
||||
size 738145
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:2096b5ca4006f919c562af8b091cfef57c12849b8680895e2c01b25a41158b4a
|
||||
size 3852449
|
||||
oid sha256:a5696a2056b83cc4c6683d27937f4f1025a8b7bbb60f9f4c304cbeb7e96701a9
|
||||
size 3851367
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:1ab6b17a1f71c756849e6605765b256c7a4848a4845e0f8764297016a1ba4d19
|
||||
size 621424
|
||||
oid sha256:baee22390d740e6d9e252b2994b16fa09713fcd8d9dedd04a287f2e63fb5ee51
|
||||
size 621878
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:ec94a72e3680bdd5060a8089beb966572fa8d55d085086adf6b3e7832a979a3a
|
||||
size 2550865
|
||||
oid sha256:83037de9a0e30742684d86c4162f77337eb33b7b3a0a9c7e3b974c8acbaeca6e
|
||||
size 2553244
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:1dc5aae11bfb1ef546985356fc27a88f32f68c11eed0ea3b2bb68971536bedc2
|
||||
size 414353
|
||||
oid sha256:9b24574344f48d61c6d024439cbfa1eb6ab947dd2d3bceee150efe152e9060be
|
||||
size 414172
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:77e6e1e785a83e5ee2cec3990b519d7fd79fe2a3e640b498fed0984418a31214
|
||||
size 631187
|
||||
oid sha256:f02ae2361bb0c3a12fd213756f096cbf5a17bc46646d1b0bec7de6cd58ef11b7
|
||||
size 630930
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:578308b211563b185bd4ce1a999fed4de1f215bcb7d9e18fc1d18c09c05453a9
|
||||
size 390925
|
||||
oid sha256:94d8e679fff1d1249704972eda9e4883300932cbfdfb0d5eeafdc594c5f2f171
|
||||
size 390759
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:b8563012a170519a83594d42bc20f011a322a6c3704329d3cc4e4e4f0b61a332
|
||||
size 1698394
|
||||
oid sha256:62298600b040e0ad896126af56f292ff9f4dc1a2ae8c8a0a15ee57d8801ee42d
|
||||
size 1698311
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:1b748b04a62bae63c0dea212af3924f1b2457fa1ecc473ca742046174b8ace47
|
||||
size 360912
|
||||
oid sha256:da5c9fe471eaaef451388868d8e308d3bb8a29f8f1f5a0797760f5548c38e7be
|
||||
size 360927
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:611c342f49a2c82294b6cc9a4f37362e135da2c454668a63ed75e415034da5e6
|
||||
size 1354160
|
||||
oid sha256:1389494f9732e27c88cd22af987bea4848c171c533774f579890c1813e113dbe
|
||||
size 1354486
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:7d0b2c758cfbbf5663d91e08b156b53919a07be6b9baa55667b83b23d8cd2e09
|
||||
size 200643
|
||||
oid sha256:aa692c98640303cea38dc68b65312da9912e0d4a82dff26eb54b04cf72ec5e3a
|
||||
size 200741
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:13e122427fc4090288d0844fe2e5bb94207f3a0ed72699d0cfba8385453064bf
|
||||
size 718632
|
||||
oid sha256:50f7f7afb8352fc9ec9786a4da484152b51459656a50fa0db36cf7d5ed13f695
|
||||
size 718124
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:1828b5dd115c29c7d3180d63f5b9af75cb3a2ebb48af5cea4530186b057796fd
|
||||
size 435872
|
||||
oid sha256:e1a63e924f668e74d395d1431abaef1ebbbbb30ca966699b31509c878c263028
|
||||
size 435789
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:2967599e8bec21a5f2a465398b35a04c7a8e91a26eef0f98e0857752763ed3dd
|
||||
size 2217770
|
||||
oid sha256:6e495b88899ce3a9f7b55d19af5638a1186bd7c78f47e42bd4fde5b659a854f6
|
||||
size 2218948
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:8a17b35e62c7c0518f6c87622b68a609b37b25fcaa363efa5feb4d641e83fc7d
|
||||
size 371581
|
||||
oid sha256:d6cf43b2bf56a1501219fc9e0f6fecdcd58bc8b3fbf77aee08d87270e2ad72cc
|
||||
size 371897
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:ef15146ac83fe9d865dfd6d6b811f4fdd25f5896458dc420788f6ea6c417a48b
|
||||
size 1496206
|
||||
oid sha256:6aeca7aeb3a0a9126201d17e3e9af4aa88f463c23dc2be7a97e651d35247630d
|
||||
size 1497372
|
||||
|
||||
Reference in New Issue
Block a user