Skip to content
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

Repo sync #33516

Merged
merged 1 commit into from
Jun 14, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
2 changes: 1 addition & 1 deletion src/audit-logs/lib/config.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,5 @@
"apiOnlyEvents": "This event is not available in the web interface, only via the REST API, audit log streaming, or JSON/CSV exports.",
"apiRequestEvent": "This event is only available via audit log streaming."
},
"sha": "12eebfe45849b6dd4e5b9bf5959c0de9499a1ba9"
"sha": "a66bc4347c82e13315e2f3bf60aac004c6e43e46"
}
14 changes: 14 additions & 0 deletions src/graphql/data/fpt/changelog.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,18 @@
[
{
"schemaChanges": [
{
"title": "The GraphQL schema includes these changes:",
"changes": [
"<p>Field <code>readme</code> was added to object type <code>Enterprise</code></p>",
"<p>Field <code>readmeHTML</code> was added to object type <code>Enterprise</code></p>"
]
}
],
"previewChanges": [],
"upcomingChanges": [],
"date": "2024-06-14"
},
{
"schemaChanges": [
{
Expand Down
10 changes: 10 additions & 0 deletions src/graphql/data/fpt/schema.docs.graphql
Original file line number Diff line number Diff line change
Expand Up @@ -12818,6 +12818,16 @@ type Enterprise implements AnnouncementBanner & Node {
"""
ownerInfo: EnterpriseOwnerInfo

"""
The raw content of the enterprise README.
"""
readme: String

"""
The content of the enterprise README as HTML.
"""
readmeHTML: HTML!

"""
The HTTP path for this enterprise.
"""
Expand Down
16 changes: 16 additions & 0 deletions src/graphql/data/fpt/schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -21177,6 +21177,22 @@
"kind": "objects",
"href": "/graphql/reference/objects#enterpriseownerinfo"
},
{
"name": "readme",
"description": "<p>The raw content of the enterprise README.</p>",
"type": "String",
"id": "string",
"kind": "scalars",
"href": "/graphql/reference/scalars#string"
},
{
"name": "readmeHTML",
"description": "<p>The content of the enterprise README as HTML.</p>",
"type": "HTML!",
"id": "html",
"kind": "scalars",
"href": "/graphql/reference/scalars#html"
},
{
"name": "resourcePath",
"description": "<p>The HTTP path for this enterprise.</p>",
Expand Down
10 changes: 10 additions & 0 deletions src/graphql/data/ghec/schema.docs.graphql
Original file line number Diff line number Diff line change
Expand Up @@ -12818,6 +12818,16 @@ type Enterprise implements AnnouncementBanner & Node {
"""
ownerInfo: EnterpriseOwnerInfo

"""
The raw content of the enterprise README.
"""
readme: String

"""
The content of the enterprise README as HTML.
"""
readmeHTML: HTML!

"""
The HTTP path for this enterprise.
"""
Expand Down
16 changes: 16 additions & 0 deletions src/graphql/data/ghec/schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -21177,6 +21177,22 @@
"kind": "objects",
"href": "/graphql/reference/objects#enterpriseownerinfo"
},
{
"name": "readme",
"description": "<p>The raw content of the enterprise README.</p>",
"type": "String",
"id": "string",
"kind": "scalars",
"href": "/graphql/reference/scalars#string"
},
{
"name": "readmeHTML",
"description": "<p>The content of the enterprise README as HTML.</p>",
"type": "HTML!",
"id": "html",
"kind": "scalars",
"href": "/graphql/reference/scalars#html"
},
{
"name": "resourcePath",
"description": "<p>The HTTP path for this enterprise.</p>",
Expand Down
Loading