Skip to content

Commit fbb6d3e

Browse files
committed
fix: Possible options for repo-actions is not documented
Fixes #10501
1 parent 22af0f2 commit fbb6d3e

File tree

4 files changed

+21
-14
lines changed

4 files changed

+21
-14
lines changed

src/resources/editor/tools/vs-code.mjs

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18999,7 +18999,7 @@ var require_yaml_intelligence_resources = __commonJS({
1899918999
"$html-doc"
1900019000
]
1900119001
},
19002-
description: "Setting this to false prevents the `repo-actions` from appearing on this page."
19002+
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"
1900319003
},
1900419004
{
1900519005
name: "aliases",
@@ -21374,6 +21374,8 @@ var require_yaml_intelligence_resources = __commonJS({
2137421374
"The color used for errors, dangerous actions, or negative\ninformation.",
2137521375
"A bright color, used as a high-contrast foreground color on dark\nelements or low-contrast background color on light elements.",
2137621376
"A dark color, used as a high-contrast foreground color on light\nelements or high-contrast background color on light elements.",
21377+
"A color used to emphasize or highlight text or elements.",
21378+
"The color used for hyperlinks. If not defined, the\n<code>primary</code> color is used.",
2137721379
"A color, which may be a named brand color.",
2137821380
"A named brand color, taken either from <code>color.theme</code> or\n<code>color.palette</code> (in that order).",
2137921381
"Typography definitions for the brand.",
@@ -23678,12 +23680,12 @@ var require_yaml_intelligence_resources = __commonJS({
2367823680
mermaid: "%%"
2367923681
},
2368023682
"handlers/mermaid/schema.yml": {
23681-
_internalId: 187413,
23683+
_internalId: 187423,
2368223684
type: "object",
2368323685
description: "be an object",
2368423686
properties: {
2368523687
"mermaid-format": {
23686-
_internalId: 187405,
23688+
_internalId: 187415,
2368723689
type: "enum",
2368823690
enum: [
2368923691
"png",
@@ -23699,7 +23701,7 @@ var require_yaml_intelligence_resources = __commonJS({
2369923701
exhaustiveCompletions: true
2370023702
},
2370123703
theme: {
23702-
_internalId: 187412,
23704+
_internalId: 187422,
2370323705
type: "anyOf",
2370423706
anyOf: [
2370523707
{

src/resources/editor/tools/yaml/web-worker.js

Lines changed: 6 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/resources/editor/tools/yaml/yaml-intelligence-resources.json

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11971,7 +11971,7 @@
1197111971
"$html-doc"
1197211972
]
1197311973
},
11974-
"description": "Setting this to false prevents the `repo-actions` from appearing on this page."
11974+
"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"
1197511975
},
1197611976
{
1197711977
"name": "aliases",
@@ -14346,6 +14346,8 @@
1434614346
"The color used for errors, dangerous actions, or negative\ninformation.",
1434714347
"A bright color, used as a high-contrast foreground color on dark\nelements or low-contrast background color on light elements.",
1434814348
"A dark color, used as a high-contrast foreground color on light\nelements or high-contrast background color on light elements.",
14349+
"A color used to emphasize or highlight text or elements.",
14350+
"The color used for hyperlinks. If not defined, the\n<code>primary</code> color is used.",
1434914351
"A color, which may be a named brand color.",
1435014352
"A named brand color, taken either from <code>color.theme</code> or\n<code>color.palette</code> (in that order).",
1435114353
"Typography definitions for the brand.",
@@ -16650,12 +16652,12 @@
1665016652
"mermaid": "%%"
1665116653
},
1665216654
"handlers/mermaid/schema.yml": {
16653-
"_internalId": 187413,
16655+
"_internalId": 187423,
1665416656
"type": "object",
1665516657
"description": "be an object",
1665616658
"properties": {
1665716659
"mermaid-format": {
16658-
"_internalId": 187405,
16660+
"_internalId": 187415,
1665916661
"type": "enum",
1666016662
"enum": [
1666116663
"png",
@@ -16671,7 +16673,7 @@
1667116673
"exhaustiveCompletions": true
1667216674
},
1667316675
"theme": {
16674-
"_internalId": 187412,
16676+
"_internalId": 187422,
1667516677
"type": "anyOf",
1667616678
"anyOf": [
1667716679
{

src/resources/schema/document-website.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,11 @@
1414
description:
1515
short: "Links to source repository actions"
1616
long: "Links to source repository actions (`none` or one or more of `edit`, `source`, `issue`)"
17-
1817
tags:
1918
formats: [$html-doc]
20-
description: Setting this to false prevents the `repo-actions` from appearing on this page.
19+
description: |
20+
Setting this to false prevents the `repo-actions` from appearing on this page.
21+
Possible values are `none` or one or more of `edit`, `source`, and `issue`, *e.g.* `[edit, source, issue]`.
2122
2223
- name: aliases
2324
schema:

0 commit comments

Comments
 (0)