Skip to content

Commit 04f923e

Browse files
authored
Merge pull request #59 from muzimuzhi/update-context-descr
Update context and function descriptions
2 parents e9ca4c3 + 50bd1ab commit 04f923e

File tree

4 files changed

+77
-59
lines changed

4 files changed

+77
-59
lines changed

languageserver/src/context-providers/steps.test.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -99,13 +99,13 @@ it("adds action outputs", async () => {
9999
key: "conclusion",
100100
value: new data.Null(),
101101
description:
102-
"The result of a completed step after `continue-on-error` is applied. Possible values are `success`, `failure`, `cancelled`, or `skipped`. When a `continue-on-error` step fails, the `outcome` is `failure`, but the final conclusion is `success`."
102+
"The result of a completed step after [`continue-on-error`](https://docs.github.com/actions/using-workflows/workflow-syntax-for-github-actions#jobsjob_idstepscontinue-on-error) is applied. Possible values are `success`, `failure`, `cancelled`, or `skipped`. When a `continue-on-error` step fails, the `outcome` is `failure`, but the final conclusion is `success`."
103103
},
104104
{
105105
key: "outcome",
106106
value: new data.Null(),
107107
description:
108-
"The result of a completed step before `continue-on-error` is applied. Possible values are `success`, `failure`, `cancelled`, or `skipped`. When a `continue-on-error` step fails, the `outcome` is `failure`, but the final conclusion is `success`."
108+
"The result of a completed step before [`continue-on-error`](https://docs.github.com/actions/using-workflows/workflow-syntax-for-github-actions#jobsjob_idstepscontinue-on-error) is applied. Possible values are `success`, `failure`, `cancelled`, or `skipped`. When a `continue-on-error` step fails, the `outcome` is `failure`, but the final conclusion is `success`."
109109
}
110110
)
111111
})

languageservice/src/complete.expressions.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ describe("expressions", () => {
100100
label: "api_url",
101101
documentation: {
102102
kind: "markdown",
103-
value: "The URL of the GitHub Actions REST API."
103+
value: "The URL of the GitHub REST API."
104104
},
105105
kind: CompletionItemKind.Variable
106106
});

0 commit comments

Comments
 (0)