Skip to content

Commit

Permalink
repo sync
Browse files Browse the repository at this point in the history
  • Loading branch information
Octomerger authored Nov 30, 2020
2 parents 4fe7ada + cba08c7 commit eac4ef6
Show file tree
Hide file tree
Showing 19 changed files with 3,263 additions and 10,854 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/check-all-english-links.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
name: Close previous report
uses: lee-dohm/close-matching-issues@22002609b2555fe18f52b8e2e7c07cbf5529e8a8
with:
query: 'label:"broken+link+report"'
query: 'label:"broken link report"'
token: ${{ secrets.DOCUBOT_FR_PROJECT_BOARD_WORKFLOWS_REPO_ORG_READ_SCOPES }}
- if: ${{ failure() }}
name: Create issue from file
Expand All @@ -43,7 +43,7 @@ jobs:
name: Add issue to FR project board
uses: peter-evans/create-or-update-project-card@80140aaeb9730972a83c626031250621fe8f6670
with:
project-repository: 'github'
project-location: 'github'
project-number: '1367'
column-name: 'Docs-content FR issues'
issue-number: ${{ steps.broken-link-report.outputs.issue-number }}
Expand Down
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
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 eac4ef6

Please sign in to comment.