Skip to content

Commit 9863fef

Browse files
committed
Update option descriptions
1 parent 900761e commit 9863fef

2 files changed

Lines changed: 18 additions & 16 deletions

File tree

.github/workflows/lint_random_files.yml

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -26,42 +26,42 @@ on:
2626
inputs:
2727
num:
2828
type: number
29-
description: Maximum number of files to lint
29+
description: 'Maximum number of files to lint:'
3030
default: 100
3131
pattern:
32-
description: Regular expression for files to include
32+
description: 'Regular expression for files to include:'
3333
default: .*
3434
javascript:
3535
type: boolean
36-
description: Lint JavaScript and TypeScript files
36+
description: 'Lint JavaScript and TypeScript'
3737
default: true
3838
markdown:
3939
type: boolean
40-
description: Lint Markdown files
40+
description: 'Lint Markdown'
4141
default: true
4242
json:
4343
type: boolean
44-
description: Lint JSON files
44+
description: 'Lint JSON'
4545
default: true
4646
repl:
4747
type: boolean
48-
description: Lint REPL documentation files
48+
description: 'Lint REPL documentation'
4949
default: true
5050
r:
5151
type: boolean
52-
description: Lint R files
52+
description: 'Lint R'
5353
default: true
5454
c:
5555
type: boolean
56-
description: Lint C files
56+
description: 'Lint C'
5757
default: true
5858
python:
5959
type: boolean
60-
description: Lint Python files
60+
description: 'Lint Python'
6161
default: true
6262
fix:
6363
type: boolean
64-
description: Automatically fix lint errors (if possible) and file a pull request
64+
description: 'Fix lint errors and submit a PR (if possible)'
6565
default: false
6666

6767
# Trigger the workflow every 24 hours:
@@ -72,7 +72,7 @@ on:
7272
jobs:
7373

7474
# Define a job for linting committed code...
75-
process:
75+
lint:
7676

7777
# Define a display name:
7878
name: 'Lint Random Files'

.github/workflows/standalone_publish_custom.yml

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -26,21 +26,23 @@ on:
2626
inputs:
2727
skip:
2828
type: choice
29-
description: Whether to skip individual or toplevel package publishing
29+
description: 'Skip individual or toplevel package publishing?'
3030
options:
3131
- none
3232
- skip-toplevel
3333
- skip-individual
3434
packages:
35-
description: Space-separated list of packages to publish
35+
description: 'List of packages to publish (space separated):'
3636
pattern:
37-
description: Regular expression for packages to include
37+
description: 'Regular expression for packages to include:'
3838
dry-run:
3939
type: boolean
40-
description: Boolean flag indicating whether to skip uploading the packages (dry run)
40+
description: 'Skip uploading packages to npm (dry run):'
41+
default: false
4142
patch:
4243
type: boolean
43-
description: Boolean flag indicating whether to create a patch release for the packages
44+
description: 'Create a patch release'
45+
default: false
4446

4547
# Workflow concurrency group:
4648
concurrency:

0 commit comments

Comments
 (0)