diff --git a/data/graphql/schema.graphql b/data/graphql/schema.graphql index 2b1481b4428..6b2f17a78d6 100644 --- a/data/graphql/schema.graphql +++ b/data/graphql/schema.graphql @@ -1336,7 +1336,7 @@ type AuditSubject { """ Kinds of subjects which can have audit events performed on them """ -union AuditSubjectNode = APIAccessToken | APIApplication | AgentToken | AuthorizationBitbucket | AuthorizationGitHub | AuthorizationGitHubEnterprise | Cluster | ClusterPermission | ClusterQueue | ClusterQueueToken | ClusterToken | CompositeRegistryUpstream | Email | JobTypeBlock | JobTypeCommand | JobTypeTrigger | JobTypeWait | NotificationServiceOpenTelemetryTracing | NotificationServiceSlack | NotificationServiceWebhook | Organization | OrganizationBanner | OrganizationImpersonationRequest | OrganizationInvitation | OrganizationMember | OrganizationRepositoryProviderCursorOrigin | OrganizationRepositoryProviderGitHub | OrganizationRepositoryProviderGitHubEnterpriseServer | Pipeline | PipelineSchedule | PipelineTemplate | Registry | RegistryToken | Rule | SCMPipelineSettings | SCMRepositoryHost | SCMService | SSOProviderGitHubApp | SSOProviderGoogleGSuite | SSOProviderSAML | Secret | Subscription | Suite | TOTP | Team | TeamMember | TeamPipeline | TeamRegistry | TeamSuite | User +union AuditSubjectNode = APIAccessToken | APIApplication | AgentToken | AuthorizationBitbucket | AuthorizationGitHub | AuthorizationGitHubEnterprise | Cluster | ClusterPermission | ClusterQueue | ClusterQueueToken | ClusterToken | CompositeRegistryUpstream | Email | JobTypeBlock | JobTypeCommand | JobTypeTrigger | JobTypeWait | NotificationServiceOpenTelemetryTracing | NotificationServiceSlack | NotificationServiceWebhook | Organization | OrganizationBanner | OrganizationImpersonationRequest | OrganizationInvitation | OrganizationMember | OrganizationRepositoryProviderGitHub | OrganizationRepositoryProviderGitHubEnterpriseServer | Pipeline | PipelineSchedule | PipelineTemplate | Registry | RegistryToken | Rule | SCMPipelineSettings | SCMRepositoryHost | SCMService | SSOProviderGitHubApp | SSOProviderGoogleGSuite | SSOProviderSAML | Secret | Subscription | Suite | TOTP | Team | TeamMember | TeamPipeline | TeamRegistry | TeamSuite | User """ All the possible types of subjects in an Audit Event @@ -8002,21 +8002,6 @@ interface OrganizationRepositoryProvider { name: String! } -""" -Origin installation associated with this organization -""" -type OrganizationRepositoryProviderCursorOrigin implements Node & OrganizationRepositoryProvider { - """ - The ID of the provider - """ - id: ID! - - """ - The name of the OrganizationRepositoryProvider - """ - name: String! -} - """ GitHub installation associated with this organization """ @@ -10301,66 +10286,6 @@ type RepositoryProviderCodebaseSettings implements RepositoryProviderSettings { filterEnabled: Boolean } -""" -A pipeline's repository is being provided by Origin -""" -type RepositoryProviderCursorOrigin implements RepositoryProvider { - """ - The name of the provider - """ - name: String! - - """ - The repository’s provider settings - """ - settings: RepositoryProviderCursorOriginSettings - - """ - This URL to the provider’s web interface - """ - url: String - - """ - The URL to use when setting up webhooks from the provider to trigger Buildkite builds - """ - webhookUrl: String -} - -""" -Settings for an Origin repository -""" -type RepositoryProviderCursorOriginSettings implements RepositoryProviderSettings { - """ - Whether to create builds when branches are pushed. - """ - buildBranches: Boolean! - - """ - Whether to create builds for commits that are part of a pull request. - """ - buildPullRequests: Boolean! - - """ - Whether to create builds when tags are pushed. - """ - buildTags: Boolean! - - """ - The conditions under which this pipeline will trigger a build. - """ - filterCondition: String - - """ - Whether the filter is enabled - """ - filterEnabled: Boolean - - """ - Whether to publish build results to Origin as a check run. - """ - publishCommitStatus: Boolean! -} - """ Settings for a GitHub Enterprise repository. """ diff --git a/data/nav_graphql.yml b/data/nav_graphql.yml index f6cb052e91e..53afbb17169 100644 --- a/data/nav_graphql.yml +++ b/data/nav_graphql.yml @@ -576,8 +576,6 @@ path: apis/graphql/schemas/object/organizationmemberupdatepayload - name: OrganizationPermissions path: apis/graphql/schemas/object/organizationpermissions - - name: OrganizationRepositoryProviderCursorOrigin - path: apis/graphql/schemas/object/organizationrepositoryprovidercursororigin - name: OrganizationRepositoryProviderGitHub path: apis/graphql/schemas/object/organizationrepositoryprovidergithub - name: OrganizationRepositoryProviderGitHubEnterpriseServer @@ -690,10 +688,6 @@ path: apis/graphql/schemas/object/repositoryprovidercodebase - name: RepositoryProviderCodebaseSettings path: apis/graphql/schemas/object/repositoryprovidercodebasesettings - - name: RepositoryProviderCursorOrigin - path: apis/graphql/schemas/object/repositoryprovidercursororigin - - name: RepositoryProviderCursorOriginSettings - path: apis/graphql/schemas/object/repositoryprovidercursororiginsettings - name: RepositoryProviderGitHubEnterpriseSettings path: apis/graphql/schemas/object/repositoryprovidergithubenterprisesettings - name: RepositoryProviderGitHubSettings diff --git a/pages/apis/graphql/schemas/interface/node.md b/pages/apis/graphql/schemas/interface/node.md index 935c04c1cb7..c86b44a5e50 100644 --- a/pages/apis/graphql/schemas/interface/node.md +++ b/pages/apis/graphql/schemas/interface/node.md @@ -173,9 +173,6 @@ An object with an ID. OrganizationMember - - OrganizationRepositoryProviderCursorOrigin - OrganizationRepositoryProviderGitHub diff --git a/pages/apis/graphql/schemas/interface/organizationrepositoryprovider.md b/pages/apis/graphql/schemas/interface/organizationrepositoryprovider.md index 58e4c3ff598..dcb089a1041 100644 --- a/pages/apis/graphql/schemas/interface/organizationrepositoryprovider.md +++ b/pages/apis/graphql/schemas/interface/organizationrepositoryprovider.md @@ -41,10 +41,7 @@ toc: false

Possible types

-
- OrganizationRepositoryProviderCursorOrigin - - +
OrganizationRepositoryProviderGitHub diff --git a/pages/apis/graphql/schemas/interface/repositoryprovider.md b/pages/apis/graphql/schemas/interface/repositoryprovider.md index c1b7d53bc0d..d176bd511e0 100644 --- a/pages/apis/graphql/schemas/interface/repositoryprovider.md +++ b/pages/apis/graphql/schemas/interface/repositoryprovider.md @@ -53,9 +53,6 @@ toc: false RepositoryProviderCodebase - - RepositoryProviderCursorOrigin - RepositoryProviderGithub diff --git a/pages/apis/graphql/schemas/interface/repositoryprovidersettings.md b/pages/apis/graphql/schemas/interface/repositoryprovidersettings.md index 7ae71d1615d..d31e38d36cf 100644 --- a/pages/apis/graphql/schemas/interface/repositoryprovidersettings.md +++ b/pages/apis/graphql/schemas/interface/repositoryprovidersettings.md @@ -53,9 +53,6 @@ toc: false RepositoryProviderCodebaseSettings - - RepositoryProviderCursorOriginSettings - RepositoryProviderGitHubEnterpriseSettings diff --git a/pages/apis/graphql/schemas/object/organizationrepositoryprovidercursororigin.md b/pages/apis/graphql/schemas/object/organizationrepositoryprovidercursororigin.md deleted file mode 100644 index 713006492db..00000000000 --- a/pages/apis/graphql/schemas/object/organizationrepositoryprovidercursororigin.md +++ /dev/null @@ -1,50 +0,0 @@ ---- -# _____ ____ _ _ ____ _______ ______ _____ _____ _______ -# | __ / __ | | |/ __ __ __| | ____| __ _ _|__ __| -# | | | | | | | | | | | | | | | | |__ | | | || | | | -# | | | | | | | | . ` | | | | | | | __| | | | || | | | -# | |__| | |__| | | | | |__| | | | | |____| |__| || |_ | | -# |_____/ ____/ |_| _|____/ |_| |______|_____/_____| |_| -# This file is auto-generated by script/generate_graphql_api_content.sh, -# please build the schema.graphql by running `rails graphql:update_reference_schema` -# with https://github.com/buildkite/buildkite/, -# replace the content in data/schema.graphql -# and run the generation script `./scripts/generate-graphql-api-content.sh`. - -title: OrganizationRepositoryProviderCursorOrigin – Objects – GraphQL API -toc: false ---- - -

- OrganizationRepositoryProviderCursorOrigin - OBJECT -

- - - -Origin installation associated with this organization - - - - - - - - -
-

Fields

-

idID!

The ID of the provider

nameString!

The name of the OrganizationRepositoryProvider

- - - - -

Interfaces

-
- - Node - - - OrganizationRepositoryProvider - - -
diff --git a/pages/apis/graphql/schemas/object/repositoryprovidercursororigin.md b/pages/apis/graphql/schemas/object/repositoryprovidercursororigin.md deleted file mode 100644 index 9a36085bf0c..00000000000 --- a/pages/apis/graphql/schemas/object/repositoryprovidercursororigin.md +++ /dev/null @@ -1,47 +0,0 @@ ---- -# _____ ____ _ _ ____ _______ ______ _____ _____ _______ -# | __ / __ | | |/ __ __ __| | ____| __ _ _|__ __| -# | | | | | | | | | | | | | | | | |__ | | | || | | | -# | | | | | | | | . ` | | | | | | | __| | | | || | | | -# | |__| | |__| | | | | |__| | | | | |____| |__| || |_ | | -# |_____/ ____/ |_| _|____/ |_| |______|_____/_____| |_| -# This file is auto-generated by script/generate_graphql_api_content.sh, -# please build the schema.graphql by running `rails graphql:update_reference_schema` -# with https://github.com/buildkite/buildkite/, -# replace the content in data/schema.graphql -# and run the generation script `./scripts/generate-graphql-api-content.sh`. - -title: RepositoryProviderCursorOrigin – Objects – GraphQL API -toc: false ---- - -

- RepositoryProviderCursorOrigin - OBJECT -

- - - -A pipeline's repository is being provided by Origin - - - - - - - - -
-

Fields

-

nameString!

The name of the provider

settingsRepositoryProviderCursorOriginSettings

The repository’s provider settings

urlString

This URL to the provider’s web interface

webhookUrlString

The URL to use when setting up webhooks from the provider to trigger Buildkite builds

- - - - -

Interfaces

-
- - RepositoryProvider - - -
diff --git a/pages/apis/graphql/schemas/object/repositoryprovidercursororiginsettings.md b/pages/apis/graphql/schemas/object/repositoryprovidercursororiginsettings.md deleted file mode 100644 index b9e9a7f41ae..00000000000 --- a/pages/apis/graphql/schemas/object/repositoryprovidercursororiginsettings.md +++ /dev/null @@ -1,47 +0,0 @@ ---- -# _____ ____ _ _ ____ _______ ______ _____ _____ _______ -# | __ / __ | | |/ __ __ __| | ____| __ _ _|__ __| -# | | | | | | | | | | | | | | | | |__ | | | || | | | -# | | | | | | | | . ` | | | | | | | __| | | | || | | | -# | |__| | |__| | | | | |__| | | | | |____| |__| || |_ | | -# |_____/ ____/ |_| _|____/ |_| |______|_____/_____| |_| -# This file is auto-generated by script/generate_graphql_api_content.sh, -# please build the schema.graphql by running `rails graphql:update_reference_schema` -# with https://github.com/buildkite/buildkite/, -# replace the content in data/schema.graphql -# and run the generation script `./scripts/generate-graphql-api-content.sh`. - -title: RepositoryProviderCursorOriginSettings – Objects – GraphQL API -toc: false ---- - -

- RepositoryProviderCursorOriginSettings - OBJECT -

- - - -Settings for an Origin repository - - - - - - - - -
-

Fields

-

buildBranchesBoolean!

Whether to create builds when branches are pushed.

buildPullRequestsBoolean!

Whether to create builds for commits that are part of a pull request.

buildTagsBoolean!

Whether to create builds when tags are pushed.

filterConditionString

The conditions under which this pipeline will trigger a build.

filterEnabledBoolean

Whether the filter is enabled

publishCommitStatusBoolean!

Whether to publish build results to Origin as a check run.

- - - - -

Interfaces

-
- - RepositoryProviderSettings - - -
diff --git a/pages/apis/graphql/schemas/union/auditsubjectnode.md b/pages/apis/graphql/schemas/union/auditsubjectnode.md index 03517ca6c66..ef273d30e2e 100644 --- a/pages/apis/graphql/schemas/union/auditsubjectnode.md +++ b/pages/apis/graphql/schemas/union/auditsubjectnode.md @@ -106,9 +106,6 @@ Kinds of subjects which can have audit events performed on them OrganizationMember - - OrganizationRepositoryProviderCursorOrigin - OrganizationRepositoryProviderGitHub