diff --git a/.github/workflows/dbt_dispatch_workflow.yml b/.github/workflows/dbt_dispatch_workflow.yml index 86156647..717d83cf 100644 --- a/.github/workflows/dbt_dispatch_workflow.yml +++ b/.github/workflows/dbt_dispatch_workflow.yml @@ -73,6 +73,9 @@ jobs: python-version: "3.10" cache: "pip" + - name: Configure git for internal repos + run: git config --global url."https://x-access-token:${{ secrets.GH_INTERNAL_TOKEN }}@github.com/".insteadOf "https://github.com/" + - name: Install dependencies run: | pip install -r requirements.txt diff --git a/.github/workflows/dbt_run_adhoc.yml b/.github/workflows/dbt_run_adhoc.yml index 4d746571..23dcdd28 100644 --- a/.github/workflows/dbt_run_adhoc.yml +++ b/.github/workflows/dbt_run_adhoc.yml @@ -54,6 +54,9 @@ jobs: python-version: "3.10" cache: "pip" + - name: Configure git for internal repos + run: git config --global url."https://x-access-token:${{ secrets.GH_INTERNAL_TOKEN }}@github.com/".insteadOf "https://github.com/" + - name: install dependencies run: | pip install -r requirements.txt diff --git a/.github/workflows/dbt_run_master_keys.yml b/.github/workflows/dbt_run_master_keys.yml index b418a808..75d9250f 100644 --- a/.github/workflows/dbt_run_master_keys.yml +++ b/.github/workflows/dbt_run_master_keys.yml @@ -34,6 +34,9 @@ jobs: python-version: "3.10" cache: "pip" + - name: Configure git for internal repos + run: git config --global url."https://x-access-token:${{ secrets.GH_INTERNAL_TOKEN }}@github.com/".insteadOf "https://github.com/" + - name: install dependencies run: | pip install -r requirements.txt diff --git a/.github/workflows/dbt_run_template.yml b/.github/workflows/dbt_run_template.yml index 017a210f..d9b1884b 100644 --- a/.github/workflows/dbt_run_template.yml +++ b/.github/workflows/dbt_run_template.yml @@ -74,6 +74,9 @@ jobs: python-version: "3.10" cache: "pip" + - name: Configure git for internal repos + run: git config --global url."https://x-access-token:${{ secrets.GH_INTERNAL_TOKEN }}@github.com/".insteadOf "https://github.com/" + - name: Install dependencies run: | pip install -r requirements.txt diff --git a/.github/workflows/dbt_run_template_alter_all_gha_tasks.yml b/.github/workflows/dbt_run_template_alter_all_gha_tasks.yml index bc27ba8e..d013fc0e 100644 --- a/.github/workflows/dbt_run_template_alter_all_gha_tasks.yml +++ b/.github/workflows/dbt_run_template_alter_all_gha_tasks.yml @@ -60,6 +60,9 @@ jobs: python-version: "3.10" cache: "pip" + - name: Configure git for internal repos + run: git config --global url."https://x-access-token:${{ secrets.GH_INTERNAL_TOKEN }}@github.com/".insteadOf "https://github.com/" + - name: Install dependencies run: | pip install -r requirements.txt diff --git a/.github/workflows/dbt_run_template_alter_gha_tasks.yml b/.github/workflows/dbt_run_template_alter_gha_tasks.yml index d8813f33..45dd9f34 100644 --- a/.github/workflows/dbt_run_template_alter_gha_tasks.yml +++ b/.github/workflows/dbt_run_template_alter_gha_tasks.yml @@ -63,6 +63,9 @@ jobs: python-version: "3.10" cache: "pip" + - name: Configure git for internal repos + run: git config --global url."https://x-access-token:${{ secrets.GH_INTERNAL_TOKEN }}@github.com/".insteadOf "https://github.com/" + - name: Install dependencies run: | pip install -r requirements.txt diff --git a/.github/workflows/dbt_run_template_dev_refresh.yml b/.github/workflows/dbt_run_template_dev_refresh.yml index 840b6dbf..994c96f4 100644 --- a/.github/workflows/dbt_run_template_dev_refresh.yml +++ b/.github/workflows/dbt_run_template_dev_refresh.yml @@ -39,6 +39,9 @@ jobs: python-version: "3.10" cache: "pip" + - name: Configure git for internal repos + run: git config --global url."https://x-access-token:${{ secrets.GH_INTERNAL_TOKEN }}@github.com/".insteadOf "https://github.com/" + - name: Install dependencies run: | pip install -r requirements.txt @@ -91,6 +94,9 @@ jobs: python-version: "3.10" cache: "pip" + - name: Configure git for internal repos + run: git config --global url."https://x-access-token:${{ secrets.GH_INTERNAL_TOKEN }}@github.com/".insteadOf "https://github.com/" + - name: Install dependencies run: | pip install -r requirements.txt diff --git a/.github/workflows/dbt_run_template_docs_update.yml b/.github/workflows/dbt_run_template_docs_update.yml index cdaf728a..8d713b9f 100644 --- a/.github/workflows/dbt_run_template_docs_update.yml +++ b/.github/workflows/dbt_run_template_docs_update.yml @@ -44,6 +44,9 @@ jobs: python-version: "3.10" cache: "pip" + - name: Configure git for internal repos + run: git config --global url."https://x-access-token:${{ secrets.GH_INTERNAL_TOKEN }}@github.com/".insteadOf "https://github.com/" + - name: Install dependencies run: | pip install -r requirements.txt diff --git a/.github/workflows/dbt_run_template_integration_test.yml b/.github/workflows/dbt_run_template_integration_test.yml index e325274c..98ae7b62 100644 --- a/.github/workflows/dbt_run_template_integration_test.yml +++ b/.github/workflows/dbt_run_template_integration_test.yml @@ -66,6 +66,9 @@ jobs: python-version: ${{ inputs.python_version }} cache: "pip" + - name: Configure git for internal repos + run: git config --global url."https://x-access-token:${{ secrets.GH_INTERNAL_TOKEN }}@github.com/".insteadOf "https://github.com/" + - name: Install dependencies run: | pip install -r requirements.txt diff --git a/.github/workflows/slack_notify.yml b/.github/workflows/slack_notify.yml index bb88b7df..ad354274 100644 --- a/.github/workflows/slack_notify.yml +++ b/.github/workflows/slack_notify.yml @@ -17,6 +17,9 @@ jobs: uses: actions/setup-python@v4 with: python-version: "3.10" + + - name: Configure git for internal repos + run: git config --global url."https://x-access-token:${{ secrets.GH_INTERNAL_TOKEN }}@github.com/".insteadOf "https://github.com/" - name: Install dependencies run: |