1
0
mirror of synced 2026-01-07 09:01:31 -05:00

Merge branch 'main' into nattywombat-redirect-pizza-1

This commit is contained in:
Natalee Webb
2022-06-10 09:13:45 -07:00
committed by GitHub
90 changed files with 240 additions and 191 deletions

View File

@@ -45,7 +45,7 @@ You can access contexts using the expression syntax. For more information, see "
| `matrix` | `object` | Contains the matrix properties defined in the workflow that apply to the current job. For more information, see [`matrix` context](#matrix-context). |
| `needs` | `object` | Contains the outputs of all jobs that are defined as a dependency of the current job. For more information, see [`needs` context](#needs-context). |
{%- ifversion fpt or ghec or ghes > 3.3 or ghae-issue-4757 %}
| `inputs` | `object` | Contains the inputs of a reusable workflow. For more information, see [`inputs` context](#inputs-context). |{% endif %}
| `inputs` | `object` | Contains the inputs of a reusable {% ifversion actions-unified-inputs %}or manually triggered {% endif %}workflow. For more information, see [`inputs` context](#inputs-context). |{% endif %}
As part of an expression, you can access context information using one of two syntaxes.
@@ -714,33 +714,32 @@ jobs:
{% ifversion fpt or ghec or ghes > 3.3 or ghae-issue-4757 %}
## `inputs` context
The `inputs` context contains input properties passed to a reusable workflow. The input names and types are defined in the [`workflow_call` event configuration](/actions/learn-github-actions/events-that-trigger-workflows#workflow-reuse-events) of a reusable workflow, and the input values are passed from [`jobs.<job_id>.with`](/actions/learn-github-actions/workflow-syntax-for-github-actions#jobsjob_idwith) in an external workflow that calls the reusable workflow.
The `inputs` context contains input properties passed to a reusable workflow{% ifversion actions-unified-inputs %} or to a manually triggered workflow{% endif %}. {% ifversion actions-unified-inputs %}For reusable workflows, the{% else %}The{% endif %} input names and types are defined in the [`workflow_call` event configuration](/actions/learn-github-actions/events-that-trigger-workflows#workflow-reuse-events) of a reusable workflow, and the input values are passed from [`jobs.<job_id>.with`](/actions/learn-github-actions/workflow-syntax-for-github-actions#jobsjob_idwith) in an external workflow that calls the reusable workflow. {% ifversion actions-unified-inputs %}For manually triggered workflows, the inputs are defined in the [`workflow_dispatch` event configuration](/actions/learn-github-actions/events-that-trigger-workflows#workflow_dispatch) of a workflow.{% endif %}
There are no standard properties in the `inputs` context, only those which are defined in the reusable workflow file.
There are no standard properties in the `inputs` context, only those which are defined in the workflow file.
{% data reusables.actions.reusable-workflows-ghes-beta %}
For more information, see "[Reusing workflows](/actions/learn-github-actions/reusing-workflows)".
| Property name | Type | Description |
|---------------|------|-------------|
| `inputs` | `object` | This context is only available in a [reusable workflow](/actions/learn-github-actions/reusing-workflows). You can access this context from any job or step in a workflow. This object contains the properties listed below. |
| `inputs` | `object` | This context is only available in a [reusable workflow](/actions/learn-github-actions/reusing-workflows){% ifversion actions-unified-inputs %} or in a workflow triggered by the [`workflow_dispatch` event](/actions/learn-github-actions/events-that-trigger-workflows#workflow_dispatch){% endif %}. You can access this context from any job or step in a workflow. This object contains the properties listed below. |
| `inputs.<name>` | `string` or `number` or `boolean` | Each input value passed from an external workflow. |
### Example contents of the `inputs` context
The following example contents of the `inputs` context is from a job in a reusable workflow that has defined the `build_id` and `deploy_target` inputs.
The following example contents of the `inputs` context is from a workflow that has defined the `build_id`, `deploy_target`, and `perform_deploy` inputs.
```yaml
{
"build_id": 123456768,
"deploy_target": "deployment_sys_1a"
"deploy_target": "deployment_sys_1a",
"perform_deploy": true
}
```
### Example usage of the `inputs` context
### Example usage of the `inputs` context in a reusable workflow
This example reusable workflow uses the `inputs` context to get the values of the `build_id` and `deploy_target` inputs that were passed to the reusable workflow from the caller workflow.
This example reusable workflow uses the `inputs` context to get the values of the `build_id`, `deploy_target`, and `perform_deploy` inputs that were passed to the reusable workflow from the caller workflow.
{% raw %}
```yaml{:copy}
@@ -761,10 +760,42 @@ on:
jobs:
deploy:
runs-on: ubuntu-latest
if: ${{ inputs.perform_deploy == 'true' }}
if: ${{ inputs.perform_deploy }}
steps:
- name: Deploy build to target
run: deploy --build ${{ inputs.build_id }} --target ${{ inputs.deploy_target }}
```
{% endraw %}
{% ifversion actions-unified-inputs %}
### Example usage of the `inputs` context in a manually triggered workflow
This example workflow triggered by a `workflow_dispatch` event uses the `inputs` context to get the values of the `build_id`, `deploy_target`, and `perform_deploy` inputs that were passed to the workflow.
{% raw %}
```yaml{:copy}
on:
workflow_dispatch:
inputs:
build_id:
required: true
type: string
deploy_target:
required: true
type: string
perform_deploy:
required: true
type: boolean
jobs:
deploy:
runs-on: ubuntu-latest
if: ${{ inputs.perform_deploy }}
steps:
- name: Deploy build to target
run: deploy --build ${{ inputs.build_id }} --target ${{ inputs.deploy_target }}
```
{% endraw %}
{% endif %}
{% endif %}

View File

@@ -16,7 +16,7 @@ shortTitle: Remove workflow artifacts
{% warning %}
**Warning:** Once you delete an artifact, it can not be restored.
**Warning:** Once you delete an artifact, it cannot be restored.
{% endwarning %}

View File

@@ -1250,12 +1250,13 @@ on: workflow_dispatch
#### Providing inputs
You can configure custom-defined input properties, default input values, and required inputs for the event directly in your workflow. When you trigger the event, you can provide the `ref` and any `inputs`. When the workflow runs, you can access the input values in the `github.event.inputs` context. For more information, see "[Contexts](/actions/learn-github-actions/contexts)."
You can configure custom-defined input properties, default input values, and required inputs for the event directly in your workflow. When you trigger the event, you can provide the `ref` and any `inputs`. When the workflow runs, you can access the input values in the {% ifversion actions-unified-inputs %}`inputs`{% else %}`github.event.inputs`{% endif %} context. For more information, see "[Contexts](/actions/learn-github-actions/contexts)."
{% data reusables.actions.inputs-vs-github-event-inputs %}
{% ifversion fpt or ghec or ghes > 3.3 or ghae-issue-5511 %}
This example defines inputs called `logLevel`, `tags`, and `environment`. You pass values for these inputs to the workflow when you run it. This workflow then prints the values to the log, using the `github.event.inputs.logLevel`, `github.event.inputs.tags`, and `github.event.inputs.environment` context properties.
This example defines inputs called `logLevel`, `tags`, and `environment`. You pass values for these inputs to the workflow when you run it. This workflow then prints the values to the log, using the {% ifversion actions-unified-inputs %}`inputs.logLevel`, `inputs.tags`, and `inputs.environment`{% else %}`github.event.inputs.logLevel`, `github.event.inputs.tags`, and `github.event.inputs.environment`{% endif %} context properties.
{% raw %}
```yaml
on:
workflow_dispatch:
@@ -1287,11 +1288,10 @@ jobs:
echo "Tags: $TAGS"
echo "Environment: $ENVIRONMENT"
env:
LEVEL: ${{ github.event.inputs.logLevel }}
TAGS: ${{ github.event.inputs.tags }}
ENVIRONMENT: ${{ github.event.inputs.environment }}
LEVEL: {% ifversion actions-unified-inputs %}{% raw %}${{ inputs.logLevel }}{% endraw %}{% else %}{% raw %}${{ github.event.inputs.logLevel }}{% endraw %}{% endif %}
TAGS: {% ifversion actions-unified-inputs %}{% raw %}${{ inputs.tags }}{% endraw %}{% else %}{% raw %}${{ github.event.inputs.tags }}{% endraw %}{% endif %}
ENVIRONMENT: {% ifversion actions-unified-inputs %}{% raw %}${{ inputs.environment }}{% endraw %}{% else %}{% raw %}${{ github.event.inputs.environment }}{% endraw %}{% endif %}
```
{% endraw %}
If you run this workflow from a browser you must enter values for the required inputs manually before the workflow will run.
@@ -1306,7 +1306,7 @@ gh workflow run run-tests.yml -f logLevel=warning -f tags=false -f environment=s
For more information, see the {% data variables.product.prodname_cli %} information in "[Manually running a workflow](/actions/managing-workflow-runs/manually-running-a-workflow)."
{% else %}
This example defines the `name` and `home` inputs and prints them using the `github.event.inputs.name` and `github.event.inputs.home` contexts. If a `home` isn't provided, the default value 'The Octoverse' is printed.
This example defines the `name` and `home` inputs and prints them using the {% ifversion actions-unified-inputs %}`inputs.name` and `inputs.home`{% else %}`github.event.inputs.name` and `github.event.inputs.home`{% endif %} contexts. If a `home` isn't provided, the default value 'The Octoverse' is printed.
```yaml
name: Manually triggered workflow
@@ -1330,8 +1330,8 @@ jobs:
echo Hello $NAME!
echo -in $HOME
env:
NAME: {% raw %}${{ github.event.inputs.name }}{% endraw %}
HOME: {% raw %}${{ github.event.inputs.home }}{% endraw %}
NAME: {% ifversion actions-unified-inputs %}{% raw %}${{ inputs.name }}{% endraw %}{% else %}{% raw %}${{ github.event.inputs.name }}{% endraw %}{% endif %}
HOME: {% ifversion actions-unified-inputs %}{% raw %}${{ github.event.inputs.home }}{% endraw %}{% else %}{% raw %}${{ github.event.inputs.home }}{% endraw %}{% endif %}
```
{% endif %}

View File

@@ -280,6 +280,10 @@ updates:
prefix-development: "pip dev"
include: "scope"
```
If you use the same configuration as in the example above, bumping the `requests` library in the `pip` development dependency group will generate a commit message of:
`pip dev: bump requests from 1.0.0 to 1.0.1`
### `ignore`
{% data reusables.dependabot.default-dependencies-allow-ignore %}

View File

@@ -67,4 +67,4 @@ Assets are commonly found in the following locations:
|:----------:|:-----------------------------------------:|:---------------------------------:|
| CSS | `<link rel="stylesheet" href="http://example.com/css/main.css">` | `<link rel="stylesheet" href="https://example.com/css/main.css">`
| JavaScript | `<script type="text/javascript" src="http://example.com/js/main.js"></script>` | `<script type="text/javascript" src="https://example.com/js/main.js"></script>`
| Image | `<A HREF="http://www.somesite.com"><IMG SRC="http://www.example.com/logo.jpg" alt="Logo"></a>` | `<A HREF="https://www.somesite.com"><IMG SRC="https://www.example.com/logo.jpg" alt="Logo"></a>`
| Image | `<a href="http://www.somesite.com"><img src="http://www.example.com/logo.jpg" alt="Logo"></a>` | `<a href="https://www.somesite.com"><img src="https://www.example.com/logo.jpg" alt="Logo"></a>`

View File

@@ -25,9 +25,7 @@ children:
- /getting-started-with-the-checks-api
---
This section of the documentation is intended to get you up-and-running with
real-world {% ifversion fpt or ghec %}{% data variables.product.prodname_dotcom %}{% else %}{% data variables.product.product_name %}{% endif %} API applications. We'll cover everything you need to know, from
authentication, to manipulating results, to combining results with other apps.
Every tutorial here will have a project, and every project will be
stored and documented in our public
real-world {% ifversion fpt or ghec %}{% data variables.product.prodname_dotcom %}{% else %}{% data variables.product.product_name %}{% endif %} API applications. We'll go over everything you need to know, from authentication to results manipulation to integrating results with other apps.
Every tutorial will include a project, and each project will be saved and documented in our public
[platform-samples](https://github.com/github/platform-samples) repository.
![The Octocat](/assets/images/electrocat.png)

View File

@@ -21,7 +21,7 @@ The format and allowed values are the same as the [frontmatter versions property
### Liquid conditionals
Now you can use `{% if meow %} ... {% endif %}` in content files! Note this is the `if` tag, not the new `ifversion` tag.
Now you can use `{% ifversion meow %} ... {% endif %}` in content files!
### Frontmatter

View File

@@ -0,0 +1,6 @@
# Issue 6921
versions:
fpt: '*'
ghec: '*'
ghes: '>=3.6'
ghae: 'issue-6921'

View File

@@ -0,0 +1,8 @@
{% ifversion actions-unified-inputs %}
{% note %}
**Note**: The workflow will also receive the inputs in the `github.event.inputs` context. The information in the `inputs` context and `github.event.inputs` context is identical except that the `inputs` context preserves Boolean values as Booleans instead of converting them to strings.
{% endnote %}
{% endif %}

View File

@@ -1,6 +1,8 @@
When using the `workflow_dispatch` event, you can optionally specify inputs that are passed to the workflow.
The triggered workflow receives the inputs in the `github.event.inputs` context. For more information, see "[Contexts](/actions/learn-github-actions/contexts#github-context)."
The triggered workflow receives the inputs in the {% ifversion actions-unified-inputs %}`inputs`{% else %}`github.event.inputs`{% endif %} context. For more information, see "[Contexts]({% ifversion actions-unified-inputs %}/actions/learn-github-actions/contexts#inputs-context{% else %}/actions/learn-github-actions/contexts#github-context{% endif %})."
{% data reusables.actions.inputs-vs-github-event-inputs %}
```yaml
on:
@@ -31,8 +33,8 @@ on:
jobs:
print-tag:
runs-on: ubuntu-latest
if: {% raw %} ${{ github.event.inputs.print_tags == 'true' }} {% endraw %}
if: {% ifversion actions-unified-inputs %}{% raw %} ${{ inputs.print_tags }} {% endraw %}{% else %}{% raw %} ${{ github.event.inputs.print_tags == 'true' }} {% endraw %}{% endif %}
steps:
- name: Print the input tag to STDOUT
run: echo {% raw %} The tags are ${{ github.event.inputs.tags }} {% endraw %}
run: {% ifversion actions-unified-inputs %}echo {% raw %} The tags are ${{ inputs.tags }} {% endraw %}{% else %}echo {% raw %} The tags are ${{ github.event.inputs.tags }} {% endraw %}{% endif %}
```

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:2dcf65aac9c3fbb5864c0a076becd84f6a845366ece6fe6d156475daa9cfcaa6
size 741220
oid sha256:a54b3c6a9d1abdfe9b5cd0464117d26b6ddc99809a843c7c89e5fd9ecd199921
size 741463

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:dd1747dda10e7e7a70996aeedce00e31a2558aadbe7057bdd112f8c02c7ab7d1
size 1564375
oid sha256:63ec856eed5675e38b969738a6f2cb2443461f5a389562aa8f6aac4a73ce8e35
size 1564192

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:97ae33bf1129a9f187512131e9fd742e6dac0b3e35489e59e569de06c2755529
size 997701
oid sha256:8b965d9439d85120507e7dacc985e1c4fab7c272d8bba61fd78dcc4780c4b0fa
size 998450

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:c9541c12a9c0def688dc9a862ded8fb543ae4c4c1cef2a7bb65d8ada3195138b
size 3998346
oid sha256:200bfb721d37c81409586905e6fcc9d7edd4e00356192ffeb0aaf6dc30e225ed
size 3998068

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:07dc1e1c151f9e64265fa268a2da24e591a450553bb3febe19e68c42ec76660b
size 684154
oid sha256:25de42d8540613aa79bd902270a9d4c58f33b67ac9de17c595188d15e348cd5d
size 684008

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:c261ec56dd905782908ff5c3fe861a9b4cf863b2bcde505dd1a2e3a2725fe535
size 2977289
oid sha256:1a6800608e1e5ac7fc3794d406b0c30b981267d97a6a8f69054c46401bbd472b
size 2977421

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:5594c9947051182a0427eb6c92c0a027e54845717734b8c5b682f23fa775bd5d
size 751174
oid sha256:707b66c33cc8a353e29a52cc23bc5304e43e20315ba5af92d323a75ea91d4178
size 751327

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:2b613223a66d6052f1561ede2118bd129da3fce2272144da95a734e227c3b61f
size 4132920
oid sha256:362a0f1185ac46f04de3005ac8e7db0ec0760aabd2b0410325b9a8cabcac089e
size 4132505

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:93ff653e2482b8d21bed3fcf2a7b3344974b4f3637a00499fe459000c665c35b
size 674293
oid sha256:28639f94b9b9f8a7b196fb187c39523db9d2760e2c4f75238a5512765d60beac
size 674274

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:12e9884c747efaf000e392a8c9d6da5d7ea491f0cabf9bcea3140e86d75f7588
size 2871782
oid sha256:115c723bcbe5b4766026a1d5e298e5e56b4777e1de080795d7946f6bcb1ee7a1
size 2872238

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:49913322b5841f26fc140b95f41630309a7b7eb5ff4ab4258e467a4469366ee3
size 762832
oid sha256:d4f69e93f1ad098e17d791326d268e6558220516d02cd764d6c7ab96e4f2642a
size 762809

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:6e80f885cdcab443582a16c9b232872552d7f702342beece04a6f826b9c800cc
size 1603175
oid sha256:2216d578c2d79d9cb7fbab2795642d90c76c92fdb838293eab3b33d74e6f5393
size 1602932

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:114f863d990b7b275104a9460b299e00ae6cf871d73b13b6a5d5650ff7dc0bd7
size 1034754
oid sha256:6c5c8c724a70f23de12a79ffb39f250d3e42531d0230095df511c2d26cb04edd
size 1034885

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:87e5a3328c18ae5e932c13d06bc01e70ddd907dec8a67e566920dbc980736765
size 4153240
oid sha256:121abcb69983a774bf3b4136aa8ddff6fa5ba241a0cdf7a6b1b518209f08f9b1
size 4153283

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:83d86429113bfa7d9ecf54f6d1a256950853942a6dfae84f3b14055925899870
size 704025
oid sha256:cd8c033123d2ec1f727f55da73aff784e0bb67e179cbf07c904f33fb9996a96b
size 704143

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:e1d0488cd64158fec1186a3c78a1b3ebb076fc07107d2cc860f7c727124e2b42
size 3064700
oid sha256:5dbf1288c529841c55d637acd17bc4f08c151421dabe489e74ba922f5404552c
size 3064618

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:396deddcc14eecb5d330ed3dd7fc49291f8e874ebabceada789b6df24b53267c
size 772314
oid sha256:cb2e088fe212756e3740af770cc726de4a448e8ab17215c108abbee2ee7aeef5
size 772149

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:489f237bd9e1b5b452f4c07f67e83e1909392e17b09cb5830b2c21a126870cc0
size 4249023
oid sha256:4df850ef6eceda7334fad9795b6392848af6f1f368994ee04c5fc8664f4fe090
size 4249323

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:bbf4ae641889481497b164e3d41631ce9f59744571d5b86793a0e0a2ee1f1ade
size 693826
oid sha256:c232e02fd2fed4dfc0037ee765e5fd555d3f1d9981e451c45e498260e7541cd5
size 693886

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:be562dd6228c95f98d4122522834153edec20b66d6ce7c125234e390f6788523
size 2951842
oid sha256:83a085936c7f2da3364e61fff8a68c5573319e4bf4004a920ff1fb488d5489ee
size 2951664

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:7b666878bf7df22f0fe217626bf8c6ab82ad0244e3ea26c536a96530382a6873
size 786335
oid sha256:0963771b7ac8e68b034cd32f3b6fb858161ea860af49d71b7d94d54700de6188
size 786462

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:f101777f80e48219b3acfbec22f6383f79607c734b7d7b653374da1a54576277
size 1644695
oid sha256:054ac24c00c020fadeb778d8830c751622022e146f0e324ceefc8726943f3eaf
size 1644330

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:eb9b4cfb3aa139f9681157620836b77451cac520e19ba57b884becc2f92a8f9e
size 1069295
oid sha256:12fcee0dcfa89e8042537bbcc9fb256b430779083a7833f64d40272609a35e50
size 1069423

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:27ada95f5b54f8c9caa7f61779463a736f331255da160a6bb96dd5b5a10ec8ee
size 4248049
oid sha256:33eb7eee70e0716c305fe25f94b10beb7bac733ab2e48dd3f9c0cbd6642d69c1
size 4248183

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:ebd26db0fafed0581ab5f1f2224154ebbe16c50d3e3582dca24a071ac72fe0b1
size 723758
oid sha256:a3a1de609c6ff75ccac5f28f3cd6ad4109609b17781ec8265c92c7134ac558eb
size 723588

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:3d89068ba9af0edfe9a25d101418470323a4e084889a63a12729922f3dd756fb
size 3144110
oid sha256:7746b8f67e9fb787af9ba0d8585425ab1385c4a6ceb17421069e01fc20e24758
size 3144427

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:90b151d54f82466546b6ab18242a7724aaad48b35a704559b1b0a741ac575d69
size 795734
oid sha256:f929c78b20c8cbafd6795440a5f006f0fd3f6d69e6887ed5b08d93844b5413d2
size 795741

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:ede244d383058bd7e3a2568dcf782f1f50f9f653f25c11b4ee6e783ad32dbc26
size 4369310
oid sha256:7547f1ffc4d84b896a32e29c84eee1e0d145d3b33096241229d904a0c8324e6d
size 4369203

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:3eb3e85a60114ee0e0712323d6514bea1da9ee08ab150461dc2db38efd889415
size 713301
oid sha256:897afd64cd2beb5f6c7c0e767bcce79b244cb38100d43f8d1853abfd32610b9b
size 713302

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:c2f31887e949f2ce6fb0decc1008099eb6ff36063820460c29c9223525972005
size 3029734
oid sha256:0e13259a833631a57b2b284111e8462a8c7a79f60d2e17ce10536ce9a0ea0eb3
size 3029292

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:65e533e13a87a45f708c95d15ec6d490eff42f08e1f546a3ab36b79b358b5b2c
size 788450
oid sha256:66693fb26c5eed932bfb056e8cba8b766a65c0075eb3bd226559b4c728681637
size 788401

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:bb3eb2ed598cda9a25f73e10c7d9bea7c5e2db7c7f3ce57b0e520fcbcd6da97c
size 1655889
oid sha256:8f7ddf5e5d357748dad76fcc8d951d2cc6cf8e94f5ec7520373d7f45bfa0328e
size 1656083

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:70b830bf375e8431eeff2c2e991fa938d5908e83870fa66d7c7565d1c5440743
size 1077462
oid sha256:4292956036d58e7223fe18d25e28fe7ed2d1e19fa45a544b2aff02d7e22747b6
size 1077299

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:f8a6f153750217c7fe3d3cfee135ea1efef38c12230956591f4c6c4e141f9930
size 4288844
oid sha256:8e109fc3bea0f4dc468881a267b4cbb52b5539715324b665c52a255be578c87d
size 4289000

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:103f8c7664ad42ef5a9e4d564eede67b641548ec2107a376b0d07838d4cb7ede
size 727204
oid sha256:79b2aab63589ce9c77312f1933c2ff27913951b50d7d0148e85a4a81d84ac5de
size 727102

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:dc8943d39f7b04ad335e6fc9bd09199a41ba4b13a394d402a14179880559e099
size 3163300
oid sha256:c9da034f1fbd68616bdfc14e982b802169d30ce418a8f357e38958c51f7f07a2
size 3164238

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:90acd695117cec2c46552139409effcf7cbdd52f70b02f343affe2f4d4ec2ace
size 798379
oid sha256:b267ad898bd5b98bd70b95a277e28e5ea234171f69745081665ce32fd3f1d8d7
size 798364

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:c2ad9342b52b53acdf35e7bc603c223de6ada8d1b63b9bad79fc1ec645e6e4db
size 4392641
oid sha256:bcc33b5870060b94930638e36511f6b8f52adb5891fd8eafedefda6842685e66
size 4393037

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:d04e9c845099cea53d65ff12c8a73ed0e16925036246120b67be30bb971c6c55
size 716608
oid sha256:2138d225a4658a8ff4dc82e5e499f6bc034b098918d5d6cc30cba8ff82f09bff
size 716603

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:88b77db5be43d6a6afdb1615bb8d3a11404e827f82890ed6ba3da679e1b721ad
size 3050030
oid sha256:49704d56addddc83e45338a66fd1afeca9708f40f8bdcc2fd4e2e47a14dde298
size 3050746

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:141a4e300906a00559c99a505821414c8d1a9faef99ad98c753babb00a2742d0
size 816620
oid sha256:0af351c6cd75a19951fae8bda2390631590ad1d912f54ad4c489032b8ca99a1e
size 816843

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:8f2f4c92984e0abe68e5a87e16ffffd8a3c3e90c310c98acf4ad0c33f8ff1aab
size 1722544
oid sha256:f8fb36a1148ce66775dab3e2fca7a6e3a7319da8745b3786bb6dfa94928f6a45
size 1722661

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:6b748169342c1b545d1a786952f38f4a263e4a106327bd53c269509106a2693b
size 1116378
oid sha256:76f318a4869bb0495bf2967b3d5f848d8bc8dbea6e66204083bafea5af2c3800
size 1117171

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:c504e322fa6185e71f5cf2fb3c2c6ecd5366528d4c18e58aa9b26eb257c1f2ac
size 4449076
oid sha256:a4c1aaab9d342d879ced58b58e0ddca000e8488bde865d8908473bbbebda865f
size 4449375

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:914c44681efd36e8ea26b2f94d2f8df3ee0a839071dc0359572fab6fcff6dcf0
size 750150
oid sha256:1a18bf5daafdfdfc77691fb626d9f342328f0ab15de76b27a43c7a9cf3714ad8
size 749938

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:bc3f7452d2c22625cb6741eb33ad2e81ea700c3e1498b39ee764f02ce0c4f2ca
size 3276845
oid sha256:c73f62dc454f67035320a1c744de008b07f31c7020bd74d7c25b9287cb77c9f8
size 3277276

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:9834fe53ec7b1462f4c71c70185a3ad63b4a504940ac6c16b82272a19395bf46
size 823598
oid sha256:9b8559da3a213d054a0c02b8c9df688c30b68c46999b4c785d53568626169507
size 823821

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:89aa648c97c4dca466ac6aff05343510c5cea4181604fefb71ca1800d3fa3a51
size 4552046
oid sha256:2ba9506ec64118b55882ada64591d2a35c81dcaff48c4f34e4745a7ad68d04dc
size 4552630

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:26a1cdc8b3bf650b6b91dddbee0af32be6f1d5b794e4d8175caef337d7c12956
size 738535
oid sha256:18552d9f929c2738e87da62caa42dd8541869fba5b610a1780fa04e10d98ccfa
size 738431

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:c21a832531abbf8ea052c65596219d1d8c71aa096f7799373135ea59fea01fa1
size 3156483
oid sha256:24f74dc9c7a8c4402d03279a9c04be2c20d7e690329fe07b74be7439861af015
size 3156240

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:2c29b2339f6bda0bb0215e1ed6e7d7e567a7b9ccba8d98a83fcd7b3bbbaf5c08
size 982772
oid sha256:db68c27beac51220e6ff42e1440767fb9414432fd76b0af272814bf9f65ce47c
size 982795

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:1e8df117ee180443d3f7703b0d76b7d50e18d9eabf34b686640ff28170cf7f0b
size 1720114
oid sha256:d9e7c2a595f56a1af96e07c7a3f8ba298b6b9d93a3e3cf71fce20dd3bc567217
size 1719992

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:892dd8e065c6c51c7da9d2988019d6376f13795ba635f4c2eae5ecb145b84f81
size 1344966
oid sha256:0e409535b98a5aabe87444b5c1b9841fe94c239e5df0faf6371d14b4dfbd22b8
size 1344560

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:107fca713eb88ca1e02e9051653af1e498582bba3a5ef43d237431d71954ae0b
size 5078794
oid sha256:aece7330d9c1b8f23fd867706e912a4655c346f28945148743d9a958dff3ab2c
size 5079040

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:387fdff9c648340b96cbbc5fe02eb5d8b35804f74c1cbd1a78d39ab1d924f0f8
size 886758
oid sha256:57ed5a8bc5bc5792737be8826f6237dbf7c1d1fe48a05d88afd90c7074611287
size 886422

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:3b7fd608dccd74d6e5a262f971ff6fc5d7830b32a702fc29d38c7b4f1fae21e8
size 3685604
oid sha256:9ff09b9291c2befa4f01053f825a0661979c65ae1faf634d614cb3ecb3a10e51
size 3685174

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:22d5ebf16ab4ad10ac8ad4a8beae15bff7715bc41199c1b81641b506fd3599c1
size 985688
oid sha256:809fb6aea453bf9e7c5764330deb85ab2117d0739f635aa5f484853d75e687db
size 985552

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:84ef43d216ab27eff31e46d5542506032b004103204febf3a01af68effead3e5
size 5225831
oid sha256:c3b239cdcb1611c6f1ca03289a297d41accdb42b6d5f4ee6f16605cbf02d15a9
size 5226453

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:1e4f735513be0e36e80ea06329abc163a0de0c22b0829eb29f11591e61b05199
size 873445
oid sha256:24ebb505e7064579ccad279baab97699a668db2b89e259b60eb373a9c0fa1700
size 873475

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:839a6e4a75acd6001588522257f9b72edd2442d7599e743bc4ed6dd0f3aa15b7
size 3566603
oid sha256:c83c2922e91460b1352bc165d338eaea38b89244e5775c05887050f70a2f3eea
size 3566862

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:f3fb784bb727175d20ccd484ac55f16f77a234d313bb62d6f8e79d96f4feef6f
size 625529
oid sha256:6d0d24ec3aa3c741ff5131a3a721f8404bba8316d2286971deac68a4453a23e4
size 625660

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:a45250713d7ce98ed2b6951eae19e2c7042e95f1bf5576425ea4ec39c17c8606
size 1268557
oid sha256:f6d6cb11f9741d745b48b7996ccdf5c276fa335c6ee5cf4062be4f8ab1edd603
size 1268315

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:b233f055ade9dbcb5e5dedacefd16721f396068689e5fde9e2070959814ee4fb
size 867542
oid sha256:df8a1efe5a23b293a75caef2d084ac617665dbb2b4720b34c3f0679ebc991c33
size 867776

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:6488e29ef624aa979cd1d1e6b1dee16fd7380385ce726da42150dfcb04beefe3
size 3406070
oid sha256:83636468b05816471e8af69296bef9019f8cf2a6524148187471b570a839e27f
size 3406406

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:f7b74185f37aed277a087225ebcc52793255c15f5e6ec6f57162b54931db7437
size 582833
oid sha256:91780a827fcd4a590a9c76e10a838c981c31b44fbd29a9d937bc2dda1b9812ee
size 582793

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:2305e207659b8ad4733658fae44f25a7bd3b2c3b81f3d184b42c5706e20f5c8d
size 2462670
oid sha256:d7bfb51b2a18358b80dc2eac41dbaa4bd6072cc6bba0258ea163e9f614e9bba4
size 2462528

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:2fe6c78042e1c856e8070e979905d502f585d7beb3a4a89f7b3dd4e1ec3fe0ff
size 635356
oid sha256:9f07f713f33e54546cb3cbfa2ca4853aa7fff130bbc806f597ac726a4037000c
size 635304

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:a5874beee2c3ac09bea3133cbb547e6ca4e7c06716674dd20ba72b17e92aec4c
size 3375128
oid sha256:d7f8ec6445f23ed9ac330965824fb8cfaa5b971a77ec5d2f82d7244457efe605
size 3375456

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:a64681c493a0d0e461ea071f8d9879c0594caaad53a8bd020045f6a81c7702eb
size 574684
oid sha256:fcab0ff9f4c7e9e058f30c51c7f329d2c77faffdf51b1c9330f80f9716d38bcb
size 574719

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:8300db18565b0b4ac4c831e7bbc73e4dcad74c151aa55640868be9652b95de8e
size 2352513
oid sha256:2a3a90d55b289f8a31e3773bdadfe8ce5e1c7e1d5137879c824b33abb7d64735
size 2352160

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:aae5501eca68a7db9c4ada0803b20edc0f2bc97c409b9b6d741374931825a1d2
size 946632
oid sha256:98ced96da80d460b175716c34ef61ca292a489470ee9ab0f7b12af978159f7b5
size 946559

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:7834302f9ca2ad872f9c281f2f9ef1256f54e8aa22b81d41ffa3d843ee3b39f4
size 1840638
oid sha256:d715202b1eb03349ce22fd350329f684427a22028423dd52b74c6a6411996cd2
size 1840187

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:e93a70716a95cef165f328d346812f9e3bf7a361575be3da3099a045fa993dc7
size 1274457
oid sha256:bfa15f6f82bb3d685e4f3254bd2c683c626fd68fe6a002804a4c7d0aa0f159d3
size 1274462

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:89a36596f58b336d1e0297d9e575bc134e71dba8c270db217bcda1bda04ddde6
size 5053347
oid sha256:17500ef127381144f51ba99571e823b3433dcb5b06df3bf89335b9aa69744e0e
size 5055486

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:54963b75521408dbdf2bb9b63bcf3082be985af3f73f6f259548459d9b334292
size 874388
oid sha256:3559fb227e1f5699654345a28aa4abd2ea694d0c072f1fbf104c9f2a8d1eac3d
size 874060

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:be250748b8a9838486aff12eb46ed089efe10017b811ec1e567539c8d5b7efb6
size 3778066
oid sha256:7367d8f3f930b625c824c9c4ab544e5940b01697a03343be3f15e397b828230f
size 3777619

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:8c3bb393ec8ea28025fff80dcf145872a681c3def80da49a655e7dd0a024af13
size 953874
oid sha256:12851169e7f9abc94e19e812eeef634ea6cee2abd0ec0cfc6144b475b8762017
size 953773

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:5658f26275903815f1d61269cf5da26d0078eed93d31c1d02211c00ad92dda60
size 5273898
oid sha256:fc2e688b04e60d25aaf384f6d67228f5dea2d49258ef6788a013a0e8a73f533e
size 5272981

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:9019a3fbb25b4af638a215d27fd84657e61364b8f0069442887b8a25d898ed8e
size 861895
oid sha256:a10763dade5b838424954fdcff2ca2ac6eb658827fca23b2a1c54749f751c81e
size 861794

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:a0d559d9ca2002d00184618648da232887e6b7106ae01f2440cba76afed06271
size 3657860
oid sha256:90216cb5a0606c640385e82799dea3f7b1fe31b719702b9971ff8423e61febe9
size 3658142