Skip to content

Commit 5f14d84

Browse files
committed
Add display names
1 parent 73dfe00 commit 5f14d84

15 files changed

+40
-2
lines changed

.github/workflows/check_licenses.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,9 @@ jobs:
2828
# Define a job for checking that pull requests do not introduce dependencies which fail license requirements...
2929
check_licenses:
3030

31+
# Define a display name:
32+
name: 'Check Licenses'
33+
3134
# Define the type of virtual host machine:
3235
runs-on: ubuntu-latest
3336

.github/workflows/check_required_files.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,9 @@ jobs:
3131
# Define a job for checking that pull requests contain the required files...
3232
check_required_files:
3333

34+
# Define a display name:
35+
name: 'Check Required Files'
36+
3437
# Define the type of virtual host machine:
3538
runs-on: ubuntu-latest
3639

.github/workflows/deprecate_packages.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ jobs:
4646
deprecate:
4747

4848
# Define a display name:
49-
name: 'Deprecate'
49+
name: 'Deprecate Packages'
5050

5151
# Define the type of virtual host machine:
5252
runs-on: ubuntu-latest

.github/workflows/first_time_greeting.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,9 @@ jobs:
2828
# Define a job for commenting on first-time contributions...
2929
greeting:
3030

31+
# Define a display name:
32+
name: 'Greet First-Time Contributors'
33+
3134
# Define the type of virtual host machine:
3235
runs-on: ubuntu-latest
3336

.github/workflows/lint_changed_files.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,7 @@ jobs:
3535

3636
# Define a job for linting committed code...
3737
process:
38+
3839
# Define a display name:
3940
name: 'Lint Changed Files'
4041

.github/workflows/lint_random_files.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -73,6 +73,7 @@ jobs:
7373

7474
# Define a job for linting committed code...
7575
process:
76+
7677
# Define a display name:
7778
name: 'Lint Random Files'
7879

.github/workflows/npm_downloads.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,9 @@ jobs:
3535
# Define a job for retrieving npm download counts...
3636
npm_downloads:
3737

38+
# Define a display name:
39+
name: 'Retrieve npm Download Counts'
40+
3841
# Define the type of virtual host machine on which to run the job:
3942
runs-on: ubuntu-latest
4043

.github/workflows/package_json_directories.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ jobs:
7474
# Update `directories` fields in `package.json` files:
7575
- name: 'Update `directories` fields in `package.json` files'
7676
run: |
77-
node lib/node_modules/@stdlib/_tools/package-json/scripts/update_directories
77+
node lib/node_modules/@stdlib/_tools/package-json/scripts/update_directories lib/node_modules/@stdlib
7878
7979
# Create a pull request with the updated `package.json` files:
8080
- name: 'Create pull request'

.github/workflows/process_metadata.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,7 @@ jobs:
3030

3131
# Define a job for processing commit message metadata...
3232
process:
33+
3334
# Define a display name:
3435
name: 'Process Metadata'
3536

.github/workflows/run_affected_tests.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,7 @@ jobs:
4646

4747
# Define a job for running tests affected by changes to the repository...
4848
process:
49+
4950
# Define a display name:
5051
name: 'Run affected tests'
5152

0 commit comments

Comments
 (0)