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

docs: Possible options for repo-actions is not documented #10502

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
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
10 changes: 6 additions & 4 deletions src/resources/editor/tools/vs-code.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -18999,7 +18999,7 @@ var require_yaml_intelligence_resources = __commonJS({
"$html-doc"
]
},
description: "Setting this to false prevents the `repo-actions` from appearing on this page."
description: "Setting this to false prevents the `repo-actions` from appearing on this page.\nPossible values are `none` or one or more of `edit`, `source`, and `issue`, *e.g.* `[edit, source, issue]`.\n"
},
{
name: "aliases",
Expand Down Expand Up @@ -21374,6 +21374,8 @@ var require_yaml_intelligence_resources = __commonJS({
"The color used for errors, dangerous actions, or negative\ninformation.",
"A bright color, used as a high-contrast foreground color on dark\nelements or low-contrast background color on light elements.",
"A dark color, used as a high-contrast foreground color on light\nelements or high-contrast background color on light elements.",
"A color used to emphasize or highlight text or elements.",
"The color used for hyperlinks. If not defined, the\n<code>primary</code> color is used.",
"A color, which may be a named brand color.",
"A named brand color, taken either from <code>color.theme</code> or\n<code>color.palette</code> (in that order).",
"Typography definitions for the brand.",
Expand Down Expand Up @@ -23678,12 +23680,12 @@ var require_yaml_intelligence_resources = __commonJS({
mermaid: "%%"
},
"handlers/mermaid/schema.yml": {
_internalId: 187413,
_internalId: 187423,
type: "object",
description: "be an object",
properties: {
"mermaid-format": {
_internalId: 187405,
_internalId: 187415,
type: "enum",
enum: [
"png",
Expand All @@ -23699,7 +23701,7 @@ var require_yaml_intelligence_resources = __commonJS({
exhaustiveCompletions: true
},
theme: {
_internalId: 187412,
_internalId: 187422,
type: "anyOf",
anyOf: [
{
Expand Down
10 changes: 6 additions & 4 deletions src/resources/editor/tools/yaml/web-worker.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 6 additions & 4 deletions src/resources/editor/tools/yaml/yaml-intelligence-resources.json
Original file line number Diff line number Diff line change
Expand Up @@ -11971,7 +11971,7 @@
"$html-doc"
]
},
"description": "Setting this to false prevents the `repo-actions` from appearing on this page."
"description": "Setting this to false prevents the `repo-actions` from appearing on this page.\nPossible values are `none` or one or more of `edit`, `source`, and `issue`, *e.g.* `[edit, source, issue]`.\n"
},
{
"name": "aliases",
Expand Down Expand Up @@ -14346,6 +14346,8 @@
"The color used for errors, dangerous actions, or negative\ninformation.",
"A bright color, used as a high-contrast foreground color on dark\nelements or low-contrast background color on light elements.",
"A dark color, used as a high-contrast foreground color on light\nelements or high-contrast background color on light elements.",
"A color used to emphasize or highlight text or elements.",
"The color used for hyperlinks. If not defined, the\n<code>primary</code> color is used.",
"A color, which may be a named brand color.",
"A named brand color, taken either from <code>color.theme</code> or\n<code>color.palette</code> (in that order).",
"Typography definitions for the brand.",
Expand Down Expand Up @@ -16650,12 +16652,12 @@
"mermaid": "%%"
},
"handlers/mermaid/schema.yml": {
"_internalId": 187413,
"_internalId": 187423,
"type": "object",
"description": "be an object",
"properties": {
"mermaid-format": {
"_internalId": 187405,
"_internalId": 187415,
"type": "enum",
"enum": [
"png",
Expand All @@ -16671,7 +16673,7 @@
"exhaustiveCompletions": true
},
"theme": {
"_internalId": 187412,
"_internalId": 187422,
"type": "anyOf",
"anyOf": [
{
Expand Down
5 changes: 3 additions & 2 deletions src/resources/schema/document-website.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,11 @@
description:
short: "Links to source repository actions"
long: "Links to source repository actions (`none` or one or more of `edit`, `source`, `issue`)"

tags:
formats: [$html-doc]
description: Setting this to false prevents the `repo-actions` from appearing on this page.
description: |
Setting this to false prevents the `repo-actions` from appearing on this page.
Possible values are `none` or one or more of `edit`, `source`, and `issue`, *e.g.* `[edit, source, issue]`.

- name: aliases
schema:
Expand Down
Loading