Skip to content

Commit b2e5149

Browse files
Disable SDK telemetry in CI workflows (#105)
* Disable SDK telemetry in CI workflows Set DO_NOT_TRACK=1 to prevent unit tests from firing telemetry pings to the checkpoint endpoint. Each test creates a new SDK client, generating thousands of pings per CI run. * Add DO_NOT_TRACK=1 to release workflow Prevents telemetry pings during release test runs.
1 parent 725dc9a commit b2e5149

2 files changed

Lines changed: 6 additions & 0 deletions

File tree

.github/workflows/ci.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,9 @@ on:
99
permissions:
1010
contents: read
1111

12+
env:
13+
DO_NOT_TRACK: '1'
14+
1215
jobs:
1316
build:
1417
runs-on: ubuntu-latest

.github/workflows/release.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,9 @@ on:
88
permissions:
99
contents: write
1010

11+
env:
12+
DO_NOT_TRACK: '1'
13+
1114
jobs:
1215
release:
1316
runs-on: ubuntu-latest

0 commit comments

Comments
 (0)