Skip to content

Commit

Permalink
replaced quotes in the if condition in check_licence_and_history
Browse files Browse the repository at this point in the history
  • Loading branch information
maxb-io committed Feb 27, 2024
1 parent 115df60 commit adaa545
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/check_license_and_history.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
id: changes
run: |
echo ${{github.event.pull_request.head.repo.full_name}}
if [ ${{ github.event.pull_request.head.repo.full_name == 'speedb-io/speedb' }} ]; then
if [ ${{ github.event.pull_request.head.repo.full_name == "speedb-io/speedb" }} ]; then
echo "files added or changed in a PR that came from the speedb repo: "
git diff --name-only --diff-filter=ACMRT ${{ github.event.pull_request.base.sha }} ${{ github.event.pull_request.head.sha }} -- . ':!.github' ':!*.md'
echo "diff_list<<EOF" >> $GITHUB_OUTPUT
Expand Down

0 comments on commit adaa545

Please sign in to comment.