Skip to content

Commit

Permalink
chore(ci): remove JS handling from workflow conditionals (#124)
Browse files Browse the repository at this point in the history
  • Loading branch information
DerekRoberts authored Jan 29, 2025
1 parent e8080aa commit 369e2bd
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/merge-main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@ jobs:

- name: Create Release
uses: softprops/action-gh-release@v2
if: ${{ needs.vars.outputs.tag != '' }}
if: needs.vars.outputs.tag != ''
continue-on-error: true
env:
GITHUB_TOKEN: ${{ github.token }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pr-validate.yml
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ jobs:
- name: Comment PR
continue-on-error: true
uses: thollander/actions-comment-pull-request@v3
if: ${{ steps.changelog.outputs.skipped == 'false' }}
if: steps.changelog.outputs.skipped == 'false'
with:
message: |
# Current changelog
Expand Down

0 comments on commit 369e2bd

Please sign in to comment.