Skip to content

Commit e6f503c

Browse files
author
Steven Silvester
authored
Merge pull request #194 from blink1073/audit-job-names
Clean up actions and workflows
2 parents e2db157 + 3faf3cc commit e6f503c

File tree

7 files changed

+9
-9
lines changed

7 files changed

+9
-9
lines changed

.github/actions/draft-release/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ inputs:
2727
description: Use PRs with activity since the last stable git tag
2828
required: false
2929
steps_to_skip:
30-
description: comma-separated list of steps to steps_to_skip
30+
description: Comma separated list of steps to skip
3131
required: false
3232

3333
outputs:

.github/actions/publish-release/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ inputs:
1212
default: "false"
1313
required: false
1414
steps_to_skip:
15-
description: comma-separated list of steps to steps_to_skip
15+
description: Comma separated list of steps to skip
1616
required: false
1717

1818
outputs:

.github/workflows/draft-changelog.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ on:
1818
description: Use PRs with activity since the last stable git tag
1919
required: false
2020
jobs:
21-
changelog:
21+
draft_changelog:
2222
runs-on: ubuntu-latest
2323
strategy:
2424
fail-fast: true

.github/workflows/draft-release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,10 +21,10 @@ on:
2121
description: Use PRs with activity since the last stable git tag
2222
required: false
2323
steps_to_skip:
24-
description: comma-separated list of steps to steps_to_skip
24+
description: Comma separated list of steps to skip
2525
required: false
2626
jobs:
27-
release:
27+
draft_release:
2828
runs-on: ubuntu-latest
2929
strategy:
3030
fail-fast: true

.github/workflows/full-release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,11 +21,11 @@ on:
2121
description: Use PRs with activity since the last stable git tag
2222
required: false
2323
steps_to_skip:
24-
description: comma-separated list of steps to steps_to_skip
24+
description: Comma separated list of steps to skip
2525
required: false
2626

2727
jobs:
28-
release:
28+
full_release:
2929
runs-on: ubuntu-latest
3030
strategy:
3131
fail-fast: true

.github/workflows/generate-changelog.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ on:
1818
description: Use PRs with activity until this date or git reference
1919
required: false
2020
jobs:
21-
build:
21+
generate_changelog:
2222
runs-on: ubuntu-latest
2323
strategy:
2424
fail-fast: false

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ jobs:
4242
- name: Check Links
4343
uses: ./.github/actions/check-links
4444

45-
build:
45+
test:
4646
runs-on: ${{ matrix.os }}-latest
4747
strategy:
4848
fail-fast: false

0 commit comments

Comments
 (0)