Merge branch 'github:main' into ghrunners-arch
This commit is contained in:
2
.github/actions-scripts/enable-automerge.js
vendored
2
.github/actions-scripts/enable-automerge.js
vendored
@@ -17,7 +17,7 @@ async function main() {
|
||||
const github = getOctokit(token)
|
||||
const pull = await github.rest.pulls.get({
|
||||
owner: org,
|
||||
repo: repo,
|
||||
repo,
|
||||
pull_number: parseInt(prNumber),
|
||||
})
|
||||
|
||||
|
||||
@@ -191,16 +191,16 @@ async function run() {
|
||||
|
||||
await graphql(updateProjectNextItemMutation, {
|
||||
project: projectID,
|
||||
statusID: statusID,
|
||||
statusID,
|
||||
statusValueID: readyForReviewID,
|
||||
datePostedID: datePostedID,
|
||||
reviewDueDateID: reviewDueDateID,
|
||||
contributorTypeID: contributorTypeID,
|
||||
contributorType: contributorType,
|
||||
sizeTypeID: sizeTypeID,
|
||||
datePostedID,
|
||||
reviewDueDateID,
|
||||
contributorTypeID,
|
||||
contributorType,
|
||||
sizeTypeID,
|
||||
sizeType: '', // Although we aren't populating size, we are passing the variable so that we can use the shared mutation function
|
||||
featureID: featureID,
|
||||
authorID: authorID,
|
||||
featureID,
|
||||
authorID,
|
||||
headers: {
|
||||
authorization: `token ${process.env.TOKEN}`,
|
||||
'GraphQL-Features': 'projects_next_graphql',
|
||||
|
||||
16
.github/actions-scripts/projects.js
vendored
16
.github/actions-scripts/projects.js
vendored
@@ -59,7 +59,7 @@ export async function addItemsToProject(items, project) {
|
||||
`
|
||||
|
||||
const newItems = await graphql(mutation, {
|
||||
project: project,
|
||||
project,
|
||||
headers: {
|
||||
authorization: `token ${process.env.TOKEN}`,
|
||||
'GraphQL-Features': 'projects_next_graphql',
|
||||
@@ -221,40 +221,40 @@ export function generateUpdateProjectNextItemFieldMutation({
|
||||
$authorID: ID!
|
||||
) {
|
||||
${generateMutationToUpdateField({
|
||||
item: item,
|
||||
item,
|
||||
fieldID: '$statusID',
|
||||
value: '$statusValueID',
|
||||
})}
|
||||
${generateMutationToUpdateField({
|
||||
item: item,
|
||||
item,
|
||||
fieldID: '$datePostedID',
|
||||
value: formatDateForProject(datePosted),
|
||||
literal: true,
|
||||
})}
|
||||
${generateMutationToUpdateField({
|
||||
item: item,
|
||||
item,
|
||||
fieldID: '$reviewDueDateID',
|
||||
value: formatDateForProject(dueDate),
|
||||
literal: true,
|
||||
})}
|
||||
${generateMutationToUpdateField({
|
||||
item: item,
|
||||
item,
|
||||
fieldID: '$contributorTypeID',
|
||||
value: '$contributorType',
|
||||
})}
|
||||
${generateMutationToUpdateField({
|
||||
item: item,
|
||||
item,
|
||||
fieldID: '$sizeTypeID',
|
||||
value: '$sizeType',
|
||||
})}
|
||||
${generateMutationToUpdateField({
|
||||
item: item,
|
||||
item,
|
||||
fieldID: '$featureID',
|
||||
value: feature,
|
||||
literal: true,
|
||||
})}
|
||||
${generateMutationToUpdateField({
|
||||
item: item,
|
||||
item,
|
||||
fieldID: '$authorID',
|
||||
value: author,
|
||||
literal: true,
|
||||
|
||||
22
.github/actions-scripts/ready-for-docs-review.js
vendored
22
.github/actions-scripts/ready-for-docs-review.js
vendored
@@ -171,8 +171,8 @@ async function run() {
|
||||
const updateProjectNextItemMutation = generateUpdateProjectNextItemFieldMutation({
|
||||
item: newItemID,
|
||||
author: firstTimeContributor ? 'first time contributor' : process.env.AUTHOR_LOGIN,
|
||||
turnaround: turnaround,
|
||||
feature: feature,
|
||||
turnaround,
|
||||
feature,
|
||||
})
|
||||
|
||||
// Determine which variable to use for the contributor type
|
||||
@@ -192,16 +192,16 @@ async function run() {
|
||||
|
||||
await graphql(updateProjectNextItemMutation, {
|
||||
project: projectID,
|
||||
statusID: statusID,
|
||||
statusID,
|
||||
statusValueID: readyForReviewID,
|
||||
datePostedID: datePostedID,
|
||||
reviewDueDateID: reviewDueDateID,
|
||||
contributorTypeID: contributorTypeID,
|
||||
contributorType: contributorType,
|
||||
sizeTypeID: sizeTypeID,
|
||||
sizeType: sizeType,
|
||||
featureID: featureID,
|
||||
authorID: authorID,
|
||||
datePostedID,
|
||||
reviewDueDateID,
|
||||
contributorTypeID,
|
||||
contributorType,
|
||||
sizeTypeID,
|
||||
sizeType,
|
||||
featureID,
|
||||
authorID,
|
||||
headers: {
|
||||
authorization: `token ${process.env.TOKEN}`,
|
||||
'GraphQL-Features': 'projects_next_graphql',
|
||||
|
||||
@@ -2,7 +2,7 @@ import React, { useState, useEffect, useRef, ReactNode, RefObject } from 'react'
|
||||
import { useRouter } from 'next/router'
|
||||
import useSWR from 'swr'
|
||||
import cx from 'classnames'
|
||||
import { ActionList, DropdownMenu, Flash, Label, Overlay } from '@primer/react'
|
||||
import { ActionList, DropdownMenu, Flash, Label } from '@primer/react'
|
||||
import { ItemInput } from '@primer/react/lib/ActionList/List'
|
||||
|
||||
import { useTranslation } from 'components/hooks/useTranslation'
|
||||
@@ -287,8 +287,6 @@ function useDebounce<T>(value: T, delay?: number): [T, (value: T) => void] {
|
||||
|
||||
function ShowSearchError({
|
||||
error,
|
||||
isHeaderSearch,
|
||||
isMobileSearch,
|
||||
}: {
|
||||
error: Error
|
||||
isHeaderSearch: boolean
|
||||
@@ -296,10 +294,7 @@ function ShowSearchError({
|
||||
}) {
|
||||
const { t } = useTranslation('search')
|
||||
return (
|
||||
<Flash
|
||||
variant="danger"
|
||||
sx={{ margin: isMobileSearch || isHeaderSearch ? '2rem 2rem 0 2em' : '1rem' }}
|
||||
>
|
||||
<Flash variant="danger" sx={{ margin: '2rem 2rem 0 2em' }}>
|
||||
<p>{t('search_error')}</p>
|
||||
{process.env.NODE_ENV === 'development' && (
|
||||
<p>
|
||||
@@ -313,12 +308,9 @@ function ShowSearchError({
|
||||
}
|
||||
|
||||
function ShowSearchResults({
|
||||
anchorRef,
|
||||
isHeaderSearch,
|
||||
isMobileSearch,
|
||||
isLoading,
|
||||
results,
|
||||
closeSearch,
|
||||
debug,
|
||||
query,
|
||||
}: {
|
||||
@@ -490,49 +482,7 @@ function ShowSearchResults({
|
||||
/>
|
||||
</div>
|
||||
)
|
||||
// When there are search results, it doesn't matter if this is overlay or not.
|
||||
return (
|
||||
<div>
|
||||
{!isHeaderSearch && !isMobileSearch ? (
|
||||
<>
|
||||
<Overlay
|
||||
initialFocusRef={anchorRef}
|
||||
returnFocusRef={anchorRef}
|
||||
ignoreClickRefs={[anchorRef]}
|
||||
onEscape={() => closeSearch()}
|
||||
onClickOutside={() => closeSearch()}
|
||||
aria-labelledby="title"
|
||||
sx={
|
||||
isHeaderSearch
|
||||
? {
|
||||
background: 'none',
|
||||
boxShadow: 'none',
|
||||
position: 'static',
|
||||
overflowY: 'auto',
|
||||
maxHeight: '80vh',
|
||||
maxWidth: '96%',
|
||||
margin: '1.5em 2em 0 0.5em',
|
||||
scrollbarWidth: 'none',
|
||||
}
|
||||
: window.innerWidth < 1012
|
||||
? {
|
||||
marginTop: '28rem',
|
||||
marginLeft: '5rem',
|
||||
}
|
||||
: {
|
||||
marginTop: '15rem',
|
||||
marginLeft: '5rem',
|
||||
}
|
||||
}
|
||||
>
|
||||
{ActionListResults}
|
||||
</Overlay>
|
||||
</>
|
||||
) : (
|
||||
ActionListResults
|
||||
)}
|
||||
</div>
|
||||
)
|
||||
return <div>{ActionListResults}</div>
|
||||
}
|
||||
|
||||
// We have no results at all, but perhaps we're waiting.
|
||||
|
||||
@@ -62,9 +62,9 @@ const SidebarContent = styled(Box)`
|
||||
@media (min-width: ${themeGet('breakpoints.3')}) {
|
||||
position: sticky;
|
||||
padding-top: ${themeGet('space.4')};
|
||||
top: 4em;
|
||||
max-height: 75vh;
|
||||
top: 5em;
|
||||
max-height: calc(100vh - 5em);
|
||||
overflow-y: auto;
|
||||
padding-bottom: ${themeGet('space.4')};
|
||||
padding-bottom: ${themeGet('space.6')} !important;
|
||||
}
|
||||
`
|
||||
|
||||
@@ -1,32 +1,22 @@
|
||||
import { Search } from 'components/Search'
|
||||
import { OctocatHeader } from 'components/landing/OctocatHeader'
|
||||
import { useTranslation } from 'components/hooks/useTranslation'
|
||||
|
||||
export const HomePageHero = () => {
|
||||
const { t } = useTranslation(['search'])
|
||||
const { t } = useTranslation(['header', 'homepage'])
|
||||
|
||||
return (
|
||||
<section id="landing" className="color-bg-subtle p-6">
|
||||
{/* eslint-disable-next-line jsx-a11y/no-autofocus */}
|
||||
<Search iconSize={24} variant="expanded">
|
||||
{({ SearchInput, SearchResults }) => {
|
||||
return (
|
||||
<div className="container-xl">
|
||||
<div className="gutter gutter-xl-spacious d-lg-flex flex-row-reverse flex-items-center">
|
||||
<div className="col-lg-7">
|
||||
<OctocatHeader />
|
||||
</div>
|
||||
<div className="col-lg-5">
|
||||
<h1 className="text-semibold">{t('search:need_help')}</h1>
|
||||
{SearchInput}
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div>{SearchResults}</div>
|
||||
</div>
|
||||
)
|
||||
}}
|
||||
</Search>
|
||||
<div className="container-xl">
|
||||
<div className="gutter gutter-xl-spacious d-lg-flex flex-row-reverse flex-items-center">
|
||||
<div className="col-lg-6 col-xl-7 mb-4 mb-lg-0">
|
||||
<OctocatHeader />
|
||||
</div>
|
||||
<div className="col-lg-6 col-xl-5">
|
||||
<h1>{t('github_docs')}</h1>
|
||||
<p className="color-fg-muted f2 mb-0">{t('description')}</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
)
|
||||
}
|
||||
|
||||
@@ -17,7 +17,7 @@ import styles from './Header.module.scss'
|
||||
|
||||
export const Header = () => {
|
||||
const router = useRouter()
|
||||
const { isDotComAuthenticated, relativePath, error } = useMainContext()
|
||||
const { isDotComAuthenticated, error } = useMainContext()
|
||||
const { currentVersion } = useVersion()
|
||||
const { t } = useTranslation(['header', 'homepage'])
|
||||
const [isMenuOpen, setIsMenuOpen] = useState(
|
||||
@@ -93,7 +93,7 @@ export const Header = () => {
|
||||
)}
|
||||
|
||||
{/* <!-- GitHub.com homepage and 404 page has a stylized search; Enterprise homepages do not --> */}
|
||||
{relativePath !== 'index.md' && error !== '404' && (
|
||||
{error !== '404' && (
|
||||
<div className="d-inline-block ml-3">
|
||||
<Search iconSize={16} isHeaderSearch={true} />
|
||||
</div>
|
||||
@@ -158,7 +158,7 @@ export const Header = () => {
|
||||
)}
|
||||
|
||||
{/* <!-- GitHub.com homepage and 404 page has a stylized search; Enterprise homepages do not --> */}
|
||||
{relativePath !== 'index.md' && error !== '404' && (
|
||||
{error !== '404' && (
|
||||
<div className="my-2 pt-2">
|
||||
<Search iconSize={16} isMobileSearch={true} />
|
||||
</div>
|
||||
|
||||
@@ -80,6 +80,7 @@ For the overall list of included tools for each runner operating system, see the
|
||||
* [Ubuntu 18.04 LTS](https://github.com/actions/virtual-environments/blob/main/images/linux/Ubuntu1804-Readme.md)
|
||||
* [Windows Server 2022](https://github.com/actions/virtual-environments/blob/main/images/win/Windows2022-Readme.md)
|
||||
* [Windows Server 2019](https://github.com/actions/virtual-environments/blob/main/images/win/Windows2019-Readme.md)
|
||||
* [macOS 12](https://github.com/actions/virtual-environments/blob/main/images/macos/macos-12-Readme.md)
|
||||
* [macOS 11](https://github.com/actions/virtual-environments/blob/main/images/macos/macos-11-Readme.md)
|
||||
* [macOS 10.15](https://github.com/actions/virtual-environments/blob/main/images/macos/macos-10.15-Readme.md)
|
||||
|
||||
|
||||
@@ -19,7 +19,9 @@ topics:
|
||||
|
||||
{% ifversion ghec %}
|
||||
|
||||
Enterprise owners on {% data variables.product.product_name %} can control the requirements for authentication and access to the enterprise's resources. You can choose to allow members create and manage user accounts, or your enterprise can create and manage accounts for members. If you allow members to manage their own accounts, you can also configure SAML authentication to both increase security and centralize identity and access for the web applications that your team uses. If you choose to manage your members' user accounts, you must configure SAML authentication.
|
||||
Enterprise owners on {% data variables.product.product_name %} can control the requirements for authentication and access to the enterprise's resources.
|
||||
|
||||
You can choose to allow members to create and manage user accounts, or your enterprise can create and manage accounts for members with {% data variables.product.prodname_emus %}. If you allow members to manage their own accounts, you can also configure SAML authentication to both increase security and centralize identity and access for the web applications that your team uses. If you choose to manage your members' user accounts, you must configure SAML authentication.
|
||||
|
||||
## Authentication methods for {% data variables.product.product_name %}
|
||||
|
||||
|
||||
@@ -71,13 +71,13 @@ changelog:
|
||||
featuredLinks:
|
||||
guides:
|
||||
- '{% ifversion ghae %}/admin/user-management/auditing-users-across-your-enterprise{% endif %}'
|
||||
- /admin/identity-and-access-management/managing-iam-for-your-enterprise/about-authentication-for-your-enterprise
|
||||
- /admin/policies/enforcing-policies-for-your-enterprise/about-enterprise-policies
|
||||
- '{% ifversion ghae %}/admin/configuration/restricting-network-traffic-to-your-enterprise{% endif %}'
|
||||
- '{% ifversion ghes %}/admin/configuration/configuring-backups-on-your-appliance{% endif %}'
|
||||
- '{% ifversion ghes %}/admin/enterprise-management/creating-a-high-availability-replica{% endif %}'
|
||||
- '{% ifversion ghes %}/admin/overview/about-upgrades-to-new-releases{% endif %}'
|
||||
- '{% ifversion ghec %}/admin/user-management/managing-users-in-your-enterprise/roles-in-an-enterprise{% endif %}'
|
||||
- '{% ifversion ghec %}/admin/identity-and-access-management/managing-iam-with-enterprise-managed-users/about-enterprise-managed-users{% endif %}'
|
||||
- '{% ifversion ghec %}/admin/identity-and-access-management/managing-iam-for-your-enterprise/about-identity-and-access-management-for-your-enterprise{% endif %}'
|
||||
- '{% ifversion ghec %}/admin/user-management/managing-organizations-in-your-enterprise/adding-organizations-to-your-enterprise{% endif %}'
|
||||
- /admin/github-actions/getting-started-with-github-actions-for-your-enterprise/getting-started-with-self-hosted-runners-for-your-enterprise
|
||||
guideCards:
|
||||
|
||||
@@ -32,18 +32,18 @@ The enterprise account on {% ifversion ghes %}{% data variables.product.product_
|
||||
|
||||
{% endif %}
|
||||
|
||||
Organizations are shared accounts where enterprise members can collaborate across many projects at once. Organization owners can manage access to the organization's data and projects with sophisticated security and administrative features. For more information, see {% ifversion ghec %}"[About organizations](/organizations/collaborating-with-groups-in-organizations/about-organizations)."{% elsif ghes or ghae %}"[About organizations](/organizations/collaborating-with-groups-in-organizations/about-organizations)" and "[Managing users, organizations, and repositories](/admin/user-management)."{% endif %}
|
||||
Organizations are shared accounts where enterprise members can collaborate across many projects at once. Organization owners can manage access to the organization's data and projects with sophisticated security and administrative features. For more information, see "[About organizations](/organizations/collaborating-with-groups-in-organizations/about-organizations)."
|
||||
|
||||
{% ifversion ghec %}
|
||||
Enterprise owners can invite existing organizations to join your enterprise account, or create new organizations in the enterprise settings.
|
||||
{% endif %}
|
||||
|
||||
Your enterprise account allows you to manage and enforce policies for all the organizations owned by the enterprise. {% data reusables.enterprise.about-policies %} For more information, see "[About enterprise policies](/admin/policies/enforcing-policies-for-your-enterprise/about-enterprise-policies)."
|
||||
|
||||
{% ifversion ghec %}
|
||||
|
||||
Enterprise owners can create organizations and link the organizations to the enterprise. Alternatively, you can invite an existing organization to join your enterprise account. After you add organizations to your enterprise account, you can manage and enforce policies for the organizations. Specific enforcement options vary by setting; generally, you can choose to enforce a single policy for every organization in your enterprise account or allow owners to set policy on the organization level. For more information, see "[Setting policies for your enterprise](/admin/policies)."
|
||||
|
||||
{% data reusables.enterprise.create-an-enterprise-account %} For more information, see "[Creating an enterprise account](/admin/overview/creating-an-enterprise-account)."
|
||||
|
||||
{% elsif ghes or ghae %}
|
||||
|
||||
For more information about the management of policies for your enterprise account, see "[Setting policies for your enterprise](/admin/policies)."
|
||||
|
||||
{% endif %}
|
||||
|
||||
## About administration of your enterprise account
|
||||
|
||||
@@ -16,7 +16,7 @@ shortTitle: Create enterprise account
|
||||
|
||||
{% data variables.product.prodname_ghe_cloud %} includes the option to create an enterprise account, which enables collaboration between multiple organizations and gives administrators a single point of visibility and management. For more information, see "[About enterprise accounts](/admin/overview/about-enterprise-accounts)."
|
||||
|
||||
{% data reusables.enterprise.create-an-enterprise-account %} If you pay by invoice, you can create an enterprise account yourself on {% data variables.product.prodname_dotcom %}. If not, you can [contact our sales team](https://github.com/enterprise/contact?ref_page=/pricing&ref_cta=Contact%20Sales&ref_loc=cards) to move to invoicing.
|
||||
{% data reusables.enterprise.create-an-enterprise-account %} If you pay by invoice, you can create an enterprise account yourself on {% data variables.product.prodname_dotcom %}. If not, you can [contact our sales team](https://github.com/enterprise/contact?ref_page=/pricing&ref_cta=Contact%20Sales&ref_loc=cards) to create an enterprise account for you.
|
||||
|
||||
An enterprise account is included in {% data variables.product.prodname_ghe_cloud %}, so creating one will not affect your bill.
|
||||
|
||||
@@ -29,7 +29,10 @@ If the organization is connected to {% data variables.product.prodname_ghe_serve
|
||||
|
||||
## Creating an enterprise account on {% data variables.product.prodname_dotcom %}
|
||||
|
||||
To create an enterprise account on {% data variables.product.prodname_dotcom %}, your organization must be using {% data variables.product.prodname_ghe_cloud %} and paying by invoice.
|
||||
To create an enterprise account, your organization must be using {% data variables.product.prodname_ghe_cloud %}.
|
||||
|
||||
If you pay by invoice, you can create an enterprise account directly through {% data variables.product.prodname_dotcom %}. If you do not currently pay by invoice, you can [contact our sales team](https://github.com/enterprise/contact?ref_page=/pricing&ref_cta=Contact%20Sales&ref_loc=cards) to create an enterprise account for you.
|
||||
|
||||
|
||||
{% data reusables.organizations.billing-settings %}
|
||||
1. Click **Upgrade to enterprise account**.
|
||||
|
||||
@@ -0,0 +1,30 @@
|
||||
---
|
||||
title: About enterprise policies
|
||||
intro: 'With enterprise policies, you can manage the policies for all the organizations owned by your enterprise.'
|
||||
versions:
|
||||
ghec: '*'
|
||||
ghes: '*'
|
||||
ghae: '*'
|
||||
type: overview
|
||||
topics:
|
||||
- Enterprise
|
||||
- Policies
|
||||
---
|
||||
|
||||
To help you enforce business rules and regulatory compliance, policies provide a single point of management for all the organizations owned by an enterprise account.
|
||||
|
||||
{% data reusables.enterprise.about-policies %}
|
||||
|
||||
For example, with the "Base permissions" policy, you can allow organization owners to configure the "Base permissions" policy for their organization, or you can enforce a specific base permissions level, such as "Read", for all organizations within the enterprise.
|
||||
|
||||
By default, no enterprise policies are enforced. To identify policies that should be enforced to meet the unique requirements of your business, we recommend reviewing all the available policies in your enterprise account, starting with repository management policies. For more information, see "[Enforcing repository management polices in your enterprise](/admin/policies/enforcing-policies-for-your-enterprise/enforcing-repository-management-policies-in-your-enterprise)."
|
||||
|
||||
While you're configuring enterprise policies, to help you understand the impact of changing each policy, you can view the current configurations for the organizations owned by your enterprise.
|
||||
|
||||
{% ifversion ghes %}
|
||||
Another way to enforce standards within your enterprise is to use pre-receive hooks, which are scripts that run on {% data variables.product.product_location %} to implement quality checks. For more information, see "[Enforcing policy with pre-receive hooks](/admin/policies/enforcing-policy-with-pre-receive-hooks)."
|
||||
{% endif %}
|
||||
|
||||
## Further reading
|
||||
|
||||
- "[About enterprise accounts](/admin/overview/about-enterprise-accounts)"
|
||||
@@ -13,6 +13,7 @@ topics:
|
||||
- Enterprise
|
||||
- Policies
|
||||
children:
|
||||
- /about-enterprise-policies
|
||||
- /enforcing-repository-management-policies-in-your-enterprise
|
||||
- /enforcing-team-policies-in-your-enterprise
|
||||
- /enforcing-project-board-policies-in-your-enterprise
|
||||
|
||||
@@ -53,7 +53,7 @@ Each user on {% data variables.product.product_location %} consumes a seat on yo
|
||||
|
||||
{% endif %}
|
||||
|
||||
{% data reusables.billing.about-invoices-for-enterprises %} For more information about {% ifversion ghes %}licensing, usage, and invoices{% elsif ghec %}usage and invoices{% endif %}, see the following{% ifversion ghes %} in the {% data variables.product.prodname_ghe_cloud %} documentation.{% else %}.{% endif %}
|
||||
{% ifversion ghec %}For {% data variables.product.prodname_ghe_cloud %} customers with an enterprise account, {% data variables.product.company_short %} bills through your enterprise account on {% data variables.product.prodname_dotcom_the_website %}. For invoiced customers, each{% elsif ghes %}For invoiced {% data variables.product.prodname_enterprise %} customers, {% data variables.product.company_short %} bills through an enterprise account on {% data variables.product.prodname_dotcom_the_website %}. Each{% endif %} invoice includes a single bill charge for all of your paid {% data variables.product.prodname_dotcom_the_website %} services and any {% data variables.product.prodname_ghe_server %} instances. For more information about {% ifversion ghes %}licensing, usage, and invoices{% elsif ghec %}usage and invoices{% endif %}, see the following{% ifversion ghes %} in the {% data variables.product.prodname_ghe_cloud %} documentation.{% else %}.{% endif %}
|
||||
|
||||
{%- ifversion ghes %}
|
||||
- "[About per-user pricing](/enterprise-cloud@latest/billing/managing-billing-for-your-github-account/about-per-user-pricing)"
|
||||
|
||||
@@ -17,7 +17,7 @@ shortTitle: View subscription & usage
|
||||
|
||||
## About billing for enterprise accounts
|
||||
|
||||
You can view an overview of {% ifversion ghec %}your subscription and paid{% elsif ghes %}the license{% endif %} usage for {% ifversion ghec %}your{% elsif ghes %}the{% endif %} enterprise account on {% ifversion ghec %}{% data variables.product.prodname_dotcom_the_website %}{% elsif ghes %}{% data variables.product.product_location %}{% endif %}.
|
||||
You can view an overview of {% ifversion ghec %}your subscription and paid{% elsif ghes %}the license{% endif %} usage for {% ifversion ghec %}your{% elsif ghes %}the{% endif %} enterprise account on {% ifversion ghec %}{% data variables.product.prodname_dotcom_the_website %}{% elsif ghes %}{% data variables.product.product_location %}{% endif %}.{% ifversion ghec %} {% data reusables.enterprise.create-an-enterprise-account %} For more information, see "[Creating an enterprise account](/enterprise-cloud@latest/admin/overview/creating-an-enterprise-account)."{% endif %}
|
||||
|
||||
For invoiced {% data variables.product.prodname_enterprise %} customers{% ifversion ghes %} who use both {% data variables.product.prodname_ghe_cloud %} and {% data variables.product.prodname_ghe_server %}{% endif %}, each invoice includes details about billed services for all products. For example, in addition to your usage for {% ifversion ghec %}{% data variables.product.prodname_ghe_cloud %}{% elsif ghes %}{% data variables.product.product_name %}{% endif %}, you may have usage for {% data variables.product.prodname_GH_advanced_security %}{% ifversion ghec %}, {% elsif ghes %}. You may also have usage on {% data variables.product.prodname_dotcom_the_website %}, like {% endif %}paid licenses in organizations outside of your enterprise account, data packs for {% data variables.large_files.product_name_long %}, or subscriptions to apps in {% data variables.product.prodname_marketplace %}. For more information about invoices, see "[Managing invoices for your enterprise]({% ifversion ghes %}/enterprise-cloud@latest{% endif %}/billing/managing-billing-for-your-github-account/managing-invoices-for-your-enterprise){% ifversion ghec %}."{% elsif ghes %}" in the {% data variables.product.prodname_dotcom_the_website %} documentation.{% endif %}
|
||||
|
||||
|
||||
@@ -1481,6 +1481,17 @@ This event occurs when someone triggers a workflow run on GitHub or sends a `POS
|
||||
|
||||
- {% data variables.product.prodname_github_apps %} must have the `contents` permission to receive this webhook.
|
||||
|
||||
### Webhook payload object
|
||||
|
||||
| Key | Type | Description |
|
||||
|-----|-----|-----|
|
||||
| `inputs` | `object` | Inputs to the workflow. Each key represents the name of the input while it's value represents the value of that input. |
|
||||
{% data reusables.webhooks.org_desc %}
|
||||
| `ref` | `string` | The branch ref from which the workflow was run. |
|
||||
{% data reusables.webhooks.repo_desc %}
|
||||
{% data reusables.webhooks.sender_desc %}
|
||||
| `workflow` | `string` | Relative path to the workflow file which contains the workflow. |
|
||||
|
||||
### Webhook payload example
|
||||
|
||||
{{ webhookPayloadsForCurrentVersion.workflow_dispatch }}
|
||||
|
||||
@@ -56,21 +56,23 @@ Your organization's billing settings page allows you to manage settings like you
|
||||
Only organization members with the *owner* or *billing manager* role can access or change billing settings for your organization. A billing manager is a user who manages the billing settings for your organization and does not use a paid license in your organization's subscription. For more information on adding a billing manager to your organization, see "[Adding a billing manager to your organization](/organizations/managing-peoples-access-to-your-organization-with-roles/adding-a-billing-manager-to-your-organization)."
|
||||
|
||||
### Setting up an enterprise account with {% data variables.product.prodname_ghe_cloud %}
|
||||
{% note %}
|
||||
|
||||
To get an enterprise account created for you, contact [{% data variables.product.prodname_dotcom %}'s Sales team](https://enterprise.github.com/contact).
|
||||
|
||||
{% endnote %}
|
||||
|
||||
#### 1. About enterprise accounts
|
||||
|
||||
An enterprise account allows you to centrally manage policy and settings for multiple {% data variables.product.prodname_dotcom %} organizations, including member access, billing and usage and security. For more information, see "[About enterprise accounts](/enterprise-cloud@latest/admin/overview/about-enterprise-accounts)."
|
||||
#### 2. Adding organizations to your enterprise account
|
||||
|
||||
#### 2. Creating an enterpise account
|
||||
|
||||
{% data variables.product.prodname_ghe_cloud %} customers paying by invoice can create an enterprise account directly through {% data variables.product.prodname_dotcom %}. For more information, see "[Creating an enterprise account](/enterprise-cloud@latest/admin/overview/creating-an-enterprise-account)."
|
||||
|
||||
{% data variables.product.prodname_ghe_cloud %} customers not currently paying by invoice can contact [{% data variables.product.prodname_dotcom %}'s Sales team](https://enterprise.github.com/contact) to create an enterprise account for you.
|
||||
|
||||
#### 3. Adding organizations to your enterprise account
|
||||
|
||||
You can create new organizations to manage within your enterprise account. For more information, see "[Adding organizations to your enterprise](/enterprise-cloud@latest/admin/user-management/managing-organizations-in-your-enterprise/adding-organizations-to-your-enterprise)."
|
||||
|
||||
Contact your {% data variables.product.prodname_dotcom %} sales account representative if you want to transfer an existing organization to your enterprise account.
|
||||
#### 3. Viewing the subscription and usage for your enterprise account
|
||||
#### 4. Viewing the subscription and usage for your enterprise account
|
||||
You can view your current subscription, license usage, invoices, payment history, and other billing information for your enterprise account at any time. Both enterprise owners and billing managers can access and manage billing settings for enterprise accounts. For more information, see "[Viewing the subscription and usage for your enterprise account](/enterprise-cloud@latest/billing/managing-billing-for-your-github-account/viewing-the-subscription-and-usage-for-your-enterprise-account)."
|
||||
|
||||
## Part 3: Managing your organization or enterprise members and teams with {% data variables.product.prodname_ghe_cloud %}
|
||||
|
||||
@@ -135,5 +135,4 @@ get_started_with_your_enterprise_account:
|
||||
- /admin/user-management/managing-users-in-your-enterprise/inviting-people-to-manage-your-enterprise
|
||||
- /admin/user-management/managing-organizations-in-your-enterprise/adding-organizations-to-your-enterprise
|
||||
- /admin/authentication/managing-identity-and-access-for-your-enterprise/configuring-saml-single-sign-on-for-your-enterprise
|
||||
- /admin/policies/enforcing-policies-for-your-enterprise/enforcing-repository-management-policies-in-your-enterprise
|
||||
- /admin/policies/enforcing-policies-for-your-enterprise/enforcing-policies-for-security-settings-in-your-enterprise
|
||||
- /admin/policies/enforcing-policies-for-your-enterprise/about-enterprise-policies
|
||||
|
||||
1
data/reusables/enterprise/about-policies.md
Normal file
1
data/reusables/enterprise/about-policies.md
Normal file
@@ -0,0 +1 @@
|
||||
Each enterprise policy controls the options available for a policy at the organization level. You can choose to not enforce a policy, which allows organization owners to configure the policy for the organization, or you can choose from a set of options to enforce for all organizations owned by your enterprise.
|
||||
@@ -46,6 +46,7 @@ search:
|
||||
homepage:
|
||||
explore_by_product: Explore by product
|
||||
version_picker: Version
|
||||
description: Help for wherever you are on your GitHub journey.
|
||||
toc:
|
||||
getting_started: Getting started
|
||||
popular: Popular
|
||||
|
||||
@@ -104254,11 +104254,11 @@
|
||||
},
|
||||
{
|
||||
"type": "boolean",
|
||||
"description": "<p>Blocks creation of new branches which match the branch protection pattern. Set to <code>true</code> to prohibit new branch creation. Default: <code>false</code>.</p>",
|
||||
"description": "<p>If set to <code>true</code>, the <code>restrictions</code> branch protection settings which limits who can push will also block pushes which create new branches, unless the push is initiated by a user, team, or app which has the ability to push. Set to <code>true</code> to restrict new branch creation. Default: <code>false</code>.</p>",
|
||||
"name": "block_creations",
|
||||
"in": "body",
|
||||
"rawType": "boolean",
|
||||
"rawDescription": "Blocks creation of new branches which match the branch protection pattern. Set to `true` to prohibit new branch creation. Default: `false`.",
|
||||
"rawDescription": "If set to `true`, the `restrictions` branch protection settings which limits who can push will also block pushes which create new branches, unless the push is initiated by a user, team, or app which has the ability to push. Set to `true` to restrict new branch creation. Default: `false`.",
|
||||
"isRequired": false,
|
||||
"childParamsGroups": []
|
||||
},
|
||||
|
||||
@@ -85840,11 +85840,11 @@
|
||||
},
|
||||
{
|
||||
"type": "boolean",
|
||||
"description": "<p>Blocks creation of new branches which match the branch protection pattern. Set to <code>true</code> to prohibit new branch creation. Default: <code>false</code>.</p>",
|
||||
"description": "<p>If set to <code>true</code>, the <code>restrictions</code> branch protection settings which limits who can push will also block pushes which create new branches, unless the push is initiated by a user, team, or app which has the ability to push. Set to <code>true</code> to restrict new branch creation. Default: <code>false</code>.</p>",
|
||||
"name": "block_creations",
|
||||
"in": "body",
|
||||
"rawType": "boolean",
|
||||
"rawDescription": "Blocks creation of new branches which match the branch protection pattern. Set to `true` to prohibit new branch creation. Default: `false`.",
|
||||
"rawDescription": "If set to `true`, the `restrictions` branch protection settings which limits who can push will also block pushes which create new branches, unless the push is initiated by a user, team, or app which has the ability to push. Set to `true` to restrict new branch creation. Default: `false`.",
|
||||
"isRequired": false,
|
||||
"childParamsGroups": []
|
||||
},
|
||||
|
||||
@@ -88984,11 +88984,11 @@
|
||||
},
|
||||
{
|
||||
"type": "boolean",
|
||||
"description": "<p>Blocks creation of new branches which match the branch protection pattern. Set to <code>true</code> to prohibit new branch creation. Default: <code>false</code>.</p>",
|
||||
"description": "<p>If set to <code>true</code>, the <code>restrictions</code> branch protection settings which limits who can push will also block pushes which create new branches, unless the push is initiated by a user, team, or app which has the ability to push. Set to <code>true</code> to restrict new branch creation. Default: <code>false</code>.</p>",
|
||||
"name": "block_creations",
|
||||
"in": "body",
|
||||
"rawType": "boolean",
|
||||
"rawDescription": "Blocks creation of new branches which match the branch protection pattern. Set to `true` to prohibit new branch creation. Default: `false`.",
|
||||
"rawDescription": "If set to `true`, the `restrictions` branch protection settings which limits who can push will also block pushes which create new branches, unless the push is initiated by a user, team, or app which has the ability to push. Set to `true` to restrict new branch creation. Default: `false`.",
|
||||
"isRequired": false,
|
||||
"childParamsGroups": []
|
||||
},
|
||||
|
||||
@@ -89220,11 +89220,11 @@
|
||||
},
|
||||
{
|
||||
"type": "boolean",
|
||||
"description": "<p>Blocks creation of new branches which match the branch protection pattern. Set to <code>true</code> to prohibit new branch creation. Default: <code>false</code>.</p>",
|
||||
"description": "<p>If set to <code>true</code>, the <code>restrictions</code> branch protection settings which limits who can push will also block pushes which create new branches, unless the push is initiated by a user, team, or app which has the ability to push. Set to <code>true</code> to restrict new branch creation. Default: <code>false</code>.</p>",
|
||||
"name": "block_creations",
|
||||
"in": "body",
|
||||
"rawType": "boolean",
|
||||
"rawDescription": "Blocks creation of new branches which match the branch protection pattern. Set to `true` to prohibit new branch creation. Default: `false`.",
|
||||
"rawDescription": "If set to `true`, the `restrictions` branch protection settings which limits who can push will also block pushes which create new branches, unless the push is initiated by a user, team, or app which has the ability to push. Set to `true` to restrict new branch creation. Default: `false`.",
|
||||
"isRequired": false,
|
||||
"childParamsGroups": []
|
||||
},
|
||||
|
||||
@@ -91763,11 +91763,11 @@
|
||||
},
|
||||
{
|
||||
"type": "boolean",
|
||||
"description": "<p>Blocks creation of new branches which match the branch protection pattern. Set to <code>true</code> to prohibit new branch creation. Default: <code>false</code>.</p>",
|
||||
"description": "<p>If set to <code>true</code>, the <code>restrictions</code> branch protection settings which limits who can push will also block pushes which create new branches, unless the push is initiated by a user, team, or app which has the ability to push. Set to <code>true</code> to restrict new branch creation. Default: <code>false</code>.</p>",
|
||||
"name": "block_creations",
|
||||
"in": "body",
|
||||
"rawType": "boolean",
|
||||
"rawDescription": "Blocks creation of new branches which match the branch protection pattern. Set to `true` to prohibit new branch creation. Default: `false`.",
|
||||
"rawDescription": "If set to `true`, the `restrictions` branch protection settings which limits who can push will also block pushes which create new branches, unless the push is initiated by a user, team, or app which has the ability to push. Set to `true` to restrict new branch creation. Default: `false`.",
|
||||
"isRequired": false,
|
||||
"childParamsGroups": []
|
||||
},
|
||||
|
||||
@@ -100239,11 +100239,11 @@
|
||||
},
|
||||
{
|
||||
"type": "boolean",
|
||||
"description": "<p>Blocks creation of new branches which match the branch protection pattern. Set to <code>true</code> to prohibit new branch creation. Default: <code>false</code>.</p>",
|
||||
"description": "<p>If set to <code>true</code>, the <code>restrictions</code> branch protection settings which limits who can push will also block pushes which create new branches, unless the push is initiated by a user, team, or app which has the ability to push. Set to <code>true</code> to restrict new branch creation. Default: <code>false</code>.</p>",
|
||||
"name": "block_creations",
|
||||
"in": "body",
|
||||
"rawType": "boolean",
|
||||
"rawDescription": "Blocks creation of new branches which match the branch protection pattern. Set to `true` to prohibit new branch creation. Default: `false`.",
|
||||
"rawDescription": "If set to `true`, the `restrictions` branch protection settings which limits who can push will also block pushes which create new branches, unless the push is initiated by a user, team, or app which has the ability to push. Set to `true` to restrict new branch creation. Default: `false`.",
|
||||
"isRequired": false,
|
||||
"childParamsGroups": []
|
||||
},
|
||||
|
||||
@@ -87153,11 +87153,11 @@
|
||||
},
|
||||
{
|
||||
"type": "boolean",
|
||||
"description": "<p>Blocks creation of new branches which match the branch protection pattern. Set to <code>true</code> to prohibit new branch creation. Default: <code>false</code>.</p>",
|
||||
"description": "<p>If set to <code>true</code>, the <code>restrictions</code> branch protection settings which limits who can push will also block pushes which create new branches, unless the push is initiated by a user, team, or app which has the ability to push. Set to <code>true</code> to restrict new branch creation. Default: <code>false</code>.</p>",
|
||||
"name": "block_creations",
|
||||
"in": "body",
|
||||
"rawType": "boolean",
|
||||
"rawDescription": "Blocks creation of new branches which match the branch protection pattern. Set to `true` to prohibit new branch creation. Default: `false`.",
|
||||
"rawDescription": "If set to `true`, the `restrictions` branch protection settings which limits who can push will also block pushes which create new branches, unless the push is initiated by a user, team, or app which has the ability to push. Set to `true` to restrict new branch creation. Default: `false`.",
|
||||
"isRequired": false,
|
||||
"childParamsGroups": []
|
||||
},
|
||||
|
||||
@@ -201706,7 +201706,7 @@
|
||||
},
|
||||
"block_creations": {
|
||||
"type": "boolean",
|
||||
"description": "Blocks creation of new branches which match the branch protection pattern. Set to `true` to prohibit new branch creation. Default: `false`."
|
||||
"description": "If set to `true`, the `restrictions` branch protection settings which limits who can push will also block pushes which create new branches, unless the push is initiated by a user, team, or app which has the ability to push. Set to `true` to restrict new branch creation. Default: `false`."
|
||||
},
|
||||
"required_conversation_resolution": {
|
||||
"type": "boolean",
|
||||
|
||||
@@ -157898,7 +157898,7 @@
|
||||
},
|
||||
"block_creations": {
|
||||
"type": "boolean",
|
||||
"description": "Blocks creation of new branches which match the branch protection pattern. Set to `true` to prohibit new branch creation. Default: `false`."
|
||||
"description": "If set to `true`, the `restrictions` branch protection settings which limits who can push will also block pushes which create new branches, unless the push is initiated by a user, team, or app which has the ability to push. Set to `true` to restrict new branch creation. Default: `false`."
|
||||
},
|
||||
"required_conversation_resolution": {
|
||||
"type": "boolean",
|
||||
|
||||
@@ -162237,7 +162237,7 @@
|
||||
},
|
||||
"block_creations": {
|
||||
"type": "boolean",
|
||||
"description": "Blocks creation of new branches which match the branch protection pattern. Set to `true` to prohibit new branch creation. Default: `false`."
|
||||
"description": "If set to `true`, the `restrictions` branch protection settings which limits who can push will also block pushes which create new branches, unless the push is initiated by a user, team, or app which has the ability to push. Set to `true` to restrict new branch creation. Default: `false`."
|
||||
},
|
||||
"required_conversation_resolution": {
|
||||
"type": "boolean",
|
||||
|
||||
@@ -165701,7 +165701,7 @@
|
||||
},
|
||||
"block_creations": {
|
||||
"type": "boolean",
|
||||
"description": "Blocks creation of new branches which match the branch protection pattern. Set to `true` to prohibit new branch creation. Default: `false`."
|
||||
"description": "If set to `true`, the `restrictions` branch protection settings which limits who can push will also block pushes which create new branches, unless the push is initiated by a user, team, or app which has the ability to push. Set to `true` to restrict new branch creation. Default: `false`."
|
||||
},
|
||||
"required_conversation_resolution": {
|
||||
"type": "boolean",
|
||||
|
||||
@@ -180862,7 +180862,7 @@
|
||||
},
|
||||
"block_creations": {
|
||||
"type": "boolean",
|
||||
"description": "Blocks creation of new branches which match the branch protection pattern. Set to `true` to prohibit new branch creation. Default: `false`."
|
||||
"description": "If set to `true`, the `restrictions` branch protection settings which limits who can push will also block pushes which create new branches, unless the push is initiated by a user, team, or app which has the ability to push. Set to `true` to restrict new branch creation. Default: `false`."
|
||||
},
|
||||
"required_conversation_resolution": {
|
||||
"type": "boolean",
|
||||
|
||||
@@ -192621,7 +192621,7 @@
|
||||
},
|
||||
"block_creations": {
|
||||
"type": "boolean",
|
||||
"description": "Blocks creation of new branches which match the branch protection pattern. Set to `true` to prohibit new branch creation. Default: `false`."
|
||||
"description": "If set to `true`, the `restrictions` branch protection settings which limits who can push will also block pushes which create new branches, unless the push is initiated by a user, team, or app which has the ability to push. Set to `true` to restrict new branch creation. Default: `false`."
|
||||
},
|
||||
"required_conversation_resolution": {
|
||||
"type": "boolean",
|
||||
|
||||
@@ -148761,7 +148761,7 @@
|
||||
},
|
||||
"block_creations": {
|
||||
"type": "boolean",
|
||||
"description": "Blocks creation of new branches which match the branch protection pattern. Set to `true` to prohibit new branch creation. Default: `false`."
|
||||
"description": "If set to `true`, the `restrictions` branch protection settings which limits who can push will also block pushes which create new branches, unless the push is initiated by a user, team, or app which has the ability to push. Set to `true` to restrict new branch creation. Default: `false`."
|
||||
},
|
||||
"required_conversation_resolution": {
|
||||
"type": "boolean",
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:a66208ba1fa2ea8a715bc333b7e1952a83d7d384a8bc8ce9b3a94c2094b12740
|
||||
size 686425
|
||||
oid sha256:45eec45e549fa04df760c2d133744cb6696f0733e6feeb8b2faa6e1cc3fbd0a1
|
||||
size 686308
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:0b5da36b6dfa491e9f7409ae429fdae25ac00aafc728be65341cd9b026a02a1b
|
||||
size 1335439
|
||||
oid sha256:0febe199e3ce31c19fc3da32c435a4c788fbca65c2b9b8fad54bdf1320c938ea
|
||||
size 1336302
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:716ae21d1e74221a7ebd7702030b97d79e9bd33d6cdccf6df20cc262bbdfa669
|
||||
size 917612
|
||||
oid sha256:afed828ae58e9fa821eb868144b460830deab7461ccd008081fe4b939b24c2b4
|
||||
size 917755
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:1bac79bd428b6093b3112222534c2b3a948b66f6d438e8645db6c24b946f9028
|
||||
size 3537196
|
||||
oid sha256:9a733fbc3443c6e1825306dfebfefdbdf6e6c63d7296afc3d481b07589020de6
|
||||
size 3537523
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:aa61ef829e2c908a408e104d5cda442e46e9b5fdc822a9daf46b75dae1962a18
|
||||
size 633343
|
||||
oid sha256:4ddeef7faeac9aab5e0a06a52f7273ccc5abc28e22f3e8bdde7c19c029f063f1
|
||||
size 631967
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:03b6d7001794bc8e9a2e0c7c07465e55f4c186cd36b4685f48745fc1ba406c22
|
||||
size 2674831
|
||||
oid sha256:5dcdc5a61778a3c667a3d24da93e1302ba47cae67f1e581341cd0012ce32c1af
|
||||
size 2663740
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:b6d1b536d85538d562e0ad314df75ac1740c1a3b42706d184fcd86f8627fa1e0
|
||||
size 696504
|
||||
oid sha256:25bb27455088ed2c9597dcd533e3a0fb1b803cfcf8eaeb90ea6853be9dea363e
|
||||
size 696416
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:5850b62c0452c84f753f9d7629eb03a5b3238d97c379a33e26f231644e910c45
|
||||
size 3720567
|
||||
oid sha256:103d6d7ffc934d6bcb6bf990b478bbc8473c2f98ba0ab12fa6cef01c537a83d0
|
||||
size 3718970
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:e42b09fbcf2c685462da7b4393d6c66fe9eed9d4e3f32d87ca72d565b6f1ced0
|
||||
size 623615
|
||||
oid sha256:e546eae9071262337a4c3f09ede6af8956038913a9899235ed89ce09f623171a
|
||||
size 623526
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:f37b82aec2eda5ceb7fcd307484276a8a22794fbc76bf57ec487bf20c45a3315
|
||||
size 2565493
|
||||
oid sha256:b8d350e16212f96742a75a84ca5671c50da8067c564206663a72c69f18dd4921
|
||||
size 2569190
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:2f4ff0cf9dac77bc3d7ac83a2fc53e92c6f10bda8e417ca7ef7561c7a479f848
|
||||
size 704046
|
||||
oid sha256:aca2ac22c3e40cfd608e1c0bc9505431146e0e37323bd0db902d5a2ff67eab55
|
||||
size 704715
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:29e6254e857d8b16514eb91f83ff9d3b4ee00a3cb6a6d5838ce7b297a214a024
|
||||
size 1363142
|
||||
oid sha256:d133ff96847920746364eb76d94f5a15cea284d358cd0874620dec1c57bd3af5
|
||||
size 1363408
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:8a1abf8424a1b4f6e31629c9ab42c18caf0f4671baffde76f001ec55ae4dc07f
|
||||
size 948339
|
||||
oid sha256:e526f098b0c267d8c757131b14ba32252ac0875729fa578e00d2b27905a364eb
|
||||
size 948049
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:348230e14946e713d2bf573ac15a33a60b70a3cae819eb9deecc0d4052b46bcc
|
||||
size 3658215
|
||||
oid sha256:1ef62c12f1233390dfe303d670ad2cbd2d83d88c0a73c513faaa512c52e7ac84
|
||||
size 3659914
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:55257c7dc499f1955eac9f0247ccc41045bcf3655dd32dfde73b91f976034b1e
|
||||
size 649603
|
||||
oid sha256:0938e8d2846ea3b30abf7e70f50bba76dc9d5b263adb2b1e2eab606ab21d05bf
|
||||
size 649472
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:64516858d16b1dc4c84eaf1c77c025c285138b96226e13d8d8e848de266f547f
|
||||
size 2746075
|
||||
oid sha256:42ac2ae786f2209445354f579076b95b1b348b5f929f958f1943ff00d7e2c02f
|
||||
size 2734937
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:40e6b1b42d73a765996a1135760044504bcadc3dd6aed4f3bf7910dbac33f83a
|
||||
size 714942
|
||||
oid sha256:1b403e60ddb4fcfee68b88d593d1579fb44749536a66c110dafd9b11ddc33f6c
|
||||
size 714194
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:292bc73640ba59c52c32b383881f005ca21b6395d0b89a66be5ab3f532eea88f
|
||||
size 3816365
|
||||
oid sha256:1c3b5d8c996d10a92a07badbd3af2ac6fbd8330480f3a768e89633bb4f4f5c03
|
||||
size 3816188
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:adfe42390142791edbb3893175d48b52fc0de0dca18e6ff031e14605bfd8be83
|
||||
size 639646
|
||||
oid sha256:4de3bdc9568cbdd01a03850bae30e04ec53faf87b6ae3a51029e668a2d96053a
|
||||
size 640559
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:e05f62455ce70f63d58812a5f63e637e63ae608478b8130a6a979a15cbfbebd1
|
||||
size 2627809
|
||||
oid sha256:4f8c1b147406b4912f029d507799f5d646b8de061f75d34fb2f17cbe9c373a02
|
||||
size 2633542
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:16918518ac1398304028d389618fda1ada8370d791c3c54b63fffe75accfb2b8
|
||||
size 727705
|
||||
oid sha256:29a1ff64014552565706b09f5bf66503bd79bbb5cd7ad010056d5b8ad9c5d9cb
|
||||
size 728034
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:a723047ad6c856d9e29170a0aabb8dcc9f8c9c37971e3dd80622053c6212183b
|
||||
size 1405522
|
||||
oid sha256:69d4fd297beee66e3c0d4e8ab1f0f839a120ba968da3874c9b52aa1174dbce1b
|
||||
size 1406961
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:3c8f54445243241457bb7b2d95fd2a3d49e6831f678a8c63f09fe108f02a2533
|
||||
size 981710
|
||||
oid sha256:4863bc45cae5ad5bf59993f2ca447860214e67f12c027489192402482c6d5022
|
||||
size 982704
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:91939cc8e89a109d209e44ebf1cd7cf6a55eef582601ab86df6bcb457d86d1b4
|
||||
size 3772890
|
||||
oid sha256:97453fcc7d831efe74394980249eb22a4c9eca1ff49270933f6ca22b9dcb546d
|
||||
size 3777899
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:f1e9f260315e7646bf319c94b0a8fbdfc7b0761cede2f995bc9cd8f70c472091
|
||||
size 668469
|
||||
oid sha256:37577dc3fef9366027b5d958b0df65b083d19a1ed9882dfddf1297052cd9072e
|
||||
size 668963
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:c36b86200af62298fc36ce64c775b8bc761405847515e76a5de599eefe9141cd
|
||||
size 2831410
|
||||
oid sha256:721ab58f8b60909c5c9b920f4fa4bd2e379595591d44664445ed9a3c68668a9b
|
||||
size 2820384
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:1e851b6104040345a48029a95db4d4ebb0350cea1d831351c212e875164d2ac5
|
||||
size 737672
|
||||
oid sha256:bd9b184372e7e162c086531b0123be27699f8c67f8ff03460d9f222d942d136c
|
||||
size 737692
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:8e44918fc1c561b4696a2cbdd85080c51d113974085e53d38cb7653d56fbdfe3
|
||||
size 3938506
|
||||
oid sha256:7d9405247fd21f8a9b5591a17f62f197e92118d08fa24e63df6162978b0daec5
|
||||
size 3941953
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:8d3344d261573eff1aa7cab6320fcff19bb70a8be57f3f3299cc5ea21524dd85
|
||||
size 658947
|
||||
oid sha256:ad8a7d5a2c56a1069dc2a5666ac6ef68cb4546e437d6a48bfa9950e04c345df9
|
||||
size 659846
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:9031b31a3f07786f45f866a82b2489ee99adbcd04fd57ea1d4b4ba78a24306d5
|
||||
size 2709598
|
||||
oid sha256:bab39b1e4fcc01a038e37744127b1b2a33713cefaf453e71b372533f89d7f0a9
|
||||
size 2714831
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:da18932b4de4bc1dd57514398177f17ab754deb4d022c65ee07a9be4d63cd626
|
||||
size 728724
|
||||
oid sha256:4fa79a9b69437445aba35386dd72502e6d6ad3644d73b3e38c8f39e27dce5818
|
||||
size 727408
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:cc70198410f88728d0069d46188ac7ac67b5e40f4d27bbba91413c1709201806
|
||||
size 1408537
|
||||
oid sha256:5cc9f9f82a3ed49fdbe7c14f1f763fcfc95c5e441ebb1a045a19a6096cbf5d56
|
||||
size 1407863
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:e9a30340da07d9e909086fb339e22ebe7b3a92c61033ee36cd450540558d94f9
|
||||
size 988360
|
||||
oid sha256:1b266a7e9adde740ca1f02eefe25b71173d192e25c955da11c6212aeb2bcd6d9
|
||||
size 989346
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:1a68400ad4fd94680c3d8cee81053905cce3b6b564d49096d5e19d18b9c2a7f1
|
||||
size 3793946
|
||||
oid sha256:08b2cbc76c01790d9c0a21d7b3537651c8c9e1ee6c8c47e4da3758225bd1e1b2
|
||||
size 3795623
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:9753a6dc8c98e34299798c5da3d32e573b7ba6fc51e8877c8492a99847e0ee2e
|
||||
size 670166
|
||||
oid sha256:1eb571876358aca456c0ebc06c60878839acb453f67c44305fc479a126033a96
|
||||
size 670306
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:65af0eb9a23dd0688f0b104e56a38c3d8c6046e8ae393083317b2214248b9d0b
|
||||
size 2836811
|
||||
oid sha256:9d73ce1c4b5abf8458e657fb89a05cad48f5e728d3ac79c09965a785b0b262aa
|
||||
size 2823777
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:f4ef561ab868aca0d10a1f82262826f586df43f05c0fd9292d1bcaa4e4b7bca7
|
||||
size 737560
|
||||
oid sha256:fa02977483ccbf2b30fcbef20f8f46900fd0dfb52c5c192d598843e2d1e81451
|
||||
size 737847
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:e38b2510d0f9b5ad4399a5b1cad77aa4f697b8355aa14aeccfc23e603fb9f3c1
|
||||
size 3945167
|
||||
oid sha256:9dad47d23e9f672f6413306857af8dde6bc4550ac93ccf15e001f9e39bd0d207
|
||||
size 3945381
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:e5d00cb865090d263fdc2d071bb4a90a72b8f153e5b813c5e5191dce48beb260
|
||||
size 660133
|
||||
oid sha256:3a53b4e6f826a41a669818649d54797d21192137dcc69ab5213ddd2826bdad3d
|
||||
size 660682
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:23271e130f461d0cddfff1b4be3673b491ff09f03c5df3e668134725b443d9c9
|
||||
size 2714971
|
||||
oid sha256:81ff00007e640de85c490c6fb325661b11a48f2fa9b68f61cb7afd2b5271abae
|
||||
size 2719190
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:91f6463fad9ee673b7f13aa843639a80682d8117cb01e145897c29ef959be3f9
|
||||
size 754635
|
||||
oid sha256:29eb546287c335a843a19a744191a48a92dd6e02665b1479cead85696b134f30
|
||||
size 753677
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:501b80cf7385045d056ef917e3d930a8d2b53f766e24da7e48bb74d5338edf82
|
||||
size 1468991
|
||||
oid sha256:cbc8dd9057e03fca80e9bbdb7d97af6accabacadecb223c4c9797f5509a5928c
|
||||
size 1467986
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:5090287d57385b7221c89816732b98941af0f717f1a4a963a6a94ce43e66fd91
|
||||
size 1024007
|
||||
oid sha256:1b6fae1ff091b382e2d72a90353f5753140581d46d1203e7306a1ed406f329d0
|
||||
size 1023930
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:e29fceb77dad51280219ca001ae9aa90973a13fd654bf98ec7c3ea48727786f1
|
||||
size 3930146
|
||||
oid sha256:58c3bbbb27c284b351d1d4e95bc28c8239b21b917f85bb4c950f4ef9c1c4f789
|
||||
size 3931163
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:2fba2dd90aff596be6f87aad6bd45253c72221a703d1792847eb85f97312641c
|
||||
size 689966
|
||||
oid sha256:3c9ce2d1ba688153d12942af1a645339105a326f21d8f389f0ecb32e0ecd0452
|
||||
size 690187
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:64e1dff20f4e75165a87ff96bea86375d709750e7a4cff11a6c19f6e27c76a48
|
||||
size 2943844
|
||||
oid sha256:c79d0117f101aef7812c20adb49fbe15430f18ed806c1321a131afe697ad57f6
|
||||
size 2927889
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:ae5d2cf3c54b2776fd2aadf19db4b341526df32f98cd6e8e04c1aae8e13ce523
|
||||
size 761058
|
||||
oid sha256:e44d3997c28600a5ee1f1366f1e587af0951add2c60977eaaeb91ffc14700e79
|
||||
size 760866
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:56b9ba14b64bc21dfe5eda242bd59ec37997a474414d880e000f20a5c744d864
|
||||
size 4089111
|
||||
oid sha256:ab94b9a2ee264e027b3d1e9f3e3a87aae1a1dd0086e5afe664fbffed47bb1622
|
||||
size 4090364
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:90fea819f440a2aab96efd1d8932d4f8ef3c5c1efa7a99d104b45315a2baa958
|
||||
size 681356
|
||||
oid sha256:1917c5683c658c895bc1d31b2856fdc73facd43233d5d0ae37cee71f66bdeac0
|
||||
size 682872
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:0970b29ecdc6b080cf05548cacc9f9f1bdaad65a649c2c1ee62099cb46ea3b88
|
||||
size 2812185
|
||||
oid sha256:419c4861567136b7fc45ad73842a57c3586d180a76c476de6c60d523a7157c46
|
||||
size 2819926
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:0b5c0f2f230e159c3c0979322142579e63cf5b50b9d540a97fe78177dc0464ad
|
||||
size 929373
|
||||
oid sha256:e0e6042dd1b0ed1a65bd2adb1780ce3e416f105f08fee7d52aefb2fd5dab59b8
|
||||
size 928441
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:78fd305915f1f08d6a1957b711a197a4547a5b76c36a2de56056e5a6a0136fc8
|
||||
size 1459086
|
||||
oid sha256:f00feebe4ac96473ffb7ad1798d501084f358fa12b21cd5feced7998267fe09b
|
||||
size 1454908
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:e222fd06059b8e35a690324559b5cbb5c395425f13f8710f716b64ef918400b4
|
||||
size 1252080
|
||||
oid sha256:33cc19b80cff65517197020cfb0947cfd9db16a0d099c11269eb7514d320e4b0
|
||||
size 1252037
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:20686be03583a7c56ccaf771e883dcce56e9fa9c7b27d0bf5b3561c996edd59c
|
||||
size 4524262
|
||||
oid sha256:1a5e9698ebf64c3c1fe7560b7c4db6025dc02a97bd0097f140abe9bd4c087f26
|
||||
size 4522806
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:7fda7ce08eefc1c9e461083481a4d806e7fa3c626f15cb1015e4b754b32cc8bf
|
||||
size 835316
|
||||
oid sha256:e7a292c5c441fbe5c75dbbf48aa9b4a2ec010e45e1460230f5fea7e71ca01e37
|
||||
size 833689
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:c6d82356cf64c3ff1440ad944bec0b7c304c90217bdff26e0c72a8c16af1afb2
|
||||
size 3353719
|
||||
oid sha256:b31e5ef6356f9865da88d0692e8afd2109ff4fc89fec631389bc7ab348ff67ba
|
||||
size 3333239
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:ce19a74289e4ea9a983f6c7d7a861f46243c8ce507993309452d4e306cca87ae
|
||||
size 932651
|
||||
oid sha256:5ec60fd1e9640d1221453ad598bab9e95b52c4c0ce4accd0a24b22b5f6c6f99b
|
||||
size 932743
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:1a3f2ab31397078f146732b8b34ab62f0b65f34f6a2ac617ec0cc615f27b5813
|
||||
size 4762703
|
||||
oid sha256:b35a450990236df60dc0434042b90ab2bd2ecfe0bd8d2e032bb583393d0b0d23
|
||||
size 4763020
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:67e216d183037f4efd16ef4b8205449826e147af3dc5b1fea0f11b46b46c2982
|
||||
size 822186
|
||||
oid sha256:cf708bded4b8a6729a6268c300d078ece4c82af0c23be6160c3ffa5c60c78e3b
|
||||
size 822545
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:95910ad31dee7d3866afe8802a612ab9bc7562b9208988cbb96cbeb80a51ea8d
|
||||
size 3223463
|
||||
oid sha256:ff700b14c2bf330c49af9bb6a961cea7b93d80fa68812ec6c9406cfd460846d8
|
||||
size 3225198
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:01b8181e65f9855025e1db92b4b899521777db408cd1a52d337826859b44d65b
|
||||
size 566760
|
||||
oid sha256:7d4b3a8d4983b45f8694bd6986d544f7dc81c76a4c2edb04be25c7ae305410d7
|
||||
size 567063
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:ae6f9ca1cc53a4513ffe5c66f8b14550ec8c32c5c4eb1c7cae424be86a3087ac
|
||||
size 1042819
|
||||
oid sha256:4ddbb163e38d61db50edd755776da45f8d19a951f08c16feb9f9ac050bf18edf
|
||||
size 1043194
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:1687ae0c76edc979f614867ffb3c906d2bed78e0194b6305c23d1c41def0a6aa
|
||||
size 780186
|
||||
oid sha256:c01f114c557d789936033b2628213bd875c2bae7c04c1a1836195744f51d4f37
|
||||
size 780600
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:bee2ed9d3a58c59fbff07763eaea57f8a0d0e3c1eb5f68f0ed8dfc0c4c28cacf
|
||||
size 2956093
|
||||
oid sha256:34fe783f59565f4bcda5e382ba4dab39bedce438828697b046e0828d20ac8cf9
|
||||
size 2956675
|
||||
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user