Skip to content

Commit

Permalink
Merge branch 'main' into contentFromBaseUrl
Browse files Browse the repository at this point in the history
  • Loading branch information
nirgur authored Dec 24, 2024
2 parents ee978a3 + 7311ea7 commit 152ccbe
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/release-next-react-sdk.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ on:
push:
branches:
- main
- fix/react-sdk-next

env:
NODE_VERSION: 18.10.0
Expand Down Expand Up @@ -49,7 +48,8 @@ jobs:
- name: Check if should run
id: 'check'
run: |
if $(npx nx show projects --affected --plain | grep -q "react-sdk"); then
# Check if the affected projects include "react-sdk" or "web-component" since the last commit
if $(npx nx show projects --affected --base HEAD~1 --head HEAD | grep -q "react-sdk\|web-component"); then
echo "run=true" >> $GITHUB_OUTPUT
else
echo "run=false" >> $GITHUB_OUTPUT
Expand Down

0 comments on commit 152ccbe

Please sign in to comment.