Skip to content

repo sync #1698

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 21 commits into from
Nov 30, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
21 commits
Select commit Hold shift + click to select a range
cf78a71
recreate rest-api-operations PR #111
sarahs Nov 25, 2020
aa0faca
ran script/rest/update-files.js --decorate-only
sarahs Nov 25, 2020
4f7f5b6
use spaces instead of + within query
sarahs Nov 25, 2020
68c5d4d
change project-repository to project-location
sarahs Nov 25, 2020
739d876
Merge branch 'main' into fix-works-with-github-link
sarahs Nov 25, 2020
6c7be8a
Merge branch 'main' into fix-link-checking-workflow
sarahs Nov 25, 2020
a9b1b4f
add rewrite-local-links to prerendered GraphQL objects HTML
sarahs Nov 26, 2020
23ca527
add test
sarahs Nov 26, 2020
fdb8600
ran script/graphql/update-files.js with the objects page objects
sarahs Nov 26, 2020
d0efefd
Merge branch 'main' into version-graphql-objects-links
sarahs Nov 30, 2020
416bc38
Merge branch 'main' into fix-works-with-github-link
sarahs Nov 30, 2020
21f0de5
use xmlMode when loading cheerio
sarahs Nov 30, 2020
d9c4409
reran script/graphql/update-files.js
sarahs Nov 30, 2020
43f4073
Merge branch 'main' into fix-works-with-github-link
sarahs Nov 30, 2020
98aef9e
repo sync
Octomerger Nov 30, 2020
0d808d0
Merge branch 'main' into fix-works-with-github-link
sarahs Nov 30, 2020
86a7839
Merge pull request #16636 from github/fix-works-with-github-link
sarahs Nov 30, 2020
8c1a9c1
Merge branch 'main' into version-graphql-objects-links
sarahs Nov 30, 2020
0d6dbe9
Merge pull request #16652 from github/version-graphql-objects-links
sarahs Nov 30, 2020
863a972
Merge branch 'main' into fix-link-checking-workflow
sarahs Nov 30, 2020
cba08c7
Merge pull request #16638 from github/fix-link-checking-workflow
sarahs Nov 30, 2020
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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