diff --git a/.github/workflows/dbt_docs_update.yml b/.github/workflows/dbt_docs_update.yml index 7e886b2..3677b0b 100644 --- a/.github/workflows/dbt_docs_update.yml +++ b/.github/workflows/dbt_docs_update.yml @@ -19,7 +19,7 @@ env: SCHEMA: "${{ vars.SCHEMA }}" jobs: - scheduled_run: + run_dbt_jobs: name: docs_update runs-on: ubuntu-latest environment: @@ -73,7 +73,7 @@ jobs: git push -f --set-upstream origin docs notify-failure: - needs: [scheduled_run] + needs: [run_dbt_jobs] if: failure() uses: ./.github/workflows/slack_notify.yml secrets: diff --git a/.github/workflows/dbt_run_deployment.yml b/.github/workflows/dbt_run_deployment.yml index 1739173..cad3b8f 100644 --- a/.github/workflows/dbt_run_deployment.yml +++ b/.github/workflows/dbt_run_deployment.yml @@ -37,7 +37,7 @@ concurrency: group: ${{ github.workflow }} jobs: - dbt: + run_dbt_jobs: runs-on: ubuntu-latest environment: name: workflow_prod @@ -71,7 +71,7 @@ jobs: target notify-failure: - needs: [dbt] + needs: [run_dbt_jobs] if: failure() uses: ./.github/workflows/slack_notify.yml secrets: diff --git a/.github/workflows/dbt_run_dev_refresh.yml b/.github/workflows/dbt_run_dev_refresh.yml index f4ae0f4..2e57e9e 100644 --- a/.github/workflows/dbt_run_dev_refresh.yml +++ b/.github/workflows/dbt_run_dev_refresh.yml @@ -24,7 +24,7 @@ concurrency: group: ${{ github.workflow }} jobs: - dbt: + run_dbt_jobs: runs-on: ubuntu-latest environment: name: workflow_prod @@ -53,7 +53,7 @@ jobs: target notify-failure: - needs: [dbt] + needs: [run_dbt_jobs] if: failure() uses: ./.github/workflows/slack_notify.yml secrets: diff --git a/.github/workflows/dbt_run_scheduled_core.yml b/.github/workflows/dbt_run_scheduled_core.yml index 0392f8e..cc999aa 100644 --- a/.github/workflows/dbt_run_scheduled_core.yml +++ b/.github/workflows/dbt_run_scheduled_core.yml @@ -24,7 +24,7 @@ concurrency: group: ${{ github.workflow }} jobs: - dbt: + run_dbt_jobs: runs-on: ubuntu-latest environment: name: workflow_prod @@ -53,7 +53,7 @@ jobs: target notify-failure: - needs: [dbt] + needs: [run_dbt_jobs] if: failure() uses: ./.github/workflows/slack_notify.yml secrets: diff --git a/.github/workflows/dbt_run_scheduled_non_core.yml b/.github/workflows/dbt_run_scheduled_non_core.yml index 978905e..32ace50 100644 --- a/.github/workflows/dbt_run_scheduled_non_core.yml +++ b/.github/workflows/dbt_run_scheduled_non_core.yml @@ -24,7 +24,7 @@ concurrency: group: ${{ github.workflow }} jobs: - dbt: + run_dbt_jobs: runs-on: ubuntu-latest environment: name: workflow_prod @@ -53,7 +53,7 @@ jobs: target notify-failure: - needs: [dbt] + needs: [run_dbt_jobs] if: failure() uses: ./.github/workflows/slack_notify.yml secrets: diff --git a/.github/workflows/dbt_run_streamline_blocks_realtime.yml b/.github/workflows/dbt_run_streamline_blocks_realtime.yml index 4ea51e1..08b466b 100644 --- a/.github/workflows/dbt_run_streamline_blocks_realtime.yml +++ b/.github/workflows/dbt_run_streamline_blocks_realtime.yml @@ -24,7 +24,7 @@ concurrency: group: ${{ github.workflow }} jobs: - dbt: + run_dbt_jobs: runs-on: ubuntu-latest environment: name: workflow_prod @@ -53,7 +53,7 @@ jobs: target notify-failure: - needs: [dbt] + needs: [run_dbt_jobs] if: failure() uses: ./.github/workflows/slack_notify.yml secrets: diff --git a/.github/workflows/dbt_run_streamline_chunks_realtime.yml b/.github/workflows/dbt_run_streamline_chunks_realtime.yml index 21b3b76..3f01069 100644 --- a/.github/workflows/dbt_run_streamline_chunks_realtime.yml +++ b/.github/workflows/dbt_run_streamline_chunks_realtime.yml @@ -24,7 +24,7 @@ concurrency: group: ${{ github.workflow }} jobs: - dbt: + run_dbt_jobs: runs-on: ubuntu-latest environment: name: workflow_prod @@ -53,7 +53,7 @@ jobs: target notify-failure: - needs: [dbt] + needs: [run_dbt_jobs] if: failure() uses: ./.github/workflows/slack_notify.yml secrets: diff --git a/.github/workflows/dbt_run_streamline_non_core_weekly.yml b/.github/workflows/dbt_run_streamline_non_core_weekly.yml index dc55f7c..70a05ca 100644 --- a/.github/workflows/dbt_run_streamline_non_core_weekly.yml +++ b/.github/workflows/dbt_run_streamline_non_core_weekly.yml @@ -24,7 +24,7 @@ concurrency: group: ${{ github.workflow }} jobs: - dbt: + run_dbt_jobs: runs-on: ubuntu-latest environment: name: workflow_prod @@ -53,7 +53,7 @@ jobs: target notify-failure: - needs: [dbt] + needs: [run_dbt_jobs] if: failure() uses: ./.github/workflows/slack_notify.yml secrets: diff --git a/.github/workflows/dbt_run_streamline_transactions_realtime.yml b/.github/workflows/dbt_run_streamline_transactions_realtime.yml index 2722024..8398458 100644 --- a/.github/workflows/dbt_run_streamline_transactions_realtime.yml +++ b/.github/workflows/dbt_run_streamline_transactions_realtime.yml @@ -24,7 +24,7 @@ concurrency: group: ${{ github.workflow }} jobs: - dbt: + run_dbt_jobs: runs-on: ubuntu-latest environment: name: workflow_prod @@ -53,7 +53,7 @@ jobs: target notify-failure: - needs: [dbt] + needs: [run_dbt_jobs] if: failure() uses: ./.github/workflows/slack_notify.yml secrets: diff --git a/.github/workflows/dbt_test.yml b/.github/workflows/dbt_test.yml index bc494c1..c3466d2 100644 --- a/.github/workflows/dbt_test.yml +++ b/.github/workflows/dbt_test.yml @@ -49,10 +49,3 @@ jobs: - name: Log test results run: | python python_scripts/test_alert/dbt_test_alert.py - -notify-failure: - needs: [run_dbt_jobs] - if: failure() - uses: ./.github/workflows/slack_notify.yml - secrets: - SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_URL }}