diff --git a/.github/workflows/integration-tests.yml b/.github/workflows/integration-tests.yml index d771f308f27..b79b54a4b19 100644 --- a/.github/workflows/integration-tests.yml +++ b/.github/workflows/integration-tests.yml @@ -2,6 +2,11 @@ name: Run integration tests on: workflow_dispatch: workflow_call: + secrets: + FIREBOLT_USERNAME: + required: true + FIREBOLT_PASSWORD: + required: true jobs: tests: runs-on: ubuntu-latest diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 1b6c4206917..9195c95e376 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -13,6 +13,9 @@ on: jobs: integration-tests: uses: firebolt-db/firebolt-python-sdk/.github/workflows/integration-tests.yml@main + secrets: + FIREBOLT_USERNAME: ${{ secrets.FIREBOLT_USERNAME }} + FIREBOLT_PASSWORD: ${{ secrets.FIREBOLT_PASSWORD }} publish: runs-on: ubuntu-latest