"description":"Whether we should show dashboard previews for pull requests. By default, this is false (i.e. we will not create previews).",
"type":"boolean"
},
"path":{
"description":"Path is the subdirectory for the Grafana data. If specified, Grafana will ignore anything that is outside this directory in the repository. This is usually something like `grafana/`. Trailing and leading slash are not required. They are always added when needed. The path is relative to the root of the repository, regardless of the leading slash.\n\nWhen specifying something like `grafana-`, we will not look for `grafana-*`; we will only look for files under the directory `/grafana-/`. That means `/grafana-example.json` would not be found.",
"type":"string"
},
"token":{
"description":"Token for accessing the repository. If set, it will be encrypted into encryptedToken, then set to an empty string again.",
@ -857,6 +857,10 @@ export type GitHubRepositoryConfig = {
encryptedToken?: string;
/** Whether we should show dashboard previews for pull requests. By default, this is false (i.e. we will not create previews). */
generateDashboardPreviews?: boolean;
/** Path is the subdirectory for the Grafana data. If specified, Grafana will ignore anything that is outside this directory in the repository. This is usually something like `grafana/`. Trailing and leading slash are not required. They are always added when needed. The path is relative to the root of the repository, regardless of the leading slash.