From 4e27e66938d4f108fa27f246f95e78ca56fc288a Mon Sep 17 00:00:00 2001 From: Erick Friis Date: Thu, 29 Feb 2024 15:24:28 -0800 Subject: [PATCH] infra: mongodb env vars (#18347) --- .github/workflows/_integration_test.yml | 1 + .github/workflows/_release.yml | 1 + 2 files changed, 2 insertions(+) diff --git a/.github/workflows/_integration_test.yml b/.github/workflows/_integration_test.yml index 8246ed15447..83daf7848ee 100644 --- a/.github/workflows/_integration_test.yml +++ b/.github/workflows/_integration_test.yml @@ -74,6 +74,7 @@ jobs: ES_CLOUD_ID: ${{ secrets.ES_CLOUD_ID }} ES_API_KEY: ${{ secrets.ES_API_KEY }} GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # for airbyte + MONGODB_ATLAS_URI: ${{ secrets.MONGODB_ATLAS_URI }} run: | make integration_tests diff --git a/.github/workflows/_release.yml b/.github/workflows/_release.yml index e4b5e21a45d..460255c6ef8 100644 --- a/.github/workflows/_release.yml +++ b/.github/workflows/_release.yml @@ -195,6 +195,7 @@ jobs: ES_CLOUD_ID: ${{ secrets.ES_CLOUD_ID }} ES_API_KEY: ${{ secrets.ES_API_KEY }} GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # for airbyte + MONGODB_ATLAS_URI: ${{ secrets.MONGODB_ATLAS_URI }} run: make integration_tests working-directory: ${{ inputs.working-directory }}