From ef1e091ce2bf73f05469ef3bcfc92a1e1fc7175b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?David=20Test=C3=A9?= Date: Fri, 21 Nov 2025 11:50:13 +0100 Subject: [PATCH] chore(ci): put slack variables in global env for builds Without them, we are unable to perform Slack notification. --- .github/workflows/cargo_build_common.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/workflows/cargo_build_common.yml b/.github/workflows/cargo_build_common.yml index 9a5ce65da..b9e70efc4 100644 --- a/.github/workflows/cargo_build_common.yml +++ b/.github/workflows/cargo_build_common.yml @@ -50,6 +50,11 @@ env: RUSTFLAGS: "-C target-cpu=native" RUST_BACKTRACE: "full" RUST_MIN_STACK: "8388608" + SLACK_CHANNEL: ${{ secrets.SLACK_CHANNEL }} + SLACK_ICON: https://pbs.twimg.com/profile_images/1274014582265298945/OjBKP9kn_400x400.png + SLACK_USERNAME: ${{ secrets.BOT_USERNAME }} + SLACK_WEBHOOK: ${{ secrets.SLACK_WEBHOOK }} + SLACKIFY_MARKDOWN: true CHECKOUT_TOKEN: ${{ secrets.REPO_CHECKOUT_TOKEN || secrets.GITHUB_TOKEN }} # Secrets will be available only to zama-ai organization members SECRETS_AVAILABLE: ${{ secrets.JOB_SECRET != '' }}