Skip to content
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
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ You can enable step debug logging in {% data variables.product.prodname_actions
## Creating {% data variables.product.prodname_codeql %} debugging artifacts

You can obtain artifacts to help you debug {% data variables.product.prodname_codeql %}.
The debug artifacts will be uploaded to the workflow run as an artifact named `debug-artifacts`. The data contains the {% data variables.product.prodname_codeql %} logs, {% data variables.product.prodname_codeql %} database(s), extracted source code files, and any SARIF file(s) produced by the workflow.
The debug artifacts will be uploaded to the workflow run as an artifact named `debug-artifacts`. The data contains the {% data variables.product.prodname_codeql %} logs, {% data variables.product.prodname_codeql %} database(s), extracted source code files, and any SARIF file(s) produced by the workflow. For more information about downloading {% data variables.product.prodname_codeql %} artifacts, see "[AUTOTITLE](/actions/managing-workflow-runs/downloading-workflow-artifacts)."

These artifacts will help you debug problems with {% data variables.product.prodname_codeql %} {% data variables.product.prodname_code_scanning %}. If you contact GitHub support, they might ask for this data.

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ These qualifiers are available in the main summary views{% ifversion security-ov

| Qualifier | Description |
| -------- | -------- |
| `team:TEAM-NAME` | Displays repositories that TEAM-NAME has {% ifversion security-overview-team-write-access -%} write access or {% endif -%} admin access to. |
| `team:TEAM-NAME` | Displays repositories that TEAM-NAME is assigned to with the {% ifversion security-overview-team-write-access -%} write or {% endif -%} admin role. For more information on repository roles, see "[AUTOTITLE](/organizations/managing-user-access-to-your-organizations-repositories/managing-repository-roles/repository-roles-for-an-organization)". |

## Filter by topic

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ People with write permissions for a repository can add a theme to a {% data vari
1. Navigate to __config.yml_.
{% data reusables.repositories.edit-file %}
1. Add a new line to the file for the theme name.
- To use a supported theme, type `theme: jekyll-theme-THEME-NAME`, replacing _THEME-NAME_ with the name of the theme as shown in the README of the theme's repository. For a list of supported themes, see "[Supported themes](https://pages.github.com/themes/)" on the {% data variables.product.prodname_pages %} site. For example, to select the Minimal theme, type `theme: jekyll-theme-minimal`.
- To use a supported theme, type `theme: THEME-NAME`, replacing _THEME-NAME_ with the name of the theme as shown in the `_config.yml` of the theme's repository (most themes follow a `jekyll-theme-NAME` naming convention). For a list of supported themes, see "[Supported themes](https://pages.github.com/themes/)" on the {% data variables.product.prodname_pages %} site. For example, to select the Minimal theme, type `theme: jekyll-theme-minimal`.
- To use any other Jekyll theme hosted on {% data variables.product.prodname_dotcom %}, type `remote_theme: THEME-NAME`, replacing THEME-NAME with the name of the theme as shown in the README of the theme's repository.
{% data reusables.files.write_commit_message %}
{% data reusables.files.choose-commit-email %}
Expand Down
19 changes: 0 additions & 19 deletions src/graphql/data/fpt/previews.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,24 +28,5 @@
],
"accept_header": "application/vnd.github.update-refs-preview+json",
"href": "/graphql/overview/schema-previews#update-refs-preview-update-multiple-refs-in-a-single-operation-preview"
},
{
"title": "Access to a repository's dependency graph preview",
"description": "This preview adds support for reading a dependency graph for a repository.",
"toggled_by": "hawkgirl-preview",
"toggled_on": [
"DependencyGraphManifest",
"Repository.dependencyGraphManifests",
"DependencyGraphManifestEdge",
"DependencyGraphManifestConnection",
"DependencyGraphDependency",
"DependencyGraphDependencyEdge",
"DependencyGraphDependencyConnection"
],
"owning_teams": [
"@github/dependency-graph"
],
"accept_header": "application/vnd.github.hawkgirl-preview+json",
"href": "/graphql/overview/schema-previews#access-to-a-repositorys-dependency-graph-preview"
}
]
14 changes: 7 additions & 7 deletions src/graphql/data/fpt/schema.docs.graphql
Original file line number Diff line number Diff line change
Expand Up @@ -9828,7 +9828,7 @@ type DependabotUpdateError {
"""
A dependency manifest entry
"""
type DependencyGraphDependency @preview(toggledBy: "hawkgirl-preview") {
type DependencyGraphDependency {
"""
Does the dependency itself have dependencies?
"""
Expand Down Expand Up @@ -9866,7 +9866,7 @@ type DependencyGraphDependency @preview(toggledBy: "hawkgirl-preview") {
"""
The connection type for DependencyGraphDependency.
"""
type DependencyGraphDependencyConnection @preview(toggledBy: "hawkgirl-preview") {
type DependencyGraphDependencyConnection {
"""
A list of edges.
"""
Expand All @@ -9891,7 +9891,7 @@ type DependencyGraphDependencyConnection @preview(toggledBy: "hawkgirl-preview")
"""
An edge in a connection.
"""
type DependencyGraphDependencyEdge @preview(toggledBy: "hawkgirl-preview") {
type DependencyGraphDependencyEdge {
"""
A cursor for use in pagination.
"""
Expand Down Expand Up @@ -9966,7 +9966,7 @@ enum DependencyGraphEcosystem {
"""
Dependency manifest for a repository
"""
type DependencyGraphManifest implements Node @preview(toggledBy: "hawkgirl-preview") {
type DependencyGraphManifest implements Node {
"""
Path to view the manifest file blob
"""
Expand Down Expand Up @@ -10031,7 +10031,7 @@ type DependencyGraphManifest implements Node @preview(toggledBy: "hawkgirl-previ
"""
The connection type for DependencyGraphManifest.
"""
type DependencyGraphManifestConnection @preview(toggledBy: "hawkgirl-preview") {
type DependencyGraphManifestConnection {
"""
A list of edges.
"""
Expand All @@ -10056,7 +10056,7 @@ type DependencyGraphManifestConnection @preview(toggledBy: "hawkgirl-preview") {
"""
An edge in a connection.
"""
type DependencyGraphManifestEdge @preview(toggledBy: "hawkgirl-preview") {
type DependencyGraphManifestEdge {
"""
A cursor for use in pagination.
"""
Expand Down Expand Up @@ -43452,7 +43452,7 @@ type Repository implements Node & PackageOwner & ProjectOwner & ProjectV2Recent
Flag to scope to only manifests with dependencies
"""
withDependencies: Boolean
): DependencyGraphManifestConnection @preview(toggledBy: "hawkgirl-preview")
): DependencyGraphManifestConnection

"""
A list of deploy keys that are on this repository.
Expand Down
142 changes: 1 addition & 141 deletions src/graphql/data/fpt/schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -17044,26 +17044,6 @@
"id": "dependencygraphdependency",
"href": "/graphql/reference/objects#dependencygraphdependency",
"description": "<p>A dependency manifest entry.</p>",
"isDeprecated": false,
"preview": {
"title": "Access to a repository's dependency graph preview",
"description": "This preview adds support for reading a dependency graph for a repository.",
"toggled_by": "hawkgirl-preview",
"toggled_on": [
"DependencyGraphManifest",
"Repository.dependencyGraphManifests",
"DependencyGraphManifestEdge",
"DependencyGraphManifestConnection",
"DependencyGraphDependency",
"DependencyGraphDependencyEdge",
"DependencyGraphDependencyConnection"
],
"owning_teams": [
"@github/dependency-graph"
],
"accept_header": "application/vnd.github.hawkgirl-preview+json",
"href": "/graphql/overview/schema-previews#access-to-a-repositorys-dependency-graph-preview"
},
"fields": [
{
"name": "hasDependencies",
Expand Down Expand Up @@ -17123,26 +17103,6 @@
"id": "dependencygraphdependencyconnection",
"href": "/graphql/reference/objects#dependencygraphdependencyconnection",
"description": "<p>The connection type for DependencyGraphDependency.</p>",
"isDeprecated": false,
"preview": {
"title": "Access to a repository's dependency graph preview",
"description": "This preview adds support for reading a dependency graph for a repository.",
"toggled_by": "hawkgirl-preview",
"toggled_on": [
"DependencyGraphManifest",
"Repository.dependencyGraphManifests",
"DependencyGraphManifestEdge",
"DependencyGraphManifestConnection",
"DependencyGraphDependency",
"DependencyGraphDependencyEdge",
"DependencyGraphDependencyConnection"
],
"owning_teams": [
"@github/dependency-graph"
],
"accept_header": "application/vnd.github.hawkgirl-preview+json",
"href": "/graphql/overview/schema-previews#access-to-a-repositorys-dependency-graph-preview"
},
"fields": [
{
"name": "edges",
Expand Down Expand Up @@ -17184,26 +17144,6 @@
"id": "dependencygraphdependencyedge",
"href": "/graphql/reference/objects#dependencygraphdependencyedge",
"description": "<p>An edge in a connection.</p>",
"isDeprecated": false,
"preview": {
"title": "Access to a repository's dependency graph preview",
"description": "This preview adds support for reading a dependency graph for a repository.",
"toggled_by": "hawkgirl-preview",
"toggled_on": [
"DependencyGraphManifest",
"Repository.dependencyGraphManifests",
"DependencyGraphManifestEdge",
"DependencyGraphManifestConnection",
"DependencyGraphDependency",
"DependencyGraphDependencyEdge",
"DependencyGraphDependencyConnection"
],
"owning_teams": [
"@github/dependency-graph"
],
"accept_header": "application/vnd.github.hawkgirl-preview+json",
"href": "/graphql/overview/schema-previews#access-to-a-repositorys-dependency-graph-preview"
},
"fields": [
{
"name": "cursor",
Expand All @@ -17229,26 +17169,6 @@
"id": "dependencygraphmanifest",
"href": "/graphql/reference/objects#dependencygraphmanifest",
"description": "<p>Dependency manifest for a repository.</p>",
"isDeprecated": false,
"preview": {
"title": "Access to a repository's dependency graph preview",
"description": "This preview adds support for reading a dependency graph for a repository.",
"toggled_by": "hawkgirl-preview",
"toggled_on": [
"DependencyGraphManifest",
"Repository.dependencyGraphManifests",
"DependencyGraphManifestEdge",
"DependencyGraphManifestConnection",
"DependencyGraphDependency",
"DependencyGraphDependencyEdge",
"DependencyGraphDependencyConnection"
],
"owning_teams": [
"@github/dependency-graph"
],
"accept_header": "application/vnd.github.hawkgirl-preview+json",
"href": "/graphql/overview/schema-previews#access-to-a-repositorys-dependency-graph-preview"
},
"implements": [
{
"name": "Node",
Expand Down Expand Up @@ -17371,26 +17291,6 @@
"id": "dependencygraphmanifestconnection",
"href": "/graphql/reference/objects#dependencygraphmanifestconnection",
"description": "<p>The connection type for DependencyGraphManifest.</p>",
"isDeprecated": false,
"preview": {
"title": "Access to a repository's dependency graph preview",
"description": "This preview adds support for reading a dependency graph for a repository.",
"toggled_by": "hawkgirl-preview",
"toggled_on": [
"DependencyGraphManifest",
"Repository.dependencyGraphManifests",
"DependencyGraphManifestEdge",
"DependencyGraphManifestConnection",
"DependencyGraphDependency",
"DependencyGraphDependencyEdge",
"DependencyGraphDependencyConnection"
],
"owning_teams": [
"@github/dependency-graph"
],
"accept_header": "application/vnd.github.hawkgirl-preview+json",
"href": "/graphql/overview/schema-previews#access-to-a-repositorys-dependency-graph-preview"
},
"fields": [
{
"name": "edges",
Expand Down Expand Up @@ -17432,26 +17332,6 @@
"id": "dependencygraphmanifestedge",
"href": "/graphql/reference/objects#dependencygraphmanifestedge",
"description": "<p>An edge in a connection.</p>",
"isDeprecated": false,
"preview": {
"title": "Access to a repository's dependency graph preview",
"description": "This preview adds support for reading a dependency graph for a repository.",
"toggled_by": "hawkgirl-preview",
"toggled_on": [
"DependencyGraphManifest",
"Repository.dependencyGraphManifests",
"DependencyGraphManifestEdge",
"DependencyGraphManifestConnection",
"DependencyGraphDependency",
"DependencyGraphDependencyEdge",
"DependencyGraphDependencyConnection"
],
"owning_teams": [
"@github/dependency-graph"
],
"accept_header": "application/vnd.github.hawkgirl-preview+json",
"href": "/graphql/overview/schema-previews#access-to-a-repositorys-dependency-graph-preview"
},
"fields": [
{
"name": "cursor",
Expand Down Expand Up @@ -59601,27 +59481,7 @@
"href": "/graphql/reference/scalars#boolean"
}
}
],
"isDeprecated": false,
"preview": {
"title": "Access to a repository's dependency graph preview",
"description": "This preview adds support for reading a dependency graph for a repository.",
"toggled_by": "hawkgirl-preview",
"toggled_on": [
"DependencyGraphManifest",
"Repository.dependencyGraphManifests",
"DependencyGraphManifestEdge",
"DependencyGraphManifestConnection",
"DependencyGraphDependency",
"DependencyGraphDependencyEdge",
"DependencyGraphDependencyConnection"
],
"owning_teams": [
"@github/dependency-graph"
],
"accept_header": "application/vnd.github.hawkgirl-preview+json",
"href": "/graphql/overview/schema-previews#access-to-a-repositorys-dependency-graph-preview"
}
]
},
{
"name": "deployKeys",
Expand Down
19 changes: 0 additions & 19 deletions src/graphql/data/ghec/previews.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,24 +28,5 @@
],
"accept_header": "application/vnd.github.update-refs-preview+json",
"href": "/graphql/overview/schema-previews#update-refs-preview-update-multiple-refs-in-a-single-operation-preview"
},
{
"title": "Access to a repository's dependency graph preview",
"description": "This preview adds support for reading a dependency graph for a repository.",
"toggled_by": "hawkgirl-preview",
"toggled_on": [
"DependencyGraphManifest",
"Repository.dependencyGraphManifests",
"DependencyGraphManifestEdge",
"DependencyGraphManifestConnection",
"DependencyGraphDependency",
"DependencyGraphDependencyEdge",
"DependencyGraphDependencyConnection"
],
"owning_teams": [
"@github/dependency-graph"
],
"accept_header": "application/vnd.github.hawkgirl-preview+json",
"href": "/graphql/overview/schema-previews#access-to-a-repositorys-dependency-graph-preview"
}
]
14 changes: 7 additions & 7 deletions src/graphql/data/ghec/schema.docs.graphql
Original file line number Diff line number Diff line change
Expand Up @@ -9828,7 +9828,7 @@ type DependabotUpdateError {
"""
A dependency manifest entry
"""
type DependencyGraphDependency @preview(toggledBy: "hawkgirl-preview") {
type DependencyGraphDependency {
"""
Does the dependency itself have dependencies?
"""
Expand Down Expand Up @@ -9866,7 +9866,7 @@ type DependencyGraphDependency @preview(toggledBy: "hawkgirl-preview") {
"""
The connection type for DependencyGraphDependency.
"""
type DependencyGraphDependencyConnection @preview(toggledBy: "hawkgirl-preview") {
type DependencyGraphDependencyConnection {
"""
A list of edges.
"""
Expand All @@ -9891,7 +9891,7 @@ type DependencyGraphDependencyConnection @preview(toggledBy: "hawkgirl-preview")
"""
An edge in a connection.
"""
type DependencyGraphDependencyEdge @preview(toggledBy: "hawkgirl-preview") {
type DependencyGraphDependencyEdge {
"""
A cursor for use in pagination.
"""
Expand Down Expand Up @@ -9966,7 +9966,7 @@ enum DependencyGraphEcosystem {
"""
Dependency manifest for a repository
"""
type DependencyGraphManifest implements Node @preview(toggledBy: "hawkgirl-preview") {
type DependencyGraphManifest implements Node {
"""
Path to view the manifest file blob
"""
Expand Down Expand Up @@ -10031,7 +10031,7 @@ type DependencyGraphManifest implements Node @preview(toggledBy: "hawkgirl-previ
"""
The connection type for DependencyGraphManifest.
"""
type DependencyGraphManifestConnection @preview(toggledBy: "hawkgirl-preview") {
type DependencyGraphManifestConnection {
"""
A list of edges.
"""
Expand All @@ -10056,7 +10056,7 @@ type DependencyGraphManifestConnection @preview(toggledBy: "hawkgirl-preview") {
"""
An edge in a connection.
"""
type DependencyGraphManifestEdge @preview(toggledBy: "hawkgirl-preview") {
type DependencyGraphManifestEdge {
"""
A cursor for use in pagination.
"""
Expand Down Expand Up @@ -43452,7 +43452,7 @@ type Repository implements Node & PackageOwner & ProjectOwner & ProjectV2Recent
Flag to scope to only manifests with dependencies
"""
withDependencies: Boolean
): DependencyGraphManifestConnection @preview(toggledBy: "hawkgirl-preview")
): DependencyGraphManifestConnection

"""
A list of deploy keys that are on this repository.
Expand Down
Loading