Skip to content

Commit 47cc17a

Browse files
authored
chore: simplify conditional for publishing release comments
1 parent c143e33 commit 47cc17a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/release.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -170,7 +170,7 @@ jobs:
170170

171171
# Release Comments
172172
- name: Publish Release Comments
173-
if: ${{ github.event.inputs.release_type == 'stable' }} || ${{ github.event.inputs.release_type == 'rc'}}
173+
if: ${{ github.event.inputs.release_type == 'stable' || github.event.inputs.release_type == 'rc' }}
174174
uses: actions/github-script@v7
175175
env:
176176
NODE_OPTIONS: '--max-old-space-size=12096'

0 commit comments

Comments
 (0)