We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d6191e9 commit ada1c43Copy full SHA for ada1c43
.github/actions/check-turbo-changes/action.yml
@@ -54,7 +54,13 @@ runs:
54
echo "Found packages:"
55
cat packages_to_track.json
56
57
- - name: Get build json
+ # - name: Get build json (PR based)
58
+ # if: github.event_name == 'pull_request'
59
+ # shell: bash
60
+ # run: |
61
+ # pnpm exec turbo run build --filter="...[origin/${{ github.base_ref }}]" --dry-run=json 2>/dev/null > build.json
62
+ - name: Get build json (Push based)
63
+ if: github.event_name == 'push'
64
shell: bash
65
run: |
66
# Find the merge-base between current HEAD and the previous known state
0 commit comments