You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@samza.apache.org by bh...@apache.org on 2023/06/20 18:09:13 UTC

[samza] branch master updated: Authenticate GitHub Actions builds to ge.apache.org (#1672)

This is an automated email from the ASF dual-hosted git repository.

bharathkk pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/samza.git


The following commit(s) were added to refs/heads/master by this push:
     new f85600476 Authenticate GitHub Actions builds to ge.apache.org (#1672)
f85600476 is described below

commit f8560047677c7661c4a69b49541464f73148f1b4
Author: Clay Johnson <cj...@gradle.com>
AuthorDate: Tue Jun 20 13:09:08 2023 -0500

    Authenticate GitHub Actions builds to ge.apache.org (#1672)
    
    This change allows GitHub Actions builds to submit build scans to ge.apache.org by authenticating those builds. The access key has been stored as an organizational secret by the ASF Infrastructure team in the Apache GitHub organization. The access key is not available to workflows triggered from forks.
    
    This builds on the changes in https://github.com/apache/samza/pull/1665
---
 .github/workflows/ci.yml | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index f630a01cb..813d82b97 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -26,6 +26,8 @@ jobs:
     strategy:
       matrix:
         java-version: [ 8.0.232 ]
+    env:
+      GRADLE_ENTERPRISE_ACCESS_KEY: ${{ secrets.GE_ACCESS_TOKEN }}
     steps:
       - name: Cache Gradle packages
         uses: actions/cache@v2