Merge branch 'main' into 6458-larger-runners
This commit is contained in:
Binary file not shown.
|
After Width: | Height: | Size: 56 KiB |
Binary file not shown.
|
Before Width: | Height: | Size: 17 KiB |
Binary file not shown.
|
After Width: | Height: | Size: 105 KiB |
@@ -354,7 +354,7 @@ runs:
|
||||
|
||||
#### `runs.steps[*].with`
|
||||
|
||||
**Optional** A `map` of the input parameters defined by the action. Each input parameter is a key/value pair. Input parameters are set as environment variables. The variable is prefixed with INPUT_ and converted to upper case.
|
||||
**Optional** A `map` of the input parameters defined by the action. Each input parameter is a key/value pair. For more information, see [Example: Specifying inputs](#example-specifying-inputs).
|
||||
|
||||
```yaml
|
||||
runs:
|
||||
|
||||
@@ -38,9 +38,10 @@ You can add the action you've created to {% data variables.product.prodname_mark
|
||||
To draft a new release and publish the action to {% data variables.product.prodname_marketplace %}, follow these instructions:
|
||||
|
||||
{% data reusables.repositories.navigate-to-repo %}
|
||||
1. When a repository contains an action metadata file (`action.yml` or `action.yaml`), you'll see a banner to publish the action to {% data variables.product.prodname_marketplace %}. Click **Draft a release**.
|
||||

|
||||
1. Select **Publish this action to the {% data variables.product.prodname_marketplace %}**. If you can't select the **Publish this action to the {% data variables.product.prodname_marketplace %}** checkbox, you'll need to read and accept the {% data variables.product.prodname_marketplace %} agreement first.
|
||||
1. Navigate to the action metadata file in your repository (`action.yml` or `action.yaml`), and you'll see a banner to publish the action to {% data variables.product.prodname_marketplace %}. Click **Draft a release**.
|
||||
|
||||

|
||||
1. Under "Release Action", select the checkbox to publish the action to the {% data variables.product.prodname_marketplace %}. If you can't select the checkbox, you must first click the link to read and accept the {% data variables.product.prodname_marketplace %} Developer Agreement.
|
||||

|
||||
1. If the labels in your metadata file contain any problems, you will see an error message.
|
||||

|
||||
|
||||
@@ -87,7 +87,7 @@ The following table indicates where each context and special function can be use
|
||||
| <code>jobs.<job_id>.name</code> | <code>github, needs, strategy, matrix, inputs</code> | |
|
||||
| <code>jobs.<job_id>.outputs.<output_id></code> | <code>github, needs, strategy, matrix, job, runner, env, secrets, steps, inputs</code> | |
|
||||
| <code>jobs.<job_id>.runs-on</code> | <code>github, needs, strategy, matrix, inputs</code> | |
|
||||
| <code>jobs.<job_id>.secrets.<secrets_id></code> | <code>github, needs, secrets{% ifversion actions-unified-inputs %}, inputs{% endif %}</code> | |
|
||||
| <code>jobs.<job_id>.secrets.<secrets_id></code> | <code>github, needs,{% ifversion actions-reusable-workflow-matrix %} strategy, matrix,{% endif %} secrets{% ifversion actions-unified-inputs %}, inputs{% endif %}</code> | |
|
||||
| <code>jobs.<job_id>.services</code> | <code>github, needs, strategy, matrix, inputs</code> | |
|
||||
| <code>jobs.<job_id>.services.<service_id>.credentials</code> | <code>github, needs, strategy, matrix, env, secrets, inputs</code> | |
|
||||
| <code>jobs.<job_id>.services.<service_id>.env.<env_id></code> | <code>github, needs, strategy, matrix, job, runner, env, secrets, inputs</code> | |
|
||||
@@ -101,7 +101,7 @@ The following table indicates where each context and special function can be use
|
||||
| <code>jobs.<job_id>.steps.working-directory</code> | <code>github, needs, strategy, matrix, job, runner, env, secrets, steps, inputs</code> | <code>hashFiles</code> |
|
||||
| <code>jobs.<job_id>.strategy</code> | <code>github, needs, inputs</code> | |
|
||||
| <code>jobs.<job_id>.timeout-minutes</code> | <code>github, needs, strategy, matrix, inputs</code> | |
|
||||
| <code>jobs.<job_id>.with.<with_id></code> | <code>github, needs{% ifversion actions-unified-inputs %}, inputs{% endif %}</code> | |
|
||||
| <code>jobs.<job_id>.with.<with_id></code> | <code>github, needs{% ifversion actions-reusable-workflow-matrix %}, strategy, matrix{% endif %}{% ifversion actions-unified-inputs %}, inputs{% endif %}</code> | |
|
||||
| <code>on.workflow_call.inputs.<inputs_id>.default</code> | <code>github{% ifversion actions-unified-inputs %}, inputs{% endif %}</code> | |
|
||||
| <code>on.workflow_call.outputs.<output_id>.value</code> | <code>github, jobs, inputs</code> | |
|
||||
{% else %}
|
||||
|
||||
@@ -812,6 +812,8 @@ Runs your workflow when activity on a pull request in the workflow's repository
|
||||
|
||||
This event runs in the context of the base of the pull request, rather than in the context of the merge commit, as the `pull_request` event does. This prevents execution of unsafe code from the head of the pull request that could alter your repository or steal any secrets you use in your workflow. This event allows your workflow to do things like label or comment on pull requests from forks. Avoid using this event if you need to build or run code from the pull request.
|
||||
|
||||
To ensure repository security, branches with names that match certain patterns (such as those which look similar to SHAs) may not trigger workflows with the `pull_request_target` event.
|
||||
|
||||
{% warning %}
|
||||
|
||||
**Warning:** For workflows that are triggered by the `pull_request_target` event, the `GITHUB_TOKEN` is granted read/write repository permission unless the `permissions` key is specified and the workflow can access secrets, even when it is triggered from a fork. Although the workflow runs in the context of the base of the pull request, you should make sure that you do not check out, build, or run untrusted code from the pull request with this event. Additionally, any caches share the same scope as the base branch. To help prevent cache poisoning, you should not save the cache if there is a possibility that the cache contents were altered. For more information, see "[Keeping your GitHub Actions and workflows secure: Preventing pwn requests](https://securitylab.github.com/research/github-actions-preventing-pwn-requests)" on the GitHub Security Lab website.
|
||||
|
||||
@@ -39,7 +39,7 @@ You can view the reused workflows referenced in your {% data variables.product.p
|
||||
|
||||
### Reusable workflows and starter workflows
|
||||
|
||||
Starter workflows allow everyone in your organization who has permission to create workflows to do so more quickly and easily. When people create a new workflow, they can choose a starter workflow and some or all of the work of writing the workflow will be done for them. Within a starter workflow, you can also reference reusable workflows to make it easy for people to benefit from reusing centrally managed workflow code. If you use a tag or branch name when referencing the reusable workflow, you can ensure that everyone who reuses that workflow will always be using the same YAML code. However, if you reference a reusable workflow by a tag or branch, be sure that you can trust that version of the workflow. For more information, see "[Security hardening for {% data variables.product.prodname_actions %}](/actions/security-guides/security-hardening-for-github-actions#reusing-third-party-workflows)."
|
||||
Starter workflows allow everyone in your organization who has permission to create workflows to do so more quickly and easily. When people create a new workflow, they can choose a starter workflow and some or all of the work of writing the workflow will be done for them. Within a starter workflow, you can also reference reusable workflows to make it easy for people to benefit from reusing centrally managed workflow code. If you use a commit SHA when referencing the reusable workflow, you can ensure that everyone who reuses that workflow will always be using the same YAML code. However, if you reference a reusable workflow by a tag or branch, be sure that you can trust that version of the workflow. For more information, see "[Security hardening for {% data variables.product.prodname_actions %}](/actions/security-guides/security-hardening-for-github-actions#reusing-third-party-workflows)."
|
||||
|
||||
For more information, see "[Creating starter workflows for your organization](/actions/learn-github-actions/creating-starter-workflows-for-your-organization)."
|
||||
|
||||
@@ -69,10 +69,14 @@ Called workflows that are owned by the same user or organization{% ifversion ghe
|
||||
|
||||
## Limitations
|
||||
|
||||
{% ifversion nested-reusable-workflow %}
|
||||
* You can connect up to four levels of workflows. For more information, see "[Calling a nested reusable workflow](#calling-a-nested-reusable-workflow)."
|
||||
{% else %}
|
||||
* Reusable workflows can't call other reusable workflows.
|
||||
{% endif %}
|
||||
* Reusable workflows stored within a private repository can only be used by workflows within the same repository.
|
||||
* Any environment variables set in an `env` context defined at the workflow level in the caller workflow are not propagated to the called workflow. For more information about the `env` context, see "[Context and expression syntax for GitHub Actions](/actions/reference/context-and-expression-syntax-for-github-actions#env-context)."
|
||||
* The `strategy` property is not supported in any job that calls a reusable workflow.
|
||||
* Any environment variables set in an `env` context defined at the workflow level in the caller workflow are not propagated to the called workflow. For more information about the `env` context, see "[Context and expression syntax for GitHub Actions](/actions/reference/context-and-expression-syntax-for-github-actions#env-context)."{% ifversion actions-reusable-workflow-matrix %}{% else %}
|
||||
* The `strategy` property is not supported in any job that calls a reusable workflow.{% endif %}
|
||||
|
||||
## Creating a reusable workflow
|
||||
|
||||
@@ -105,7 +109,13 @@ You can define inputs and secrets, which can be passed from the caller workflow
|
||||
{% endraw %}
|
||||
For details of the syntax for defining inputs and secrets, see [`on.workflow_call.inputs`](/actions/reference/workflow-syntax-for-github-actions#onworkflow_callinputs) and [`on.workflow_call.secrets`](/actions/reference/workflow-syntax-for-github-actions#onworkflow_callsecrets).
|
||||
{% ifversion actions-inherit-secrets-reusable-workflows %}
|
||||
1. In the reusable workflow, reference the input or secret that you defined in the `on` key in the previous step. If the secrets are inherited using `secrets: inherit`, you can reference them even if they are not defined in the `on` key.
|
||||
1. In the reusable workflow, reference the input or secret that you defined in the `on` key in the previous step.
|
||||
|
||||
{% note %}
|
||||
|
||||
**Note**: If the secrets are inherited by using `secrets: inherit` in the calling workflow, you can reference them even if they are not explicitly defined in the `on` key. For more information, see "[Workflow syntax for GitHub Actions](/actions/using-workflows/workflow-syntax-for-github-actions#jobsjob_idsecretsinherit)."
|
||||
|
||||
{% endnote %}
|
||||
{%- else %}
|
||||
1. In the reusable workflow, reference the input or secret that you defined in the `on` key in the previous step.
|
||||
{%- endif %}
|
||||
@@ -164,7 +174,36 @@ jobs:
|
||||
token: ${{ secrets.token }}
|
||||
```
|
||||
{% endraw %}
|
||||
{% ifversion actions-reusable-workflow-matrix %}
|
||||
## Using a matrix strategy with a reusable workflow
|
||||
|
||||
Jobs using the matrix strategy can call a reusable workflow.
|
||||
|
||||
A matrix strategy lets you use variables in a single job definition to automatically create multiple job runs that are based on the combinations of the variables. For example, you can use a matrix strategy to pass different inputs to a reusable workflow. For more information about matrices, see "[Using a matrix for your jobs](/actions/using-jobs/using-a-matrix-for-your-jobs)."
|
||||
|
||||
### Example matrix strategy with a reusable workflow
|
||||
|
||||
This workflow file references the matrix context by defining the variable `target` with the values `[dev, stage, prod]`. The workflow will run three jobs, one for each value in the variable. The workflow file also calls a reusable workflow by using the `uses` keyword.
|
||||
|
||||
{% raw %}
|
||||
```yaml{:copy}
|
||||
name: Reusable workflow with matrix strategy
|
||||
|
||||
on:
|
||||
push:
|
||||
|
||||
jobs:
|
||||
ReuseableMatrixJobForDeployment:
|
||||
strategy:
|
||||
matrix:
|
||||
target: [dev, stage, prod]
|
||||
uses: octocat/octo-repo/.github/workflows/deployment.yml@main
|
||||
with:
|
||||
target: ${{ matrix.target }}
|
||||
```
|
||||
{% endraw %}
|
||||
|
||||
{% endif %}
|
||||
## Calling a reusable workflow
|
||||
|
||||
You call a reusable workflow by using the `uses` keyword. Unlike when you are using actions within a workflow, you call reusable workflows directly within a job, and not from within job steps.
|
||||
@@ -234,9 +273,62 @@ jobs:
|
||||
```
|
||||
{% endraw %}
|
||||
|
||||
{% ifversion nested-reusable-workflow %}
|
||||
## Nesting reusable workflows
|
||||
|
||||
You can connect a maximum of four levels of workflows - that is, the top-level caller workflow and up to three levels of reusable workflows. For example: _caller-workflow.yml_ → _called-workflow-1.yml_ → _called-workflow-2.yml_ → _called-workflow-3.yml_. Loops in the workflow tree are not permitted.
|
||||
|
||||
From within a reusable workflow you can call another reusable workflow.
|
||||
|
||||
{% raw %}
|
||||
```yaml{:copy}
|
||||
name: Reusable workflow
|
||||
|
||||
on:
|
||||
workflow_call:
|
||||
|
||||
jobs:
|
||||
call-another-reusable:
|
||||
uses: octo-org/example-repo/.github/workflows/another-reusable.yml@v1
|
||||
```
|
||||
{% endraw %}
|
||||
|
||||
### Passing secrets to nested workflows
|
||||
|
||||
You can use `jobs.<job_id>.secrets` in a calling workflow to pass named secrets to a directly called workflow. Alternatively, you can use `jobs.<job_id>.secrets.inherit` to pass all of the calling workflow's secrets to a directly called workflow. For more information, see the section "[Passing inputs and secrets to a reusable workflow](/actions/using-workflows/reusing-workflows#passing-inputs-and-secrets-to-a-reusable-workflow)" above, and the reference article "[Workflow syntax for GitHub Actions](/actions/using-workflows/workflow-syntax-for-github-actions#jobsjob_idsecretsinherit)." Secrets are only passed to directly called workflow, so in the workflow chain A > B > C, workflow C will only receive secrets from A if they have been passed from A to B, and then from B to C.
|
||||
|
||||
In the following example, workflow A passes all of its secrets to workflow B, by using the `inherit` keyword, but workflow B only passes one secret to workflow C. Any of the other secrets passed to workflow B are not available to workflow C.
|
||||
|
||||
{% raw %}
|
||||
```yaml
|
||||
jobs:
|
||||
workflowA-calls-workflowB:
|
||||
uses: octo-org/example-repo/.github/workflows/B.yml@main
|
||||
secrets: inherit # pass all secrets
|
||||
```
|
||||
|
||||
```yaml
|
||||
jobs:
|
||||
workflowB-calls-workflowC:
|
||||
uses: different-org/example-repo/.github/workflows/C.yml@main
|
||||
secrets:
|
||||
envPAT: ${{ secrets.envPAT }} # pass just this secret
|
||||
```
|
||||
{% endraw %}
|
||||
|
||||
### Access and permissions
|
||||
|
||||
A workflow that contains nested reusable workflows will fail if any of the nested workflows is inaccessible to the initial caller workflow. For more information, see "[Access to reusable workflows](/actions/using-workflows/reusing-workflows#access-to-reusable-workflows)."
|
||||
|
||||
`GITHUB_TOKEN` permissions can only be the same or more restrictive in nested workflows. For example, in the workflow chain A > B > C, if workflow A has `package: read` token permission, then B and C cannot have `package: write` permission. For more information, see "[Automatic token authentication](/actions/security-guides/automatic-token-authentication)."
|
||||
{% endif %}
|
||||
|
||||
## Using outputs from a reusable workflow
|
||||
|
||||
A reusable workflow may generate data that you want to use in the caller workflow. To use these outputs, you must specify them as the outputs of the reusable workflow.
|
||||
A reusable workflow may generate data that you want to use in the caller workflow. To use these outputs, you must specify them as the outputs of the reusable workflow.{% ifversion actions-reusable-workflow-matrix %}
|
||||
|
||||
If a reusable workflow that sets an output is executed with a matrix strategy, the output will be the output set by the last successful completing reusable workflow of the matrix which actually sets a value.
|
||||
That means if the last successful completing reusable workflow sets an empty string for its output, and the second last successful completing reusable workflow sets an actual value for its output, the output will contain the value of the second last completing reusable workflow.{% endif %}
|
||||
|
||||
The following reusable workflow has a single job containing two steps. In each of these steps we set a single word as the output: "hello" and "world." In the `outputs` section of the job, we map these step outputs to job outputs called: `output1` and `output2`. In the `on.workflow_call.outputs` section we then define two outputs for the workflow itself, one called `firstword` which we map to `output1`, and one called `secondword` which we map to `output2`.
|
||||
|
||||
|
||||
@@ -1037,15 +1037,23 @@ You can use special characters in path, branch, and tag filters.
|
||||
- `[]` Matches one character listed in the brackets or included in ranges. Ranges can only include `a-z`, `A-Z`, and `0-9`. For example, the range`[0-9a-z]` matches any digit or lowercase letter. For example, `[CB]at` matches `Cat` or `Bat` and `[1-2]00` matches `100` and `200`.
|
||||
- `!`: At the start of a pattern makes it negate previous positive patterns. It has no special meaning if not the first character.
|
||||
|
||||
The characters `*`, `[`, and `!` are special characters in YAML. If you start a pattern with `*`, `[`, or `!`, you must enclose the pattern in quotes.
|
||||
The characters `*`, `[`, and `!` are special characters in YAML. If you start a pattern with `*`, `[`, or `!`, you must enclose the pattern in quotes. Also, if you use a [flow sequence](https://yaml.org/spec/1.2.2/#flow-sequences) with a pattern containing `[` and/or `]`, the pattern must be enclosed in quotes.
|
||||
|
||||
```yaml
|
||||
# Valid
|
||||
- '**/README.md'
|
||||
branches:
|
||||
- '**/README.md'
|
||||
|
||||
# Invalid - creates a parse error that
|
||||
# prevents your workflow from running.
|
||||
- **/README.md
|
||||
branches:
|
||||
- **/README.md
|
||||
|
||||
# Valid
|
||||
branches: [ main, 'release/v[0-9].[0-9]' ]
|
||||
|
||||
# Invalid - creates a parse error
|
||||
branches: [ main, release/v[0-9].[0-9] ]
|
||||
```
|
||||
|
||||
For more information about branch, tag, and path filter syntax, see "[`on.<push>.<branches|tags>`](#onpushbranchestagsbranches-ignoretags-ignore)", "[`on.<pull_request>.<branches|tags>`](#onpull_requestpull_request_targetbranchesbranches-ignore)", and "[`on.<push|pull_request>.paths`](#onpushpull_requestpull_request_targetpathspaths-ignore)."
|
||||
|
||||
@@ -19,7 +19,7 @@ shortTitle: Create HA replica
|
||||
## Creating a high availability replica
|
||||
|
||||
1. Set up a new {% data variables.product.prodname_ghe_server %} appliance on your desired platform. The replica appliance should mirror the primary appliance's CPU, RAM, and storage settings. We recommend that you install the replica appliance in an independent environment. The underlying hardware, software, and network components should be isolated from those of the primary appliance. If you are a using a cloud provider, use a separate region or zone. For more information, see ["Setting up a {% data variables.product.prodname_ghe_server %} instance"](/enterprise/admin/guides/installation/setting-up-a-github-enterprise-server-instance).
|
||||
1. Ensure that both the primary appliance and the new replica appliance can communicate with each other over ports 122/TCP and 1194/UDP. For more information, see "[Network ports](/admin/configuration/configuring-network-settings/network-ports#administrative-ports)."
|
||||
1. Ensure that the new appliance can communicate with all other appliances in this high availability environment over ports 122/TCP and 1194/UDP. For more information, see "[Network ports](/admin/configuration/configuring-network-settings/network-ports#administrative-ports)."
|
||||
1. In a browser, navigate to the new replica appliance's IP address and upload your {% data variables.product.prodname_enterprise %} license.
|
||||
{% data reusables.enterprise_installation.replica-steps %}
|
||||
1. Connect to the replica appliance's IP address using SSH.
|
||||
|
||||
@@ -37,21 +37,40 @@ You can enable automatic security updates for any repository that uses {% data v
|
||||
|
||||
{% data variables.product.product_name %} generates {% data variables.product.prodname_dependabot_alerts %} when we detect that your codebase is using dependencies with known security risks. For repositories where {% data variables.product.prodname_dependabot_security_updates %} are enabled, when {% data variables.product.product_name %} detects a vulnerable dependency in the default branch, {% data variables.product.prodname_dependabot %} creates a pull request to fix it. The pull request will upgrade the dependency to the minimum possible secure version needed to avoid the vulnerability.
|
||||
|
||||
{% ifversion dependabot-most-important-sort-option %} By default, {% data variables.product.prodname_dependabot_alerts %} are displayed in the {% data variables.product.prodname_dependabot_alerts %} tab in order of importance, but you can sort alerts by other criteria. {% endif %}{% ifversion fpt or ghec or ghes > 3.4 or ghae-issue-5638 %}You can sort and filter {% data variables.product.prodname_dependabot_alerts %} with the dropdown menus in the {% data variables.product.prodname_dependabot_alerts %} tab or by typing filters as `key:value` pairs into the search bar. The available filters are repository (for example, `repo:my-repository`), package (for example, `package:django`), ecosystem (for example, `ecosystem:npm`), manifest (for example, `manifest:webwolf/pom.xml`), state (for example, `is:open`), and whether an advisory has a patch (for example, `has: patch`).{% ifversion dependabot-alerts-development-label %} You can also filter alerts with dependency scope data using `scope`, for example: `scope:development` or `scope:runtime`. With `scope:development`, the list of alerts will only show dependencies used during development, not production.{% endif %}
|
||||
|
||||
Each {% data variables.product.prodname_dependabot %} alert has a unique numeric identifier and the {% data variables.product.prodname_dependabot_alerts %} tab lists an alert for every detected vulnerability. Legacy {% data variables.product.prodname_dependabot_alerts %} grouped vulnerabilities by dependency and generated a single alert per dependency. If you navigate to a legacy {% data variables.product.prodname_dependabot %} alert, you will be redirected to a {% data variables.product.prodname_dependabot_alerts %} tab filtered for that package. {% endif %}
|
||||
|
||||
{% ifversion fpt or ghec or ghes > 3.4 or ghae-issue-5638 %}
|
||||
You can filter and sort {% data variables.product.prodname_dependabot_alerts %} using a variety of filters and sort options available on the user interface. For more information, see "[Prioritizing {% data variables.product.prodname_dependabot_alerts %}](#prioritizing-across--data-variablesproductprodname_dependabot_alerts-)" below.
|
||||
|
||||
## Prioritizing {% data variables.product.prodname_dependabot_alerts %}
|
||||
|
||||
{% data variables.product.company_short %} helps you prioritize fixing {% data variables.product.prodname_dependabot_alerts %}. {% ifversion dependabot-most-important-sort-option %} By default, {% data variables.product.prodname_dependabot_alerts %} are sorted by importance. The "Most important" sort order helps you prioritize which {% data variables.product.prodname_dependabot_alerts %} to focus on first. Alerts are ranked based on their potential impact, actionability, and relevance. Our prioritization calculation is constantly being improved and includes factors like CVSS score, dependency scope, and whether vulnerable function calls are found for the alert.
|
||||
|
||||

|
||||
{% endif %}
|
||||
|
||||
{% data reusables.dependabot.dependabot-alerts-filters %}
|
||||
|
||||
In addition to the filters available via the search bar, you can sort and filter {% data variables.product.prodname_dependabot_alerts %} using the dropdown menus at the top of the alert list. The search bar also allows for full text searching of alerts and related security advisories. You can search for part of a security advisory name or description to return the alerts in your repository that relate to that security advisory. For example, searching for `yaml.load() API could execute arbitrary code` will return {% data variables.product.prodname_dependabot_alerts %} linked to "[PyYAML insecurely deserializes YAML strings leading to arbitrary code execution](https://github.com/advisories/GHSA-rprw-h62v-c2w7)" as the search string appears in the advisory description.
|
||||
|
||||
{% endif %}
|
||||
|
||||
{% ifversion dependabot-bulk-alerts %}
|
||||
{% elsif ghes = 3.5 %}
|
||||
You can select a filter in a dropdown menu at the top of the list, then click the filter that you would like to apply.
|
||||
{% endif %}
|
||||
|
||||
{% ifversion dependabot-alerts-development-label %}
|
||||
## Supported ecosystems and manifests for dependency scope
|
||||
|
||||
<!-- TODO: for now we'd have this table and heading as they are, but we're planning to replace this with at a later date a new heading containing all the available filters in one or more tables -->
|
||||
{% data reusables.dependabot.dependabot-alerts-dependency-scope %}
|
||||
|
||||
Alerts for packages listed as development dependencies are marked with the `Development` label on the {% data variables.product.prodname_dependabot_alerts %} page and are also available for filtering via the `scope` filter.
|
||||
|
||||

|
||||
|
||||
The alert details page of alerts on development-scoped packages shows a "Tags" section containing a `Development` label.
|
||||
|
||||

|
||||
|
||||
{% endif %}
|
||||
@@ -92,20 +111,7 @@ For more information, see "[Reviewing and fixing alerts](#reviewing-and-fixing-a
|
||||
{% data reusables.repositories.navigate-to-repo %}
|
||||
{% data reusables.repositories.sidebar-security %}
|
||||
{% data reusables.repositories.sidebar-dependabot-alerts %}
|
||||
1. Optionally, to filter alerts, select the **Repository**, **Package**, **Ecosystem**, or **Manifest** dropdown menu then click the filter that you would like to apply. You can also type filters into the search bar. For example, `ecosystem:npm`{% ifversion ghes < 3.7 or ghae-issue-5638 %} or `has:patch`{% endif %}{% ifversion dependabot-alerts-development-label %}, `has:patch` or `scope:development`{% endif %}. To sort alerts, select the **Sort** dropdown menu then click the option that you would like to sort by, or type `sort:` into the search bar and choose an option from the suggestions (for example, `sort:newest`).
|
||||
|
||||
{% ifversion dependabot-most-important-sort-option %}
|
||||
{% note %}
|
||||
|
||||
**Note:** By default, {% data variables.product.prodname_dependabot_alerts %} are sorted by importance. The "Most important" sort helps you prioritize which {% data variables.product.prodname_dependabot_alerts %} to focus on first. Alerts are ranked based on their potential impact, actionability, and relevance. Our prioritization calculation is constantly being improved and includes factors like CVSS score, dependency scope, and whether vulnerable function calls are found for the alert.
|
||||
{% endnote %}
|
||||
|
||||

|
||||
{% endif %}
|
||||
|
||||
You can also click a label on an alert to only show alerts of that type.{% ifversion dependabot-alerts-development-label %} For example, clicking the `Development` label in the list of alerts will only show alerts relating to dependencies used in development, not production. For information about the list of ecosystems supported, see "[Supported ecosystems and manifests for dependency scope ](#supported-ecosystems-and-manifests-for-dependency-scope)."
|
||||
|
||||
{% endif %}
|
||||
1. Optionally, to filter alerts, select a filter in a dropdown menu then click the filter that you would like to apply. You can also type filters into the search bar. For more information about filtering and sorting alerts, see "[Prioritizing {% data variables.product.prodname_dependabot_alerts %}](#prioritizing-across--data-variablesproductprodname_dependabot_alerts-)."
|
||||
{%- ifversion dependabot-bulk-alerts %}
|
||||
{% else %}
|
||||
{% endif %}
|
||||
@@ -162,7 +168,11 @@ If you schedule extensive work to upgrade a dependency, or decide that an alert
|
||||
|
||||
1. View the details for an alert. For more information, see "[Viewing vulnerable dependencies](#viewing-dependabot-alerts)" (above).
|
||||
1. Select the "Dismiss" dropdown, and click a reason for dismissing the alert.{% ifversion reopen-dependabot-alerts %} Unfixed dismissed alerts can be reopened later.{% endif %}
|
||||

|
||||
{% ifversion dependabot-alerts-dismissal-comment %}1. Optionally, add a dismissal comment. The dismissal comment will be added to the alert timeline and can be used as justification during auditing and reporting. You can retrieve or set a comment by using the GraphQL API. The comment is contained in the `dismissComment` field. For more information, see "[{% data variables.product.prodname_dependabot_alerts %}](/graphql/reference/objects#repositoryvulnerabilityalert)" in the GraphQL API documentation.
|
||||

|
||||
1. Click **Dismiss alert**.
|
||||
{% else %}
|
||||
{% endif %}
|
||||
{% ifversion dependabot-bulk-alerts %}
|
||||
|
||||
### Dismissing multiple alerts at once
|
||||
|
||||
@@ -1,6 +1,29 @@
|
||||
---
|
||||
title: Developers
|
||||
intro: 'Go deeper with {% data variables.product.prodname_dotcom %} by integrating with our APIs, customizing your {% data variables.product.prodname_dotcom %} workflow, and building and sharing apps with the community.'
|
||||
intro: 'Go deeper with {% data variables.product.prodname_dotcom %} by integrating with our APIs and webhooks, customizing your {% data variables.product.prodname_dotcom %} workflow, and building and sharing apps with the community.'
|
||||
introLinks:
|
||||
"About apps": /developers/apps/getting-started-with-apps/about-apps
|
||||
layout: product-landing
|
||||
featuredLinks:
|
||||
guides:
|
||||
- /developers/apps/getting-started-with-apps/differences-between-github-apps-and-oauth-apps
|
||||
- /developers/apps/building-github-apps/creating-a-github-app
|
||||
- /developers/apps/building-github-apps/authenticating-with-github-apps
|
||||
- /developers/apps/building-github-apps/identifying-and-authorizing-users-for-github-apps
|
||||
popular:
|
||||
- /developers/webhooks-and-events/webhooks/webhook-events-and-payloads
|
||||
- /developers/apps/building-github-apps/creating-a-github-app
|
||||
- /developers/apps/building-github-apps/authenticating-with-github-apps
|
||||
- /developers/webhooks-and-events/webhooks/about-webhooks
|
||||
- /developers/apps/building-oauth-apps/creating-an-oauth-app
|
||||
- /developers/apps/building-oauth-apps/authorizing-oauth-apps
|
||||
- /developers/github-marketplace/github-marketplace-overview/about-github-marketplace
|
||||
guideCards:
|
||||
- /developers/webhooks-and-events/webhooks/creating-webhooks
|
||||
- /developers/apps/guides/using-the-github-api-in-your-app
|
||||
- /developers/apps/guides/creating-ci-tests-with-the-checks-api
|
||||
changelog:
|
||||
label: apps
|
||||
versions:
|
||||
fpt: '*'
|
||||
ghes: '*'
|
||||
|
||||
7
data/features/actions-reusable-workflow-matrix.yml
Normal file
7
data/features/actions-reusable-workflow-matrix.yml
Normal file
@@ -0,0 +1,7 @@
|
||||
# Reference: #7094
|
||||
# Documentation for allowing matrix jobs to call reusable workflows.
|
||||
versions:
|
||||
fpt: '*'
|
||||
ghec: '*'
|
||||
ghes: '>=3.7'
|
||||
ghae: 'issue-7094'
|
||||
7
data/features/dependabot-alerts-dismissal-comment.yml
Normal file
7
data/features/dependabot-alerts-dismissal-comment.yml
Normal file
@@ -0,0 +1,7 @@
|
||||
# Reference: Issue #7673 - Dependabot alerts: optional comment with dismissal - [GA]
|
||||
|
||||
versions:
|
||||
fpt: '*'
|
||||
ghec: '*'
|
||||
ghes: '>3.6'
|
||||
ghae: 'issue-7673'
|
||||
7
data/features/nested-reusable-workflow.yml
Normal file
7
data/features/nested-reusable-workflow.yml
Normal file
@@ -0,0 +1,7 @@
|
||||
# Issues 7093
|
||||
# Reusable workflows can call other reusable workflows
|
||||
versions:
|
||||
fpt: '*'
|
||||
ghec: '*'
|
||||
ghes: '>=3.7'
|
||||
ghae: 'issue-7093'
|
||||
@@ -1385,6 +1385,16 @@ upcoming_changes:
|
||||
date: '2022-10-01T00:00:00+00:00'
|
||||
criticality: breaking
|
||||
owner: lukewar
|
||||
- location: ProjectView.groupedItems
|
||||
description:
|
||||
'`groupedItems` will be removed. Follow the ProjectV2 guide at https://github.blog/changelog/2022-06-23-the-new-github-issues-june-23rd-update/,
|
||||
to find a suitable replacement.'
|
||||
reason:
|
||||
The `ProjectNext` API is deprecated in favour of the more capable `ProjectV2`
|
||||
API.
|
||||
date: '2022-10-01T00:00:00+00:00'
|
||||
criticality: breaking
|
||||
owner: lukewar
|
||||
- location: ProjectView.items
|
||||
description:
|
||||
'`items` will be removed. Follow the ProjectV2 guide at https://github.blog/changelog/2022-06-23-the-new-github-issues-june-23rd-update/,
|
||||
|
||||
@@ -1385,6 +1385,16 @@ upcoming_changes:
|
||||
date: '2022-10-01T00:00:00+00:00'
|
||||
criticality: breaking
|
||||
owner: lukewar
|
||||
- location: ProjectView.groupedItems
|
||||
description:
|
||||
'`groupedItems` will be removed. Follow the ProjectV2 guide at https://github.blog/changelog/2022-06-23-the-new-github-issues-june-23rd-update/,
|
||||
to find a suitable replacement.'
|
||||
reason:
|
||||
The `ProjectNext` API is deprecated in favour of the more capable `ProjectV2`
|
||||
API.
|
||||
date: '2022-10-01T00:00:00+00:00'
|
||||
criticality: breaking
|
||||
owner: lukewar
|
||||
- location: ProjectView.items
|
||||
description:
|
||||
'`items` will be removed. Follow the ProjectV2 guide at https://github.blog/changelog/2022-06-23-the-new-github-issues-june-23rd-update/,
|
||||
|
||||
14
data/reusables/dependabot/dependabot-alerts-filters.md
Normal file
14
data/reusables/dependabot/dependabot-alerts-filters.md
Normal file
@@ -0,0 +1,14 @@
|
||||
You can sort and filter {% data variables.product.prodname_dependabot_alerts %} by typing filters as `key:value` pairs into the search bar.
|
||||
|
||||
| Option | Description | Example |
|
||||
|:---|:---|:---|
|
||||
| `ecosystem` | Displays alerts for the selected ecosystem | Use `ecosystem:npm` to show {% data variables.product.prodname_dependabot_alerts %} for npm |{% ifversion fpt or ghec or ghes > 3.5 %}
|
||||
| `has` | Displays alerts meeting the selected filter criteria | Use `has:patch` to show alerts related to advisories that have a patch{% ifversion dependabot-alerts-vulnerable-calls %}</br>Use `has:vulnerable-calls` to show alerts relating to calls to vulnerable functions{% endif %} |{% endif %}
|
||||
| `is` | Displays alerts based on their state | Use `is:open` to show open alerts |
|
||||
| `manifest` | Displays alerts for the selected manifest | Use `manifest:webwolf/pom.xml` to show alerts on the pom.xml file of the webwolf application |
|
||||
| `package` | Displays alerts for the selected package | Use `package:django` to show alerts for django |
|
||||
| `resolution` | Displays alerts of the selected resolution status | Use `resolution:no-bandwidth` to show alerts previously parked due to lack of resources or time to fix them |
|
||||
| `repo` | Displays alerts based on the repository they relate to</br>Note that this filter is only available on the security overview. For more information, see "[About the security overview](/code-security/security-overview/about-the-security-overview)" | Use `repo:octocat-repo` to show alerts in the repository called `octocat-repo` |{%- ifversion dependabot-alerts-development-label %}
|
||||
| `scope` | Displays alerts based on the scope of the dependency they relate to | Use `scope:development` to show alerts for dependencies that are only used during development |{% endif %}
|
||||
| `severity` | Displays alerts based on their level of severity | Use `severity:high` to show alerts with a severity of High |{%- ifversion dependabot-most-important-sort-option %}
|
||||
| `sort` | Displays alerts according to the selected sort order | The default sorting option for alerts is `sort:most-important`, which ranks alerts by importance</br>Use `sort:newest` to show the latest alerts reported by {% data variables.product.prodname_dependabot %} |{% endif %}
|
||||
@@ -33,9 +33,11 @@ async function retryingGot(url, args) {
|
||||
)
|
||||
}
|
||||
|
||||
export async function report(error, metadata) {
|
||||
export function report(error, metadata) {
|
||||
// If there's no HAYSTACK_URL set, bail early
|
||||
if (!process.env.HAYSTACK_URL) return
|
||||
if (!process.env.HAYSTACK_URL) {
|
||||
return
|
||||
}
|
||||
|
||||
const backends = [
|
||||
new HTTPBackend({
|
||||
@@ -47,6 +49,7 @@ export async function report(error, metadata) {
|
||||
app: HAYSTACK_APP,
|
||||
backends,
|
||||
})
|
||||
|
||||
return failbot.report(error, metadata)
|
||||
}
|
||||
|
||||
|
||||
@@ -1,4 +1,22 @@
|
||||
[
|
||||
{
|
||||
"schemaChanges": [
|
||||
{
|
||||
"title": "The GraphQL schema includes these changes:",
|
||||
"changes": []
|
||||
}
|
||||
],
|
||||
"previewChanges": [],
|
||||
"upcomingChanges": [
|
||||
{
|
||||
"title": "The following changes will be made to the schema:",
|
||||
"changes": [
|
||||
"<p>On member <code>ProjectView.groupedItems</code>:<code>groupedItems</code> will be removed. Follow the ProjectV2 guide at <a href=\"https://github.blog/changelog/2022-06-23-the-new-github-issues-june-23rd-update/\">https://github.blog/changelog/2022-06-23-the-new-github-issues-june-23rd-update/</a>, to find a suitable replacement. <strong>Effective 2022-10-01</strong>.</p>"
|
||||
]
|
||||
}
|
||||
],
|
||||
"date": "2022-08-22"
|
||||
},
|
||||
{
|
||||
"schemaChanges": [
|
||||
{
|
||||
|
||||
@@ -273,6 +273,14 @@
|
||||
"criticality": "breaking",
|
||||
"owner": "lukewar"
|
||||
},
|
||||
{
|
||||
"location": "ProjectView.groupedItems",
|
||||
"description": "<p><code>groupedItems</code> will be removed. Follow the ProjectV2 guide at <a href=\"https://github.blog/changelog/2022-06-23-the-new-github-issues-june-23rd-update/\">https://github.blog/changelog/2022-06-23-the-new-github-issues-june-23rd-update/</a>, to find a suitable replacement.</p>",
|
||||
"reason": "<p>The <code>ProjectNext</code> API is deprecated in favour of the more capable <code>ProjectV2</code> API.</p>",
|
||||
"date": "2022-10-01",
|
||||
"criticality": "breaking",
|
||||
"owner": "lukewar"
|
||||
},
|
||||
{
|
||||
"location": "ProjectView.groupBy",
|
||||
"description": "<p><code>groupBy</code> will be removed. Follow the ProjectV2 guide at <a href=\"https://github.blog/changelog/2022-06-23-the-new-github-issues-june-23rd-update/\">https://github.blog/changelog/2022-06-23-the-new-github-issues-june-23rd-update/</a>, to find a suitable replacement.</p>",
|
||||
@@ -1703,6 +1711,14 @@
|
||||
"criticality": "breaking",
|
||||
"owner": "lukewar"
|
||||
},
|
||||
{
|
||||
"location": "ProjectView.groupedItems",
|
||||
"description": "<p><code>groupedItems</code> will be removed. Follow the ProjectV2 guide at <a href=\"https://github.blog/changelog/2022-06-23-the-new-github-issues-june-23rd-update/\">https://github.blog/changelog/2022-06-23-the-new-github-issues-june-23rd-update/</a>, to find a suitable replacement.</p>",
|
||||
"reason": "<p>The <code>ProjectNext</code> API is deprecated in favour of the more capable <code>ProjectV2</code> API.</p>",
|
||||
"date": "2022-10-01",
|
||||
"criticality": "breaking",
|
||||
"owner": "lukewar"
|
||||
},
|
||||
{
|
||||
"location": "ProjectView.groupBy",
|
||||
"description": "<p><code>groupBy</code> will be removed. Follow the ProjectV2 guide at <a href=\"https://github.blog/changelog/2022-06-23-the-new-github-issues-june-23rd-update/\">https://github.blog/changelog/2022-06-23-the-new-github-issues-june-23rd-update/</a>, to find a suitable replacement.</p>",
|
||||
|
||||
@@ -10,7 +10,7 @@ process.on('uncaughtException', async (err) => {
|
||||
|
||||
console.error(err)
|
||||
try {
|
||||
await FailBot.report(err)
|
||||
FailBot.report(err)
|
||||
} catch (failBotError) {
|
||||
console.warn('Even sending the uncaughtException error to FailBot failed!')
|
||||
console.error(failBotError)
|
||||
@@ -20,7 +20,7 @@ process.on('uncaughtException', async (err) => {
|
||||
process.on('unhandledRejection', async (err) => {
|
||||
console.error(err)
|
||||
try {
|
||||
await FailBot.report(err)
|
||||
FailBot.report(err)
|
||||
} catch (failBotError) {
|
||||
console.warn('Even sending the unhandledRejection error to FailBot failed!')
|
||||
console.error(failBotError)
|
||||
|
||||
@@ -544619,8 +544619,8 @@
|
||||
]
|
||||
},
|
||||
"organization": {
|
||||
"title": "Organization Full",
|
||||
"description": "Organization Full",
|
||||
"title": "Team Organization",
|
||||
"description": "Team Organization",
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"login": {
|
||||
@@ -545351,8 +545351,8 @@
|
||||
]
|
||||
},
|
||||
"organization": {
|
||||
"title": "Organization Full",
|
||||
"description": "Organization Full",
|
||||
"title": "Team Organization",
|
||||
"description": "Team Organization",
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"login": {
|
||||
@@ -546131,8 +546131,8 @@
|
||||
]
|
||||
},
|
||||
"organization": {
|
||||
"title": "Organization Full",
|
||||
"description": "Organization Full",
|
||||
"title": "Team Organization",
|
||||
"description": "Team Organization",
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"login": {
|
||||
@@ -553319,8 +553319,8 @@
|
||||
]
|
||||
},
|
||||
"organization": {
|
||||
"title": "Organization Full",
|
||||
"description": "Organization Full",
|
||||
"title": "Team Organization",
|
||||
"description": "Team Organization",
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"login": {
|
||||
@@ -554089,8 +554089,8 @@
|
||||
]
|
||||
},
|
||||
"organization": {
|
||||
"title": "Organization Full",
|
||||
"description": "Organization Full",
|
||||
"title": "Team Organization",
|
||||
"description": "Team Organization",
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"login": {
|
||||
@@ -554778,8 +554778,8 @@
|
||||
]
|
||||
},
|
||||
"organization": {
|
||||
"title": "Organization Full",
|
||||
"description": "Organization Full",
|
||||
"title": "Team Organization",
|
||||
"description": "Team Organization",
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"login": {
|
||||
@@ -561942,8 +561942,8 @@
|
||||
]
|
||||
},
|
||||
"organization": {
|
||||
"title": "Organization Full",
|
||||
"description": "Organization Full",
|
||||
"title": "Team Organization",
|
||||
"description": "Team Organization",
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"login": {
|
||||
|
||||
@@ -430488,8 +430488,8 @@
|
||||
]
|
||||
},
|
||||
"organization": {
|
||||
"title": "Organization Full",
|
||||
"description": "Organization Full",
|
||||
"title": "Team Organization",
|
||||
"description": "Team Organization",
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"login": {
|
||||
@@ -431204,8 +431204,8 @@
|
||||
]
|
||||
},
|
||||
"organization": {
|
||||
"title": "Organization Full",
|
||||
"description": "Organization Full",
|
||||
"title": "Team Organization",
|
||||
"description": "Team Organization",
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"login": {
|
||||
@@ -431968,8 +431968,8 @@
|
||||
]
|
||||
},
|
||||
"organization": {
|
||||
"title": "Organization Full",
|
||||
"description": "Organization Full",
|
||||
"title": "Team Organization",
|
||||
"description": "Team Organization",
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"login": {
|
||||
@@ -438934,8 +438934,8 @@
|
||||
]
|
||||
},
|
||||
"organization": {
|
||||
"title": "Organization Full",
|
||||
"description": "Organization Full",
|
||||
"title": "Team Organization",
|
||||
"description": "Team Organization",
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"login": {
|
||||
@@ -439688,8 +439688,8 @@
|
||||
]
|
||||
},
|
||||
"organization": {
|
||||
"title": "Organization Full",
|
||||
"description": "Organization Full",
|
||||
"title": "Team Organization",
|
||||
"description": "Team Organization",
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"login": {
|
||||
@@ -440361,8 +440361,8 @@
|
||||
]
|
||||
},
|
||||
"organization": {
|
||||
"title": "Organization Full",
|
||||
"description": "Organization Full",
|
||||
"title": "Team Organization",
|
||||
"description": "Team Organization",
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"login": {
|
||||
@@ -447303,8 +447303,8 @@
|
||||
]
|
||||
},
|
||||
"organization": {
|
||||
"title": "Organization Full",
|
||||
"description": "Organization Full",
|
||||
"title": "Team Organization",
|
||||
"description": "Team Organization",
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"login": {
|
||||
|
||||
@@ -428538,8 +428538,8 @@
|
||||
]
|
||||
},
|
||||
"organization": {
|
||||
"title": "Organization Full",
|
||||
"description": "Organization Full",
|
||||
"title": "Team Organization",
|
||||
"description": "Team Organization",
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"login": {
|
||||
@@ -429254,8 +429254,8 @@
|
||||
]
|
||||
},
|
||||
"organization": {
|
||||
"title": "Organization Full",
|
||||
"description": "Organization Full",
|
||||
"title": "Team Organization",
|
||||
"description": "Team Organization",
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"login": {
|
||||
@@ -430018,8 +430018,8 @@
|
||||
]
|
||||
},
|
||||
"organization": {
|
||||
"title": "Organization Full",
|
||||
"description": "Organization Full",
|
||||
"title": "Team Organization",
|
||||
"description": "Team Organization",
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"login": {
|
||||
@@ -437000,8 +437000,8 @@
|
||||
]
|
||||
},
|
||||
"organization": {
|
||||
"title": "Organization Full",
|
||||
"description": "Organization Full",
|
||||
"title": "Team Organization",
|
||||
"description": "Team Organization",
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"login": {
|
||||
@@ -437754,8 +437754,8 @@
|
||||
]
|
||||
},
|
||||
"organization": {
|
||||
"title": "Organization Full",
|
||||
"description": "Organization Full",
|
||||
"title": "Team Organization",
|
||||
"description": "Team Organization",
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"login": {
|
||||
@@ -438427,8 +438427,8 @@
|
||||
]
|
||||
},
|
||||
"organization": {
|
||||
"title": "Organization Full",
|
||||
"description": "Organization Full",
|
||||
"title": "Team Organization",
|
||||
"description": "Team Organization",
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"login": {
|
||||
@@ -445385,8 +445385,8 @@
|
||||
]
|
||||
},
|
||||
"organization": {
|
||||
"title": "Organization Full",
|
||||
"description": "Organization Full",
|
||||
"title": "Team Organization",
|
||||
"description": "Team Organization",
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"login": {
|
||||
|
||||
@@ -449507,8 +449507,8 @@
|
||||
]
|
||||
},
|
||||
"organization": {
|
||||
"title": "Organization Full",
|
||||
"description": "Organization Full",
|
||||
"title": "Team Organization",
|
||||
"description": "Team Organization",
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"login": {
|
||||
@@ -450232,8 +450232,8 @@
|
||||
]
|
||||
},
|
||||
"organization": {
|
||||
"title": "Organization Full",
|
||||
"description": "Organization Full",
|
||||
"title": "Team Organization",
|
||||
"description": "Team Organization",
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"login": {
|
||||
@@ -451005,8 +451005,8 @@
|
||||
]
|
||||
},
|
||||
"organization": {
|
||||
"title": "Organization Full",
|
||||
"description": "Organization Full",
|
||||
"title": "Team Organization",
|
||||
"description": "Team Organization",
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"login": {
|
||||
@@ -457996,8 +457996,8 @@
|
||||
]
|
||||
},
|
||||
"organization": {
|
||||
"title": "Organization Full",
|
||||
"description": "Organization Full",
|
||||
"title": "Team Organization",
|
||||
"description": "Team Organization",
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"login": {
|
||||
@@ -458759,8 +458759,8 @@
|
||||
]
|
||||
},
|
||||
"organization": {
|
||||
"title": "Organization Full",
|
||||
"description": "Organization Full",
|
||||
"title": "Team Organization",
|
||||
"description": "Team Organization",
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"login": {
|
||||
@@ -459441,8 +459441,8 @@
|
||||
]
|
||||
},
|
||||
"organization": {
|
||||
"title": "Organization Full",
|
||||
"description": "Organization Full",
|
||||
"title": "Team Organization",
|
||||
"description": "Team Organization",
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"login": {
|
||||
@@ -466408,8 +466408,8 @@
|
||||
]
|
||||
},
|
||||
"organization": {
|
||||
"title": "Organization Full",
|
||||
"description": "Organization Full",
|
||||
"title": "Team Organization",
|
||||
"description": "Team Organization",
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"login": {
|
||||
|
||||
@@ -459914,8 +459914,8 @@
|
||||
]
|
||||
},
|
||||
"organization": {
|
||||
"title": "Organization Full",
|
||||
"description": "Organization Full",
|
||||
"title": "Team Organization",
|
||||
"description": "Team Organization",
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"login": {
|
||||
@@ -460639,8 +460639,8 @@
|
||||
]
|
||||
},
|
||||
"organization": {
|
||||
"title": "Organization Full",
|
||||
"description": "Organization Full",
|
||||
"title": "Team Organization",
|
||||
"description": "Team Organization",
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"login": {
|
||||
@@ -461412,8 +461412,8 @@
|
||||
]
|
||||
},
|
||||
"organization": {
|
||||
"title": "Organization Full",
|
||||
"description": "Organization Full",
|
||||
"title": "Team Organization",
|
||||
"description": "Team Organization",
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"login": {
|
||||
@@ -468417,8 +468417,8 @@
|
||||
]
|
||||
},
|
||||
"organization": {
|
||||
"title": "Organization Full",
|
||||
"description": "Organization Full",
|
||||
"title": "Team Organization",
|
||||
"description": "Team Organization",
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"login": {
|
||||
@@ -469180,8 +469180,8 @@
|
||||
]
|
||||
},
|
||||
"organization": {
|
||||
"title": "Organization Full",
|
||||
"description": "Organization Full",
|
||||
"title": "Team Organization",
|
||||
"description": "Team Organization",
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"login": {
|
||||
@@ -469862,8 +469862,8 @@
|
||||
]
|
||||
},
|
||||
"organization": {
|
||||
"title": "Organization Full",
|
||||
"description": "Organization Full",
|
||||
"title": "Team Organization",
|
||||
"description": "Team Organization",
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"login": {
|
||||
@@ -476843,8 +476843,8 @@
|
||||
]
|
||||
},
|
||||
"organization": {
|
||||
"title": "Organization Full",
|
||||
"description": "Organization Full",
|
||||
"title": "Team Organization",
|
||||
"description": "Team Organization",
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"login": {
|
||||
|
||||
@@ -470051,8 +470051,8 @@
|
||||
]
|
||||
},
|
||||
"organization": {
|
||||
"title": "Organization Full",
|
||||
"description": "Organization Full",
|
||||
"title": "Team Organization",
|
||||
"description": "Team Organization",
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"login": {
|
||||
@@ -470782,8 +470782,8 @@
|
||||
]
|
||||
},
|
||||
"organization": {
|
||||
"title": "Organization Full",
|
||||
"description": "Organization Full",
|
||||
"title": "Team Organization",
|
||||
"description": "Team Organization",
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"login": {
|
||||
@@ -471561,8 +471561,8 @@
|
||||
]
|
||||
},
|
||||
"organization": {
|
||||
"title": "Organization Full",
|
||||
"description": "Organization Full",
|
||||
"title": "Team Organization",
|
||||
"description": "Team Organization",
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"login": {
|
||||
@@ -478748,8 +478748,8 @@
|
||||
]
|
||||
},
|
||||
"organization": {
|
||||
"title": "Organization Full",
|
||||
"description": "Organization Full",
|
||||
"title": "Team Organization",
|
||||
"description": "Team Organization",
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"login": {
|
||||
@@ -479517,8 +479517,8 @@
|
||||
]
|
||||
},
|
||||
"organization": {
|
||||
"title": "Organization Full",
|
||||
"description": "Organization Full",
|
||||
"title": "Team Organization",
|
||||
"description": "Team Organization",
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"login": {
|
||||
@@ -480205,8 +480205,8 @@
|
||||
]
|
||||
},
|
||||
"organization": {
|
||||
"title": "Organization Full",
|
||||
"description": "Organization Full",
|
||||
"title": "Team Organization",
|
||||
"description": "Team Organization",
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"login": {
|
||||
@@ -487368,8 +487368,8 @@
|
||||
]
|
||||
},
|
||||
"organization": {
|
||||
"title": "Organization Full",
|
||||
"description": "Organization Full",
|
||||
"title": "Team Organization",
|
||||
"description": "Team Organization",
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"login": {
|
||||
|
||||
@@ -401709,8 +401709,8 @@
|
||||
]
|
||||
},
|
||||
"organization": {
|
||||
"title": "Organization Full",
|
||||
"description": "Organization Full",
|
||||
"title": "Team Organization",
|
||||
"description": "Team Organization",
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"login": {
|
||||
@@ -402441,8 +402441,8 @@
|
||||
]
|
||||
},
|
||||
"organization": {
|
||||
"title": "Organization Full",
|
||||
"description": "Organization Full",
|
||||
"title": "Team Organization",
|
||||
"description": "Team Organization",
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"login": {
|
||||
@@ -403221,8 +403221,8 @@
|
||||
]
|
||||
},
|
||||
"organization": {
|
||||
"title": "Organization Full",
|
||||
"description": "Organization Full",
|
||||
"title": "Team Organization",
|
||||
"description": "Team Organization",
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"login": {
|
||||
@@ -410257,8 +410257,8 @@
|
||||
]
|
||||
},
|
||||
"organization": {
|
||||
"title": "Organization Full",
|
||||
"description": "Organization Full",
|
||||
"title": "Team Organization",
|
||||
"description": "Team Organization",
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"login": {
|
||||
@@ -411027,8 +411027,8 @@
|
||||
]
|
||||
},
|
||||
"organization": {
|
||||
"title": "Organization Full",
|
||||
"description": "Organization Full",
|
||||
"title": "Team Organization",
|
||||
"description": "Team Organization",
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"login": {
|
||||
@@ -411716,8 +411716,8 @@
|
||||
]
|
||||
},
|
||||
"organization": {
|
||||
"title": "Organization Full",
|
||||
"description": "Organization Full",
|
||||
"title": "Team Organization",
|
||||
"description": "Team Organization",
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"login": {
|
||||
@@ -418728,8 +418728,8 @@
|
||||
]
|
||||
},
|
||||
"organization": {
|
||||
"title": "Organization Full",
|
||||
"description": "Organization Full",
|
||||
"title": "Team Organization",
|
||||
"description": "Team Organization",
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"login": {
|
||||
|
||||
@@ -127359,8 +127359,8 @@
|
||||
]
|
||||
},
|
||||
"organization": {
|
||||
"title": "Organization Full",
|
||||
"description": "Organization Full",
|
||||
"title": "Team Organization",
|
||||
"description": "Team Organization",
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"login": {
|
||||
@@ -128181,8 +128181,8 @@
|
||||
]
|
||||
},
|
||||
"organization": {
|
||||
"title": "Organization Full",
|
||||
"description": "Organization Full",
|
||||
"title": "Team Organization",
|
||||
"description": "Team Organization",
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"login": {
|
||||
@@ -128980,8 +128980,8 @@
|
||||
]
|
||||
},
|
||||
"organization": {
|
||||
"title": "Organization Full",
|
||||
"description": "Organization Full",
|
||||
"title": "Team Organization",
|
||||
"description": "Team Organization",
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"login": {
|
||||
@@ -481678,8 +481678,8 @@
|
||||
]
|
||||
},
|
||||
"organization": {
|
||||
"title": "Organization Full",
|
||||
"description": "Organization Full",
|
||||
"title": "Team Organization",
|
||||
"description": "Team Organization",
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"login": {
|
||||
@@ -482474,8 +482474,8 @@
|
||||
]
|
||||
},
|
||||
"organization": {
|
||||
"title": "Organization Full",
|
||||
"description": "Organization Full",
|
||||
"title": "Team Organization",
|
||||
"description": "Team Organization",
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"login": {
|
||||
@@ -483153,8 +483153,8 @@
|
||||
]
|
||||
},
|
||||
"organization": {
|
||||
"title": "Organization Full",
|
||||
"description": "Organization Full",
|
||||
"title": "Team Organization",
|
||||
"description": "Team Organization",
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"login": {
|
||||
@@ -569691,8 +569691,8 @@
|
||||
]
|
||||
},
|
||||
"organization": {
|
||||
"title": "Organization Full",
|
||||
"description": "Organization Full",
|
||||
"title": "Team Organization",
|
||||
"description": "Team Organization",
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"login": {
|
||||
|
||||
@@ -102181,8 +102181,8 @@
|
||||
]
|
||||
},
|
||||
"organization": {
|
||||
"title": "Organization Full",
|
||||
"description": "Organization Full",
|
||||
"title": "Team Organization",
|
||||
"description": "Team Organization",
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"login": {
|
||||
@@ -102987,8 +102987,8 @@
|
||||
]
|
||||
},
|
||||
"organization": {
|
||||
"title": "Organization Full",
|
||||
"description": "Organization Full",
|
||||
"title": "Team Organization",
|
||||
"description": "Team Organization",
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"login": {
|
||||
@@ -103770,8 +103770,8 @@
|
||||
]
|
||||
},
|
||||
"organization": {
|
||||
"title": "Organization Full",
|
||||
"description": "Organization Full",
|
||||
"title": "Team Organization",
|
||||
"description": "Team Organization",
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"login": {
|
||||
@@ -406390,8 +406390,8 @@
|
||||
]
|
||||
},
|
||||
"organization": {
|
||||
"title": "Organization Full",
|
||||
"description": "Organization Full",
|
||||
"title": "Team Organization",
|
||||
"description": "Team Organization",
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"login": {
|
||||
@@ -407170,8 +407170,8 @@
|
||||
]
|
||||
},
|
||||
"organization": {
|
||||
"title": "Organization Full",
|
||||
"description": "Organization Full",
|
||||
"title": "Team Organization",
|
||||
"description": "Team Organization",
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"login": {
|
||||
@@ -407833,8 +407833,8 @@
|
||||
]
|
||||
},
|
||||
"organization": {
|
||||
"title": "Organization Full",
|
||||
"description": "Organization Full",
|
||||
"title": "Team Organization",
|
||||
"description": "Team Organization",
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"login": {
|
||||
@@ -448151,8 +448151,8 @@
|
||||
]
|
||||
},
|
||||
"organization": {
|
||||
"title": "Organization Full",
|
||||
"description": "Organization Full",
|
||||
"title": "Team Organization",
|
||||
"description": "Team Organization",
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"login": {
|
||||
|
||||
@@ -104077,8 +104077,8 @@
|
||||
]
|
||||
},
|
||||
"organization": {
|
||||
"title": "Organization Full",
|
||||
"description": "Organization Full",
|
||||
"title": "Team Organization",
|
||||
"description": "Team Organization",
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"login": {
|
||||
@@ -104883,8 +104883,8 @@
|
||||
]
|
||||
},
|
||||
"organization": {
|
||||
"title": "Organization Full",
|
||||
"description": "Organization Full",
|
||||
"title": "Team Organization",
|
||||
"description": "Team Organization",
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"login": {
|
||||
@@ -105666,8 +105666,8 @@
|
||||
]
|
||||
},
|
||||
"organization": {
|
||||
"title": "Organization Full",
|
||||
"description": "Organization Full",
|
||||
"title": "Team Organization",
|
||||
"description": "Team Organization",
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"login": {
|
||||
@@ -409095,8 +409095,8 @@
|
||||
]
|
||||
},
|
||||
"organization": {
|
||||
"title": "Organization Full",
|
||||
"description": "Organization Full",
|
||||
"title": "Team Organization",
|
||||
"description": "Team Organization",
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"login": {
|
||||
@@ -409875,8 +409875,8 @@
|
||||
]
|
||||
},
|
||||
"organization": {
|
||||
"title": "Organization Full",
|
||||
"description": "Organization Full",
|
||||
"title": "Team Organization",
|
||||
"description": "Team Organization",
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"login": {
|
||||
@@ -410538,8 +410538,8 @@
|
||||
]
|
||||
},
|
||||
"organization": {
|
||||
"title": "Organization Full",
|
||||
"description": "Organization Full",
|
||||
"title": "Team Organization",
|
||||
"description": "Team Organization",
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"login": {
|
||||
@@ -450855,8 +450855,8 @@
|
||||
]
|
||||
},
|
||||
"organization": {
|
||||
"title": "Organization Full",
|
||||
"description": "Organization Full",
|
||||
"title": "Team Organization",
|
||||
"description": "Team Organization",
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"login": {
|
||||
|
||||
@@ -114260,8 +114260,8 @@
|
||||
]
|
||||
},
|
||||
"organization": {
|
||||
"title": "Organization Full",
|
||||
"description": "Organization Full",
|
||||
"title": "Team Organization",
|
||||
"description": "Team Organization",
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"login": {
|
||||
@@ -115075,8 +115075,8 @@
|
||||
]
|
||||
},
|
||||
"organization": {
|
||||
"title": "Organization Full",
|
||||
"description": "Organization Full",
|
||||
"title": "Team Organization",
|
||||
"description": "Team Organization",
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"login": {
|
||||
@@ -115867,8 +115867,8 @@
|
||||
]
|
||||
},
|
||||
"organization": {
|
||||
"title": "Organization Full",
|
||||
"description": "Organization Full",
|
||||
"title": "Team Organization",
|
||||
"description": "Team Organization",
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"login": {
|
||||
@@ -425827,8 +425827,8 @@
|
||||
]
|
||||
},
|
||||
"organization": {
|
||||
"title": "Organization Full",
|
||||
"description": "Organization Full",
|
||||
"title": "Team Organization",
|
||||
"description": "Team Organization",
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"login": {
|
||||
@@ -426616,8 +426616,8 @@
|
||||
]
|
||||
},
|
||||
"organization": {
|
||||
"title": "Organization Full",
|
||||
"description": "Organization Full",
|
||||
"title": "Team Organization",
|
||||
"description": "Team Organization",
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"login": {
|
||||
@@ -427288,8 +427288,8 @@
|
||||
]
|
||||
},
|
||||
"organization": {
|
||||
"title": "Organization Full",
|
||||
"description": "Organization Full",
|
||||
"title": "Team Organization",
|
||||
"description": "Team Organization",
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"login": {
|
||||
@@ -474013,8 +474013,8 @@
|
||||
]
|
||||
},
|
||||
"organization": {
|
||||
"title": "Organization Full",
|
||||
"description": "Organization Full",
|
||||
"title": "Team Organization",
|
||||
"description": "Team Organization",
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"login": {
|
||||
|
||||
@@ -116623,8 +116623,8 @@
|
||||
]
|
||||
},
|
||||
"organization": {
|
||||
"title": "Organization Full",
|
||||
"description": "Organization Full",
|
||||
"title": "Team Organization",
|
||||
"description": "Team Organization",
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"login": {
|
||||
@@ -117438,8 +117438,8 @@
|
||||
]
|
||||
},
|
||||
"organization": {
|
||||
"title": "Organization Full",
|
||||
"description": "Organization Full",
|
||||
"title": "Team Organization",
|
||||
"description": "Team Organization",
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"login": {
|
||||
@@ -118230,8 +118230,8 @@
|
||||
]
|
||||
},
|
||||
"organization": {
|
||||
"title": "Organization Full",
|
||||
"description": "Organization Full",
|
||||
"title": "Team Organization",
|
||||
"description": "Team Organization",
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"login": {
|
||||
@@ -436446,8 +436446,8 @@
|
||||
]
|
||||
},
|
||||
"organization": {
|
||||
"title": "Organization Full",
|
||||
"description": "Organization Full",
|
||||
"title": "Team Organization",
|
||||
"description": "Team Organization",
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"login": {
|
||||
@@ -437235,8 +437235,8 @@
|
||||
]
|
||||
},
|
||||
"organization": {
|
||||
"title": "Organization Full",
|
||||
"description": "Organization Full",
|
||||
"title": "Team Organization",
|
||||
"description": "Team Organization",
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"login": {
|
||||
@@ -437907,8 +437907,8 @@
|
||||
]
|
||||
},
|
||||
"organization": {
|
||||
"title": "Organization Full",
|
||||
"description": "Organization Full",
|
||||
"title": "Team Organization",
|
||||
"description": "Team Organization",
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"login": {
|
||||
@@ -484664,8 +484664,8 @@
|
||||
]
|
||||
},
|
||||
"organization": {
|
||||
"title": "Organization Full",
|
||||
"description": "Organization Full",
|
||||
"title": "Team Organization",
|
||||
"description": "Team Organization",
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"login": {
|
||||
|
||||
@@ -119096,8 +119096,8 @@
|
||||
]
|
||||
},
|
||||
"organization": {
|
||||
"title": "Organization Full",
|
||||
"description": "Organization Full",
|
||||
"title": "Team Organization",
|
||||
"description": "Team Organization",
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"login": {
|
||||
@@ -119917,8 +119917,8 @@
|
||||
]
|
||||
},
|
||||
"organization": {
|
||||
"title": "Organization Full",
|
||||
"description": "Organization Full",
|
||||
"title": "Team Organization",
|
||||
"description": "Team Organization",
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"login": {
|
||||
@@ -120715,8 +120715,8 @@
|
||||
]
|
||||
},
|
||||
"organization": {
|
||||
"title": "Organization Full",
|
||||
"description": "Organization Full",
|
||||
"title": "Team Organization",
|
||||
"description": "Team Organization",
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"login": {
|
||||
@@ -445154,8 +445154,8 @@
|
||||
]
|
||||
},
|
||||
"organization": {
|
||||
"title": "Organization Full",
|
||||
"description": "Organization Full",
|
||||
"title": "Team Organization",
|
||||
"description": "Team Organization",
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"login": {
|
||||
@@ -445949,8 +445949,8 @@
|
||||
]
|
||||
},
|
||||
"organization": {
|
||||
"title": "Organization Full",
|
||||
"description": "Organization Full",
|
||||
"title": "Team Organization",
|
||||
"description": "Team Organization",
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"login": {
|
||||
@@ -446627,8 +446627,8 @@
|
||||
]
|
||||
},
|
||||
"organization": {
|
||||
"title": "Organization Full",
|
||||
"description": "Organization Full",
|
||||
"title": "Team Organization",
|
||||
"description": "Team Organization",
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"login": {
|
||||
@@ -494548,8 +494548,8 @@
|
||||
]
|
||||
},
|
||||
"organization": {
|
||||
"title": "Organization Full",
|
||||
"description": "Organization Full",
|
||||
"title": "Team Organization",
|
||||
"description": "Team Organization",
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"login": {
|
||||
|
||||
@@ -80524,8 +80524,8 @@
|
||||
]
|
||||
},
|
||||
"organization": {
|
||||
"title": "Organization Full",
|
||||
"description": "Organization Full",
|
||||
"title": "Team Organization",
|
||||
"description": "Team Organization",
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"login": {
|
||||
@@ -81346,8 +81346,8 @@
|
||||
]
|
||||
},
|
||||
"organization": {
|
||||
"title": "Organization Full",
|
||||
"description": "Organization Full",
|
||||
"title": "Team Organization",
|
||||
"description": "Team Organization",
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"login": {
|
||||
@@ -82145,8 +82145,8 @@
|
||||
]
|
||||
},
|
||||
"organization": {
|
||||
"title": "Organization Full",
|
||||
"description": "Organization Full",
|
||||
"title": "Team Organization",
|
||||
"description": "Team Organization",
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"login": {
|
||||
@@ -390262,8 +390262,8 @@
|
||||
]
|
||||
},
|
||||
"organization": {
|
||||
"title": "Organization Full",
|
||||
"description": "Organization Full",
|
||||
"title": "Team Organization",
|
||||
"description": "Team Organization",
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"login": {
|
||||
@@ -391058,8 +391058,8 @@
|
||||
]
|
||||
},
|
||||
"organization": {
|
||||
"title": "Organization Full",
|
||||
"description": "Organization Full",
|
||||
"title": "Team Organization",
|
||||
"description": "Team Organization",
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"login": {
|
||||
@@ -391737,8 +391737,8 @@
|
||||
]
|
||||
},
|
||||
"organization": {
|
||||
"title": "Organization Full",
|
||||
"description": "Organization Full",
|
||||
"title": "Team Organization",
|
||||
"description": "Team Organization",
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"login": {
|
||||
@@ -436267,8 +436267,8 @@
|
||||
]
|
||||
},
|
||||
"organization": {
|
||||
"title": "Organization Full",
|
||||
"description": "Organization Full",
|
||||
"title": "Team Organization",
|
||||
"description": "Team Organization",
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"login": {
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:a695ee10df91c4a4e1ddbb17e89c3da59c6819a4f6ae1e0561d4a6121477b080
|
||||
size 795234
|
||||
oid sha256:d2fa7a88b38ff673947d7dd5841d2e60ba27ee3a6b1080b1179ec84bbc42f56e
|
||||
size 795473
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:ce7dc1590b66729b5d3d998dbaaf894bfa55880823525550400111c187418e82
|
||||
size 1643063
|
||||
oid sha256:3b1ce6435e894d17bdc727deba93f57d325955e61e689dda50b0c0e213b82ede
|
||||
size 1643774
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:caedf1593588769b026594fc740fb3d995f9c2fdd1d582b349961712ed11c05c
|
||||
size 1091567
|
||||
oid sha256:2d92f455dd73ff649a77835005ee51361086329dec49fc82f375c10ea01dd543
|
||||
size 1091758
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:777e7b45840d1087c48bd018eb077e08bb79f2568f8f24aeb7c496c054d92086
|
||||
size 4426457
|
||||
oid sha256:a02c7812aea6cb84f847536b6568cddae9defcb3b906b97b57e082786f1c93a8
|
||||
size 4427755
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:12e6b060937d1a3c444b3257140857e3711d55d7ffadd8659e7278297d4f5755
|
||||
size 734168
|
||||
oid sha256:376823aa9d3e3df40e8067ba41b65b33be5e8305bf5e6d5293e5200f91e70151
|
||||
size 733994
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:d5115cbde8d011087c9257d4ce665a6eef2dd7727bcad686465ea7e72dcbbd92
|
||||
size 3126793
|
||||
oid sha256:d767f8f5316de5a0560871ce4eef2e731fee5e629b98acdf53dd40308882dbbe
|
||||
size 3126340
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:36716f4c6df20250432c71a72fae686b82cf0114799ed52e24e4e8014247ee37
|
||||
size 810832
|
||||
oid sha256:d89a80cfd8fec8697d60cf796fea3efdff42471cbe09be78e5c91ba81da3201d
|
||||
size 810681
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:1f1e059284bc0e92c23a3651e448a66244b4e5d6b8bf7b17618c0e53bb07efff
|
||||
size 4449934
|
||||
oid sha256:366f40ee90aa6df2621b562c53d57f1c9db409242f2728d0d10b5ebb38602d9f
|
||||
size 4450054
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:58fd72363874ec64abe012164357a41f1a52416642642c4314fe12d4e5cf6096
|
||||
size 722898
|
||||
oid sha256:06600d8304cbbab8dee7c749afcabb2fa109862f69bf81cd183144a4e61f4e76
|
||||
size 722999
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:ac3cfa54ff0caf5d1adb791ff8da29ee43ab07bbf66ff8348d101ff3552e335f
|
||||
size 3022834
|
||||
oid sha256:f40bddaca58fe979876e14590a34251719af063507dca87978cc9488b9a54f64
|
||||
size 3022818
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:b0665d8cdda3804809c69090723450a9da2c0470eecf9e21217a6f71a23fe499
|
||||
size 820493
|
||||
oid sha256:3e2e48abbe3e69ebda22c20a27a28a9624c9a5ca17a5b002d843b43b8f1961e6
|
||||
size 820825
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:c4dd881c487bce25fbfe9e4ea07f865fbc607c4c5f74e8a54cbbdd0b4eda96d6
|
||||
size 1690080
|
||||
oid sha256:653e1756ce50cfea6ed9767694866ed82059b94a4addf93015c26304906d0004
|
||||
size 1690826
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:896c3ece7df19114d09f5b8b7460fecea2da72679c33e88fee03f13883144b97
|
||||
size 1126638
|
||||
oid sha256:81426084a1a1766a74718746a5d1eb931ae95330a49acdeb79a630b71b32a02c
|
||||
size 1127137
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:6e0a7aff1c27a8f8e98d94826186da4f374abd8853207512b985be5a2e594ba8
|
||||
size 4530855
|
||||
oid sha256:f7c3a3231cd89e0a732912882820f52cdc4cf5cc684d455154ce79fbc1d29fb3
|
||||
size 4531413
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:ea1b99568484c71fd53b958e51c189daff4726d627adeb543dabdc1093bc7e7c
|
||||
size 755215
|
||||
oid sha256:3d8870a7918b86cd7793571b56db9be7fbcdcb219c37f011b87d27d00bc57f89
|
||||
size 755220
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:dad5d7dff948b9c7212c38144f85ebd9d47fc2409c8e732ebb6ed64e53eec46c
|
||||
size 3211845
|
||||
oid sha256:cf1a395dd7c25368c23d3ddefa98c5d3f1e63c099bcf125bcf55d9323245acf2
|
||||
size 3211835
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:ae5840f4d56206e80c5a6c96f9f254a35e6183314911ba38be4103209fe7508c
|
||||
size 835847
|
||||
oid sha256:9628b128d101da09943e7d872cae9cea3d89b5a835f9ad132e93be65d49db8e9
|
||||
size 836025
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:0d165cd6fdc01fd7372b6fe7fba09fcc85e187d6d221ac19df6c359f780694b7
|
||||
size 4584015
|
||||
oid sha256:6bbc01dd53ec006901c75d0fcd544f7041ee3a6080ff6d6f86fe31abf49586de
|
||||
size 4584277
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:480feef2ab6957637486f7b4f6877557aebd014a99b2386453384c69871a5969
|
||||
size 744392
|
||||
oid sha256:70136d9675bfc27d985a1a82f5f8224ca5dadeeb40be6d7d020de47c8de06fcd
|
||||
size 744370
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:94f40109657b9f19faa3cda717616d0222c83af28b1df449d7007f41a9eb7af2
|
||||
size 3106819
|
||||
oid sha256:0e26788555bb3849ead995f97a1e9f5ac461db71f45f14ebe710f7509d28a8f2
|
||||
size 3106958
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:f9fcef79adacc1d322130de9731032acbbb551570733cecb3e51c2a5dad08faf
|
||||
size 823338
|
||||
oid sha256:11c6b6fff77ba341bf04d6a11db55b00006c968ac2604736418a79227a359b39
|
||||
size 823449
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:ba31c3ac2c4579bc837657cfe2eb5ab47779538310bc5aae7f5414f68399f986
|
||||
size 1705732
|
||||
oid sha256:5a26b097da4bcfefe01e97869ec55824571033126bcfb1d08b6d44d6617639a7
|
||||
size 1706238
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:7c760678e7ea50a0896a92db31741426c76a2acb7d60474231b13f1eef6979c1
|
||||
size 1138071
|
||||
oid sha256:4ba1240045a0a81951a2183e2868ccbbd312b785d9fa6a418f0a7d60f35cff38
|
||||
size 1137736
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:94e12a1bbd148f87de0709090d6f080a76a0b09ffcd6303c827e1d557bc8e76a
|
||||
size 4588269
|
||||
oid sha256:d995134771182a7b6e0b8e106c8e379414aa974b584907602ff66b4a5f9e8ca7
|
||||
size 4588010
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:1d5fbf7fe9eb6ca01a03c216375895fe966183ae3c52eb773004b3d94666bd8a
|
||||
size 759960
|
||||
oid sha256:842f947e353ed510bf98142fbd94d99e3930c83d7732ca43df6a7b8e01a9ec13
|
||||
size 759921
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:121ebecdfd1da3f6574a63db0666edaacc5560cf3bc6b336112cc2f438323d32
|
||||
size 3234044
|
||||
oid sha256:7f875cc463a8d1b7c157afcb4b3abea6aaf05b78d6ab288140ea36ba38a91988
|
||||
size 3233998
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:d9489974ba102202ec2e0e24778f219ef3806c184c4320ed40da3f9dcdcb1309
|
||||
size 839160
|
||||
oid sha256:3c44fdf46cda3c0b6f5c365e3eb81c42b33e8eaa2cd1de02f4e2de7593272572
|
||||
size 839220
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:049026c77f56d09068e601215e3daf8a20eef19d3055c19e95b29c81494afb08
|
||||
size 4618587
|
||||
oid sha256:6aa5d99308ed2c6140436bfd3807a46d12e88afb4b6c2d20d6cc626f16007412
|
||||
size 4619277
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:ec4646d7411285b6acee9613211332e4ec3302f78c4625b20cba4b5960327bcd
|
||||
size 748670
|
||||
oid sha256:ddc2b67051e837c4b2849b5edb5c0a57c32b5c5759ed8a13e9150772eaf78628
|
||||
size 748711
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:5d7558db412823fd8a918da5f2c87f27af799b13960a7721e471f128d6415141
|
||||
size 3132343
|
||||
oid sha256:45d038b6e37919faaa43a8670e2fd9d8746b0b8b970e6e24962c1958a95f39c3
|
||||
size 3132531
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:ad4856523718953e8d017556ff2fa1dcc1c58c5e7399275bfe4382c5156f92f5
|
||||
size 853658
|
||||
oid sha256:553219ae6002b3c1c603a65e86caa0bfee368578d7380a0e71111d4c8c63e4a1
|
||||
size 853854
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:1e03e89e1d1b86cc3352b63abcf16d8da8c7d31c3ae81a87a5f20255856705ce
|
||||
size 1768426
|
||||
oid sha256:84ec77a5e14b363b590aa122849b61c1f87d62ca3b012a72442ae39a32169256
|
||||
size 1769159
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:da1321d69f302d9e056a121d2b17585cfa2af679fe73a55d11221f8ee35c3fad
|
||||
size 1177234
|
||||
oid sha256:fcbdb49cc64420419e7de43dfd085c730ba29c2b5222d47a18424446171d3634
|
||||
size 1177277
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:3ad6ac585db248e0e974bda3cab04d4a50b7f9dd7078da42888244850f1e52cd
|
||||
size 4749033
|
||||
oid sha256:036ee58f9394febd9c73bdb3939f71d5ac7f30c201dc2d339f394cf2d83beb28
|
||||
size 4751242
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:08144c604ec127c90910bb95c1f69156e6db14783913c001532fbc8482bed4c8
|
||||
size 784216
|
||||
oid sha256:198750bb88908ed4b53c1b70e3f354476236e94e98fd4cb7e7922c7c22f52684
|
||||
size 784178
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:b871ac2c4887879d7424fc33a5410236b161a98bea1a54fdaa79aa1e3acc322c
|
||||
size 3353653
|
||||
oid sha256:b98be10e69d6a32132572815b2a262d5887744bfa8ae3469e21d906e48ae9da1
|
||||
size 3353323
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:c63218f58b798ae183aacd710952bbf12669f6dc87838484d72164fb4393e46b
|
||||
size 867694
|
||||
oid sha256:f48e20b2f4a40b7463a65d6753c0962e9be0657808f0a816da81261af00c45c6
|
||||
size 868025
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:916791b68b94ab6d84bcc1beaa2db70f25148d4c6d7ef9091f1f4800aec504cc
|
||||
size 4791314
|
||||
oid sha256:62440d03eb9f514940ae6261166b6c8f4fd7a028a8b7ceda69ca4fe2d9358369
|
||||
size 4791302
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:afc1b29fd92b566251d2572485d4502977dd6c8434d58fd5e1e7ec582720299c
|
||||
size 772674
|
||||
oid sha256:5ef4a914ced8b98283c0f689b840f04416e5727a2f504c3f18a39bda20fd7833
|
||||
size 772520
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:04ce4038f84fe554ae3fed0d1ff1df898fc28f9239b74fce76890fb511130cc4
|
||||
size 3245939
|
||||
oid sha256:a4d9b7d28dac1776928497a0905f431939fae52ee47fbdd0c41d2e202b42c890
|
||||
size 3245357
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:d9f4a7e6752cf5d5a8e52e33f888805501267c42d136015e7db97697db070c73
|
||||
size 876438
|
||||
oid sha256:884b7d50235e59f577c997635e49d931bd574ff56b4ad1beaa00785e09b4ca36
|
||||
size 876592
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:9cf36ca76b9436b96a253df6e762ada8e5b9b8ebdcbe342e4f5f661b1a970c52
|
||||
size 1815053
|
||||
oid sha256:7f7c95ce3e115caea97448294960a642cb472caaf737a822ca688ec692d46b5a
|
||||
size 1816191
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:4e7643505897dcc033f781b822a0fc70a64224e3ecc5d3434efc3e495f8717b0
|
||||
size 1205703
|
||||
oid sha256:6aeffc8b02cbb205601fb58d96e4e3fd81eb51a78fa55bdd39d5b52b065f0f39
|
||||
size 1206547
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:e70460b2192bbd12348b164ccd852f836cc800b89fa9ded10e12d23492933f93
|
||||
size 4864683
|
||||
oid sha256:28a27b7cbc2c28758c6a01bdca01b8b5f76821a6100170fc9ad9fe0ceead5dc7
|
||||
size 4865535
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:01cf1dd66cacd5e35ba4c4fa972bdd005c9ba7af66d13cedb6e9d6d6c1e164e0
|
||||
size 804287
|
||||
oid sha256:5703d153b8e9b5d963f6f43ab6fa279febe4ec400d8f2b54ac436335d2b98752
|
||||
size 804324
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:811a1bb84088afb47727733e8f44cd618138bff22330202b23ff25051e7bf036
|
||||
size 3448327
|
||||
oid sha256:17d4c48338bb4ecb8db10ea311b03a5a123c10fdc592dd231c27d7eda3b23f43
|
||||
size 3448383
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:2929fb34d9bf4124398ff9182a2bb0661185c083895868bea19fc4295e9d6a33
|
||||
size 890655
|
||||
oid sha256:6c46c4f1bb32c15f21bf68870b28be6aeb108e510d399454c5867c489efc2879
|
||||
size 890681
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:8602402984a92aadb6443187af16c92604e8eaf5d2c7f0aa00bafc9b97b7e22a
|
||||
size 4921329
|
||||
oid sha256:26fd24c929c61f1dda233f6c9d4e09708f8b2a7ee329c01e0e1ab66051c3cb7d
|
||||
size 4921277
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:c36d74b5b68303ac49eb4d6a9acffae73454f6f2e8396a90a215e8d07a631c00
|
||||
size 792837
|
||||
oid sha256:703d50eac549737836813d0e6b921c849679d22734e5d0ba47803ccf48b9bbd1
|
||||
size 792858
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:c0b38aea7124c21edb25ad4682e3108e2a75ed18f6688e97a2483ae81ea3f56a
|
||||
size 3339089
|
||||
oid sha256:26fa8718bc27327504aaf04cc947daeb70fa1b584c684111326db69d47b11fe9
|
||||
size 3339021
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:30e97c52712573147aeca9d256766b03631c0c0260cfce200a99ba5356adca06
|
||||
size 1038827
|
||||
oid sha256:dc461454d39a20feb90d3e358f25e6cc73832564ae38529ada40ede88e02e3e5
|
||||
size 1039106
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:d00488a4943afcf69ad78ae19a38417142f4037690073ef682a47adb98e60491
|
||||
size 1865606
|
||||
oid sha256:0510cede421b59c01eca22f4bd3a021bd551e170bafac0b4b0bc680980caec12
|
||||
size 1865798
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:ca7c2a30fef5e59f1ced37f4c9cf176e5ac4c4674d7459249b3abf3511cb4bda
|
||||
size 1449475
|
||||
oid sha256:073f0c7442964a131c977ca471dc5139d7e35b3f6f400fe36ab28e58fff09d9b
|
||||
size 1443339
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:f0cbba908ffcf23cfe9e97231a75d4c11f4b77ee5d28962b2ed651ac3a8fec3a
|
||||
size 5586386
|
||||
oid sha256:4ab20eb6c846a393a0dfc6fca6c7038921cdbea713cecd93c3f91629f2ac1aa0
|
||||
size 5588092
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:40af8e281a8ebd64025e354ae56da2e5124b5c881e2a71fc8b5f23da1de7ca32
|
||||
size 936336
|
||||
oid sha256:3d595f0f69bdc051772ab61e4a66629401bc049c83c7e0d1e8bd6de2004e41a9
|
||||
size 936384
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:fdc62a242be7180a04a8d16c4b805c4d631718268e441d8b7ab23d96e2df5317
|
||||
size 3883990
|
||||
oid sha256:b42a59fce312074703cea13b5197739e330f1a4956cc87e80556a69c982b1d50
|
||||
size 3884410
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:d4f6ced9cda09bdf2dc8791a4b36d15a1a8337482a62521c0a3f88ff385ca543
|
||||
size 1045198
|
||||
oid sha256:c317e84870bcc83c706b252a7c5a63d5b54562e388c286ae07471e235e7342a7
|
||||
size 1045665
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:d2d428f340463695c58118de5b28a3012c743190d77ee4d8f5806d669754ffb0
|
||||
size 5613386
|
||||
oid sha256:c5b7b44f8fd6e11e36bae61cd55013c1f9a2ba728f3baeb68cbdc69115e137a2
|
||||
size 5614589
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:8f0a8e3305bb059325bd36a5661018a5b863d70e073df9383271258be7e20047
|
||||
size 924912
|
||||
oid sha256:79b06b0cfc1e345fa95d50061366ca484b4aa2e94762c4b618a3823b10c743fe
|
||||
size 924978
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:2cb6046b125ec952c78d1017919d489c5771ee2215584353052745bacaf460e5
|
||||
size 3787919
|
||||
oid sha256:226d857cf280be03260a9296f3da205826da60f4126d039b8b38a1666c22aa94
|
||||
size 3787647
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:9bc81858660510c3571d718a9aed37401ad12fafd966d3eefd7ff13feda2bfe6
|
||||
size 660064
|
||||
oid sha256:2e031f4f5e856dfc4deed7668039bd860fb8aedbe3cb90e6a276fe6bf03666a4
|
||||
size 660272
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:87087f06bf78979fd58caa1bc67117e80e211b77b1dea9a3c9fab83df83a238d
|
||||
size 1315611
|
||||
oid sha256:58d5981898efa4b7ed9327d5c41fe9849fbd3dca06683639f326d7bcdb099226
|
||||
size 1316324
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:0896ed561c09138e636f46579a5946d704e333f03c6e139b6d2d5022bf3b2dfe
|
||||
size 939204
|
||||
oid sha256:8b5daacd136372998dab68440691f9f6736de278c77067ac1f102d04cdec5e36
|
||||
size 939386
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:5770eec97ad4ee7ee7cb42adb81a70e915d30381b51ef3bb17e9396360b9202a
|
||||
size 3707792
|
||||
oid sha256:3895c0a82438fb0624753d9f0ea6f61f401e3bb11d2b84c2d5c0fc7011b52cf7
|
||||
size 3707969
|
||||
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user