Skip to content

Commit 69f18d6

Browse files
committed
lint
1 parent 7b32039 commit 69f18d6

File tree

2 files changed

+14
-14
lines changed

2 files changed

+14
-14
lines changed

.github/workflows/prep-release.yml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,26 +1,26 @@
1-
name: "Step 1: Prep Release"
1+
name: 'Step 1: Prep Release'
22
on:
33
workflow_dispatch:
44
inputs:
55
version_spec:
6-
description: "New Version Specifier"
7-
default: "next"
6+
description: 'New Version Specifier'
7+
default: 'next'
88
required: false
99
branch:
10-
description: "The branch to target"
10+
description: 'The branch to target'
1111
required: false
1212
post_version_spec:
13-
description: "Post Version Specifier"
13+
description: 'Post Version Specifier'
1414
required: false
1515
silent:
1616
description: "Set a placeholder in the changelog and don't publish the release."
1717
required: false
1818
type: boolean
1919
since:
20-
description: "Use PRs with activity since this date or git reference"
20+
description: 'Use PRs with activity since this date or git reference'
2121
required: false
2222
since_last_stable:
23-
description: "Use PRs with activity since the last stable git tag"
23+
description: 'Use PRs with activity since the last stable git tag'
2424
required: false
2525
type: boolean
2626
jobs:
@@ -43,6 +43,6 @@ jobs:
4343
since: ${{ github.event.inputs.since }}
4444
since_last_stable: ${{ github.event.inputs.since_last_stable }}
4545

46-
- name: "** Next Step **"
46+
- name: '** Next Step **'
4747
run: |
4848
echo "Optional): Review Draft Release: ${{ steps.prep-release.outputs.release_url }}"

.github/workflows/publish-release.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
1-
name: "Step 2: Publish Release"
1+
name: 'Step 2: Publish Release'
22
on:
33
workflow_dispatch:
44
inputs:
55
branch:
6-
description: "The target branch"
6+
description: 'The target branch'
77
required: false
88
release_url:
9-
description: "The URL of the draft GitHub release"
9+
description: 'The URL of the draft GitHub release'
1010
required: false
1111
steps_to_skip:
12-
description: "Comma separated list of steps to skip"
12+
description: 'Comma separated list of steps to skip'
1313
required: false
1414

1515
jobs:
@@ -45,13 +45,13 @@ jobs:
4545
token: ${{ steps.app-token.outputs.token }}
4646
release_url: ${{ steps.populate-release.outputs.release_url }}
4747

48-
- name: "** Next Step **"
48+
- name: '** Next Step **'
4949
if: ${{ success() }}
5050
run: |
5151
echo "Verify the final release"
5252
echo ${{ steps.finalize-release.outputs.release_url }}
5353
54-
- name: "** Failure Message **"
54+
- name: '** Failure Message **'
5555
if: ${{ failure() }}
5656
run: |
5757
echo "Failed to Publish the Draft Release Url:"

0 commit comments

Comments
 (0)