From 386970f5cae0fdbac7ba276dee9728def96bf599 Mon Sep 17 00:00:00 2001 From: Santiago Palladino Date: Mon, 22 Jul 2024 11:17:56 -0300 Subject: [PATCH] chore: Fix benchmark summary credentials In #7462 the aztec commenter github token was removed from the bench-comment job in favor of loading secrets in the earthly-ci wrapper script. However, the token was never injected into env, so the bench-summary was silently failing due to invalid credentials. --- .github/workflows/ci.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 02ee4253c10b..fe6928718d80 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -255,6 +255,8 @@ jobs: working-directory: ./yarn-project/scripts run: | earthly-ci -P +bench-comment + env: + AZTEC_BOT_GITHUB_TOKEN: ${{ secrets.AZTEC_BOT_GITHUB_TOKEN }} bb-gcc: needs: [build-images, changes]