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 b5d5f89 commit d070c8bCopy full SHA for d070c8b
.github/actions/diff-js-api-breaking-changes/action.yml
@@ -18,6 +18,8 @@ runs:
18
SCRATCH_DIR: ${{ runner.temp }}/diff-js-api-breaking-changes
19
run: |
20
# Check if the file was changed in this PR, if not, exit early without saving to the output.json
21
+ git diff --name-status
22
+ git diff --name-status | awk '{print $2}'
23
git diff --name-status | awk '{print $2}' | grep 'packages/react-native/ReactNativeApi.d.ts' || echo "ReactNativeApi.d.ts not found, exiting" && exit 0
24
25
node ./scripts/js-api/diff-api-snapshot \
0 commit comments