Skip to content

Commit

Permalink
Merge pull request #81 from fredrikj31/ci-turbo-ignore-fallback
Browse files Browse the repository at this point in the history
ci(workflows): adds fallback flag to turbo ignore
  • Loading branch information
fredrikj31 authored Oct 30, 2024
2 parents e0ee237 + 3aa9388 commit 3d9fa60
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -29,15 +29,15 @@ jobs:

- id: file-changes-api
run: |
if pnpm dlx turbo-ignore @thoughts/api; then
if pnpm dlx turbo-ignore --fallback ${{ github.ref_name }} @thoughts/api; then
echo "CONTINUE=0" >> "$GITHUB_OUTPUT"
else
echo "CONTINUE=1" >> "$GITHUB_OUTPUT"
fi
- id: file-changes-app
run: |
if pnpm dlx turbo-ignore @thoughts/app; then
if pnpm dlx turbo-ignore --fallback ${{ github.ref_name }} @thoughts/app; then
echo "CONTINUE=0" >> "$GITHUB_OUTPUT"
else
echo "CONTINUE=1" >> "$GITHUB_OUTPUT"
Expand Down

0 comments on commit 3d9fa60

Please sign in to comment.