diff --git a/.github/workflows/ci-bazel.yml b/.github/workflows/ci-bazel.yml index ce6e2642..c2d68736 100644 --- a/.github/workflows/ci-bazel.yml +++ b/.github/workflows/ci-bazel.yml @@ -2,6 +2,9 @@ name: Bazel CI on: workflow_call: + secrets: + BUILDBUDDY_ORG_API_KEY: + required: false # Not using 'inputs' here, since we take no inputs at this time -- just the 'github' context. # Note: on type workflow_run commit message would be github.event.workflow_run.head_commit.message diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 4f963f8e..b054988b 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -38,3 +38,5 @@ jobs: bazel: uses: ./.github/workflows/ci-bazel.yml + secrets: + BUILDBUDDY_ORG_API_KEY: ${{ secrets.BUILDBUDDY_ORG_API_KEY }}