This is an automated email from the ASF dual-hosted git repository.
snazy pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/polaris.git
The following commit(s) were added to refs/heads/main by this push:
new 7de070d59 CI: fix missing Gradle build scans (#3709)
7de070d59 is described below
commit 7de070d59008afa6d369268cec88f27d555ead7b
Author: Robert Stupp <[email protected]>
AuthorDate: Mon Feb 9 17:03:32 2026 +0100
CI: fix missing Gradle build scans (#3709)
Publishing the Gradle build scans requires the `DEVELOCITY_ACCESS_KEY`
secret. For workflow-calls, each secret to be propagated to a called workflow
must be explicitly defined.
This change propagates the secrets from `ci-main.yml` to the called
`ci.yml`.
---
.github/workflows/ci-main.yml | 2 ++
.github/workflows/ci.yml | 3 +++
2 files changed, 5 insertions(+)
diff --git a/.github/workflows/ci-main.yml b/.github/workflows/ci-main.yml
index d76b9fce1..b713d694a 100644
--- a/.github/workflows/ci-main.yml
+++ b/.github/workflows/ci-main.yml
@@ -32,3 +32,5 @@ jobs:
ci-main:
name: CI/${{ github.ref_name }}
uses: ./.github/workflows/ci.yml
+ secrets:
+ DEVELOCITY_ACCESS_KEY: ${{ secrets.DEVELOCITY_ACCESS_KEY }}
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index a67702d2f..d8b8e19c0 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -22,6 +22,9 @@ name: CI
on:
workflow_call:
# Called from ci-main.yml and ci-pr.yml, which define different
concurrency groups.
+ secrets:
+ DEVELOCITY_ACCESS_KEY:
+ required: false
jobs:
build-checks: