Skip to content

Commit 369e2bd

Browse files
authored
chore(ci): remove JS handling from workflow conditionals (#124)
1 parent e8080aa commit 369e2bd

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/merge-main.yml

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

128128
- name: Create Release
129129
uses: softprops/action-gh-release@v2
130-
if: ${{ needs.vars.outputs.tag != '' }}
130+
if: needs.vars.outputs.tag != ''
131131
continue-on-error: true
132132
env:
133133
GITHUB_TOKEN: ${{ github.token }}

.github/workflows/pr-validate.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ jobs:
9494
- name: Comment PR
9595
continue-on-error: true
9696
uses: thollander/actions-comment-pull-request@v3
97-
if: ${{ steps.changelog.outputs.skipped == 'false' }}
97+
if: steps.changelog.outputs.skipped == 'false'
9898
with:
9999
message: |
100100
# Current changelog

0 commit comments

Comments
 (0)