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.
2 parents 23a0756 + a960bce commit ca64609Copy full SHA for ca64609
.github/workflows/buildAndPublish.yml
@@ -37,7 +37,7 @@ jobs:
37
echo "${yellow}Checking if there has been changes to source code by running git diff on the src folder excluding markdown files${reset}"
38
39
if [ ${{ github.event_name == 'pull_request' }} ]; then
40
- changes=$(git diff "${{ github.event.pull_request.base.ref }}".."${{ github.event.pull_request.head.sha }}" --ignore-all-space --name-only -- src/)
+ changes=$(git diff "${{ github.event.pull_request.base.sha }}".."${{ github.event.pull_request.head.sha }}" --ignore-all-space --name-only -- src/)
41
else
42
changes=$(git diff "${{ github.ref_name }}^" "${{ github.ref_name }}" --ignore-all-space --name-only -- src/)
43
fi
0 commit comments