From fd185e10e46f01228ebd6e21b38bb62ac1a6fa44 Mon Sep 17 00:00:00 2001 From: Phil Leggetter Date: Wed, 18 Mar 2026 16:48:54 +0000 Subject: [PATCH] chore(ci): disable telemetry for acceptance tests in GitHub Actions Added the environment variable HOOKDECK_CLI_TELEMETRY_DISABLED set to "1" in the acceptance test workflow configuration to prevent telemetry data collection during test runs. --- .github/workflows/test-acceptance.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/test-acceptance.yml b/.github/workflows/test-acceptance.yml index 5e44af41..0a25caf2 100644 --- a/.github/workflows/test-acceptance.yml +++ b/.github/workflows/test-acceptance.yml @@ -25,6 +25,7 @@ jobs: env: ACCEPTANCE_SLICE: ${{ matrix.slice }} HOOKDECK_CLI_TESTING_API_KEY: ${{ secrets[matrix.api_key_secret] }} + HOOKDECK_CLI_TELEMETRY_DISABLED: "1" steps: - name: Check out code uses: actions/checkout@v3