Skip to content

Commit

Permalink
remove echos
Browse files Browse the repository at this point in the history
  • Loading branch information
emmyoop committed Feb 1, 2024
1 parent ebb42ec commit c698664
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/ci_dbt_core_testing.yml
Original file line number Diff line number Diff line change
Expand Up @@ -78,17 +78,17 @@ jobs:
id: ref
run: |
if [[ -z "${{ inputs.dbt-core-ref }}" ]]; then
echo "dbt-core-ref=${{ inputs.dbt-core-ref }}"
dbt-core-ref=${{ inputs.dbt-core-ref }}
else
echo "dbt-core-ref=main"
dbt-core-ref=main
fi
if [[ -z "${{ inputs.dbt-common-ref }}" ]]; then
echo "dbt-common-ref=${{ inputs.dbt-common-ref }}"
dbt-common-ref=${{ inputs.dbt-common-ref }}
else
if [[ "${{ github.event_name }}" == "merge_group" ]]; then
echo "dbt-common-ref=${{ github.event.pull_request.merge_commit_sha }}"
dbt-common-ref=${{ github.event.pull_request.merge_commit_sha }}
else
echo "dbt-common-ref=${{ github.event.pull_request.base.sha }}"
dbt-common-ref=${{ github.event.pull_request.base.sha }}
fi
fi
echo "dbt-core-ref=$dbt-core-ref" >> $GITHUB_OUTPUT
Expand Down

0 comments on commit c698664

Please sign in to comment.