Skip to content
Open
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
11 changes: 11 additions & 0 deletions .github/workflows/test-warehouse.yml
Original file line number Diff line number Diff line change
Expand Up @@ -80,12 +80,23 @@ jobs:
repository: elementary-data/elementary
path: elementary
ref: ${{ inputs.elementary-ref }}
persist-credentials: false

- name: Checkout dbt package
uses: actions/checkout@v6
with:
path: dbt-data-reliability
ref: ${{ inputs.dbt-data-reliability-ref }}
# Don't leave the base repo's token in the git config: the checked out
# code is fork-controlled (see below) and nothing here pushes.
persist-credentials: false
# Fork PRs are tested via pull_request_target intentionally: the
# integration tests need the CI secrets of our test warehouses, which
# a pull_request run of a fork cannot access. The caller
# (test-all-warehouses.yml) gates fork PRs behind the
# elementary_test_env environment, so a maintainer must approve the
# run before this fork code is checked out and executed.
allow-unsafe-pr-checkout: true
Comment thread
coderabbitai[bot] marked this conversation as resolved.

- name: Configure AWS credentials
if: inputs.warehouse-type == 'athena'
Expand Down
Loading