Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/spectacles.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,13 +29,13 @@ jobs:
python setup.py install
- name: SQL Tests
run: |
echo "Testing SQL for pull request from ${{ github.head_ref }}"
echo "Testing SQL for pull request from ${GITHUB_HEAD_REF}"
spectacles sql \
--base-url https://${{ env.HOST }}.looker.com/ \
--client-id ${{ secrets.CLIENT_ID }} \
--client-secret ${{ secrets.CLIENT_SECRET }} \
--project ${{ env.PROJECT_NAME }} \
--branch `if [ -z "${{ github.head_ref }}" ]; then echo master; else echo ${{ github.head_ref }}; fi` \
--branch `if [ -z "${GITHUB_HEAD_REF}" ]; then echo master; else echo ${GITHUB_HEAD_REF}; fi` \
--remote-reset
- name: slack_notify_success
if: success()
Expand Down
Loading