Skip to content

Commit 6e8c858

Browse files
author
IvanZosimov
committed
Fix wordings
1 parent 5d72250 commit 6e8c858

File tree

4 files changed

+11
-11
lines changed

4 files changed

+11
-11
lines changed

Diff for: .github/workflows/basic-validation.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# This workflow helps to be sure that the code of the action we're going to deploy:
1+
# This workflow helps ensure that the code of the action we're going to deploy:
22
# 1. Is well-formated
33
# 2. Is linted
44
# 3. Successfully builds
@@ -11,7 +11,7 @@ on:
1111
workflow_call:
1212
inputs:
1313
operating-systems:
14-
description: "Optional input to set list of operating systems whick the workflow uses. Defaults to ['ubuntu-latest', 'windows-latest', 'macos-latest'] if not set"
14+
description: "Optional input to set a list of operating systems which the workflow uses. Defaults to ['ubuntu-latest', 'windows-latest', 'macos-latest'] if not set"
1515
required: false
1616
type: string
1717
default: "['ubuntu-latest', 'windows-latest', 'macos-latest']"
@@ -21,7 +21,7 @@ on:
2121
type: boolean
2222
default: true
2323
node-version:
24-
description: "Optional input to set version of Node.js used to build a project. The input syntax corresponds to the setup-node's one"
24+
description: "Optional input to set the version of Node.js used to build the project. The input syntax corresponds to the setup-node's one"
2525
required: false
2626
type: string
2727
default: "16.x"

Diff for: .github/workflows/check-dist.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
# This workflow helps to be sure that generated innards of `dist` directory actually match what we expect them to be.
2-
# The `dist` is a special directory in Actions which contains distributable JS files.
1+
# This workflow helps ensure that generated innards of `dist` directory match what we expect them to be.
2+
# The `dist` is a particular directory in Actions that contains distributable JS files.
33
# In Actions, the `dist` is generated through a build process from other source files.
44

55
name: Check dist
@@ -8,12 +8,12 @@ on:
88
workflow_call:
99
inputs:
1010
dist-path:
11-
description: "Optional input to set a path to the dist folder. If it's not set, defaults to './dist'"
11+
description: "Optional input to set a path to the dist folder. If it's not set, it defaults to './dist'"
1212
required: false
1313
type: string
1414
default: "./dist"
1515
node-version:
16-
description: "Optional input to set version of Node.js used to build a project. The input syntax corresponds to the setup-node's one"
16+
description: "Optional input to set the version of Node.js used to build a project. The input syntax corresponds to the setup-node's one"
1717
required: false
1818
type: string
1919
default: "16.x"

Diff for: .github/workflows/codeql-analysis.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# This workflow helps to analize repository code for vulnerabilities, bugs, and other errors using CodeQL.
1+
# This workflow helps to analyze repository code for vulnerabilities, bugs, and other errors using CodeQL.
22
# For that CodeQL Action is used: https://github.com/github/codeql-action
33
# Learn more about CodeQL at https://codeql.github.com/
44

@@ -8,7 +8,7 @@ on:
88
workflow_call:
99
inputs:
1010
languages:
11-
description: "Optional input to set languages for CodeQL check. Supported values are: 'cpp', 'csharp', 'go', 'java', 'javascript', 'typescript', 'python', 'ruby'. To use multiple languages use the same syntax as used in the default value."
11+
description: "Optional input to set languages for CodeQL check. Supported values are: 'cpp', 'csharp', 'go', 'java', 'javascript', 'typescript', 'python', 'ruby'. To set multiple languages, use the same syntax as you can see in the default value."
1212
required: false
1313
type: string
1414
default: "['javascript']"
@@ -17,7 +17,7 @@ on:
1717
required: false
1818
type: string
1919
build-command:
20-
description: "Optional input to specify manual build command. Multiline syntax is supported"
20+
description: "Optional input to specify manual build command. The multiline syntax is supported"
2121
required: false
2222
type: string
2323

Diff for: .github/workflows/licensed.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# This workflow helps to check statuses of cached dependencies used in the action with help of the Licensed tool.
1+
# This workflow helps to check the statuses of cached dependencies used in action with the help of the Licensed tool.
22
# Learn more about Licensed at https://github.com/github/licensed
33

44
name: Licensed

0 commit comments

Comments
 (0)