From 9554908035fce831355ca363bb740c66be52334d Mon Sep 17 00:00:00 2001 From: Michael Myaskovsky Date: Thu, 20 Nov 2025 17:22:10 +0200 Subject: [PATCH 1/4] long line --- models/schema.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/models/schema.yml b/models/schema.yml index 021cf8642..ff0e323b3 100644 --- a/models/schema.yml +++ b/models/schema.yml @@ -2,7 +2,7 @@ version: 2 models: - name: customers - description: This table has basic information about a customer, as well as some derived facts based on a customer's orders + description: This table has basic information about a customer, as well as some derived facts based on a customer's orders aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa config: tags: ["PII"] From 16503aa30ae00b7c47926ce97f42a3d384ea3a68 Mon Sep 17 00:00:00 2001 From: michael-myaskovsky Date: Wed, 8 Jul 2026 11:54:34 +0300 Subject: [PATCH 2/4] Create elementary-review.yml --- .github/workflows/elementary-review.yml | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 .github/workflows/elementary-review.yml diff --git a/.github/workflows/elementary-review.yml b/.github/workflows/elementary-review.yml new file mode 100644 index 000000000..8cc0dab84 --- /dev/null +++ b/.github/workflows/elementary-review.yml @@ -0,0 +1,25 @@ +name: Elementary Data Quality Review + +on: + pull_request: + paths: + - "dbt/elementary_analytics/models/**/*.sql" + - "dbt/elementary_analytics/models/**/*.yml" + - "dbt/elementary_analytics/dbt_project.yml" + +jobs: + elementary-review: + runs-on: ubuntu-latest + permissions: + contents: read + pull-requests: write + issues: write + steps: + - uses: actions/checkout@v6 + with: + fetch-depth: 0 + + - uses: elementary-data/elementary-ci@v1 + with: + elementary-api-key: ${{ secrets.ELEMENTARY_API_KEY }} + elementary-api-url: "https://dev.api.elementary-data.com" From 77ba8b593b0f0b666619128ca35844effb574798 Mon Sep 17 00:00:00 2001 From: Michael Myaskovsky Date: Wed, 8 Jul 2026 12:08:44 +0300 Subject: [PATCH 3/4] fix prefixes --- .github/workflows/elementary-review.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/elementary-review.yml b/.github/workflows/elementary-review.yml index 8cc0dab84..97198af22 100644 --- a/.github/workflows/elementary-review.yml +++ b/.github/workflows/elementary-review.yml @@ -3,9 +3,9 @@ name: Elementary Data Quality Review on: pull_request: paths: - - "dbt/elementary_analytics/models/**/*.sql" - - "dbt/elementary_analytics/models/**/*.yml" - - "dbt/elementary_analytics/dbt_project.yml" + - "models/**/*.sql" + - "models/**/*.yml" + - "dbt_project.yml" jobs: elementary-review: From b605029b7fcb0eee44c8c84afd6e7bc53f8dfbf9 Mon Sep 17 00:00:00 2001 From: Michael Myaskovsky Date: Mon, 13 Jul 2026 12:54:53 +0300 Subject: [PATCH 4/4] test --- models/customers.sql | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/models/customers.sql b/models/customers.sql index 76f6601c5..1d7ea4ff9 100644 --- a/models/customers.sql +++ b/models/customers.sql @@ -71,7 +71,7 @@ final as ( from customers - left join customer_orders + inner join customer_orders on customers.customer_id = customer_orders.customer_id left join customer_payments