Skip to content

Commit

Permalink
Merge branch 'main' of github.com:github/docs-internal into deprecate…
Browse files Browse the repository at this point in the history
…-static-files
  • Loading branch information
sarahs committed Nov 30, 2020
2 parents a19b7e2 + 0d6dbe9 commit f66d1a4
Show file tree
Hide file tree
Showing 18 changed files with 2,559 additions and 8,740 deletions.
2 changes: 1 addition & 1 deletion data/graphql/ghae/graphql_upcoming_changes.public-ghae.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
upcoming_changes:
- location: Migration.uploadUrlTemplate
- location: LegacyMigration.uploadUrlTemplate
description: '`uploadUrlTemplate` will be removed. Use `uploadUrl` instead.'
reason:
'`uploadUrlTemplate` is being removed because it is not a standard URL and
Expand Down
2 changes: 1 addition & 1 deletion data/graphql/graphql_upcoming_changes.public.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
upcoming_changes:
- location: Migration.uploadUrlTemplate
- location: LegacyMigration.uploadUrlTemplate
description: '`uploadUrlTemplate` will be removed. Use `uploadUrl` instead.'
reason:
'`uploadUrlTemplate` is being removed because it is not a standard URL and
Expand Down
165 changes: 165 additions & 0 deletions data/graphql/schema.docs.graphql
Original file line number Diff line number Diff line change
Expand Up @@ -15164,6 +15164,21 @@ type Mutation {
"""
setEnterpriseIdentityProvider(input: SetEnterpriseIdentityProviderInput!): SetEnterpriseIdentityProviderPayload

"""
Set an organization level interaction limit for an organization's public repositories.
"""
setOrganizationInteractionLimit(input: SetOrganizationInteractionLimitInput!): SetOrganizationInteractionLimitPayload

"""
Sets an interaction limit setting for a repository.
"""
setRepositoryInteractionLimit(input: SetRepositoryInteractionLimitInput!): SetRepositoryInteractionLimitPayload

"""
Set a user level interaction limit for an user's public repositories.
"""
setUserInteractionLimit(input: SetUserInteractionLimitInput!): SetUserInteractionLimitPayload

"""
Submits a pending pull request review.
"""
Expand Down Expand Up @@ -30137,6 +30152,36 @@ enum RepositoryInteractionLimit {
NO_LIMIT
}

"""
The length for a repository interaction limit to be enabled for.
"""
enum RepositoryInteractionLimitExpiry {
"""
The interaction limit will expire after 1 day.
"""
ONE_DAY

"""
The interaction limit will expire after 1 month.
"""
ONE_MONTH

"""
The interaction limit will expire after 1 week.
"""
ONE_WEEK

"""
The interaction limit will expire after 6 months.
"""
SIX_MONTHS

"""
The interaction limit will expire after 3 days.
"""
THREE_DAYS
}

"""
Indicates where an interaction limit is configured.
"""
Expand Down Expand Up @@ -32035,6 +32080,126 @@ type SetEnterpriseIdentityProviderPayload {
identityProvider: EnterpriseIdentityProvider
}

"""
Autogenerated input type of SetOrganizationInteractionLimit
"""
input SetOrganizationInteractionLimitInput {
"""
A unique identifier for the client performing the mutation.
"""
clientMutationId: String

"""
When this limit should expire.
"""
expiry: RepositoryInteractionLimitExpiry

"""
The limit to set.
"""
limit: RepositoryInteractionLimit!

"""
The ID of the organization to set a limit for.
"""
organizationId: ID! @possibleTypes(concreteTypes: ["Organization"])
}

"""
Autogenerated return type of SetOrganizationInteractionLimit
"""
type SetOrganizationInteractionLimitPayload {
"""
A unique identifier for the client performing the mutation.
"""
clientMutationId: String

"""
The organization that the interaction limit was set for.
"""
organization: Organization
}

"""
Autogenerated input type of SetRepositoryInteractionLimit
"""
input SetRepositoryInteractionLimitInput {
"""
A unique identifier for the client performing the mutation.
"""
clientMutationId: String

"""
When this limit should expire.
"""
expiry: RepositoryInteractionLimitExpiry

"""
The limit to set.
"""
limit: RepositoryInteractionLimit!

"""
The ID of the repository to set a limit for.
"""
repositoryId: ID! @possibleTypes(concreteTypes: ["Repository"])
}

"""
Autogenerated return type of SetRepositoryInteractionLimit
"""
type SetRepositoryInteractionLimitPayload {
"""
A unique identifier for the client performing the mutation.
"""
clientMutationId: String

"""
The repository that the interaction limit was set for.
"""
repository: Repository
}

"""
Autogenerated input type of SetUserInteractionLimit
"""
input SetUserInteractionLimitInput {
"""
A unique identifier for the client performing the mutation.
"""
clientMutationId: String

"""
When this limit should expire.
"""
expiry: RepositoryInteractionLimitExpiry

"""
The limit to set.
"""
limit: RepositoryInteractionLimit!

"""
The ID of the user to set a limit for.
"""
userId: ID! @possibleTypes(concreteTypes: ["User"])
}

"""
Autogenerated return type of SetUserInteractionLimit
"""
type SetUserInteractionLimitPayload {
"""
A unique identifier for the client performing the mutation.
"""
clientMutationId: String

"""
The user that the interaction limit was set for.
"""
user: User
}

"""
Represents an S/MIME signature on a Commit or Tag.
"""
Expand Down
4 changes: 2 additions & 2 deletions layouts/product-landing.html
Original file line number Diff line number Diff line change
Expand Up @@ -15,11 +15,11 @@
<h1 class="mb-3 font-mktg">{{ page.shortTitle }}</h1>
<div class="lead-mktg text-gray">{{ page.intro }}</div>

<a href="{{ page.introLinks.quickstart }}" class="btn-mktg btn-large f4 mt-3">
<a href="{{ page.introLinks.quickstart }}" class="btn-mktg btn-large f4 mt-3 mr-3">
{% data ui.product_landing.quick_start %}
</a>

<a href="{{ page.introLinks.reference }}" class="ml-3 btn-mktg btn-outline-mktg btn-large f4 mt-3">
<a href="{{ page.introLinks.reference }}" class="btn-mktg btn-outline-mktg btn-large f4 mt-3">
{% data ui.product_landing.reference_guides %}
</a>
</div>
Expand Down
2,090 changes: 5 additions & 2,085 deletions lib/graphql/static/prerendered-objects.json

Large diffs are not rendered by default.

Loading

0 comments on commit f66d1a4

Please sign in to comment.