File tree Expand file tree Collapse file tree
packages/cli/src/telemetry Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -3,6 +3,11 @@ name: Catalog Previews
33permissions :
44 contents : read
55
6+ # Suppress hyperframes CLI telemetry from HeyGen's own CI runs.
7+ # External users' CI continues to emit telemetry unless they set this themselves.
8+ env :
9+ HYPERFRAMES_NO_TELEMETRY : " 1"
10+
611on :
712 pull_request :
813 branches : [main]
Original file line number Diff line number Diff line change @@ -4,6 +4,11 @@ permissions:
44 contents : read
55 pull-requests : read
66
7+ # Suppress hyperframes CLI telemetry from HeyGen's own CI runs.
8+ # External users' CI continues to emit telemetry unless they set this themselves.
9+ env :
10+ HYPERFRAMES_NO_TELEMETRY : " 1"
11+
712on :
813 pull_request :
914 # `edited` is required so the workflow re-fires when a PR's base ref is
Original file line number Diff line number Diff line change @@ -3,6 +3,11 @@ name: Docs
33permissions :
44 contents : read
55
6+ # Suppress hyperframes CLI telemetry from HeyGen's own CI runs.
7+ # External users' CI continues to emit telemetry unless they set this themselves.
8+ env :
9+ HYPERFRAMES_NO_TELEMETRY : " 1"
10+
611on :
712 pull_request :
813 branches : [main]
Original file line number Diff line number Diff line change @@ -3,6 +3,11 @@ name: Player perf
33permissions :
44 contents : read
55
6+ # Suppress hyperframes CLI telemetry from HeyGen's own CI runs.
7+ # External users' CI continues to emit telemetry unless they set this themselves.
8+ env :
9+ HYPERFRAMES_NO_TELEMETRY : " 1"
10+
611on :
712 pull_request :
813 push :
Original file line number Diff line number Diff line change @@ -3,6 +3,11 @@ name: preview-regression
33permissions :
44 contents : read
55
6+ # Suppress hyperframes CLI telemetry from HeyGen's own CI runs.
7+ # External users' CI continues to emit telemetry unless they set this themselves.
8+ env :
9+ HYPERFRAMES_NO_TELEMETRY : " 1"
10+
611on :
712 pull_request :
813 push :
Original file line number Diff line number Diff line change @@ -3,6 +3,11 @@ name: regression
33permissions :
44 contents : read
55
6+ # Suppress hyperframes CLI telemetry from HeyGen's own CI runs.
7+ # External users' CI continues to emit telemetry unless they set this themselves.
8+ env :
9+ HYPERFRAMES_NO_TELEMETRY : " 1"
10+
611on :
712 pull_request :
813 push :
Original file line number Diff line number Diff line change @@ -3,6 +3,11 @@ name: Windows render verification
33permissions :
44 contents : read
55
6+ # Suppress hyperframes CLI telemetry from HeyGen's own CI runs.
7+ # External users' CI continues to emit telemetry unless they set this themselves.
8+ env :
9+ HYPERFRAMES_NO_TELEMETRY : " 1"
10+
611# Manually triggered smoke test that renders a HyperFrames composition on a
712# real Windows runner. Proves the PR #336 `where ffmpeg` fix actually works
813# end-to-end: FFmpeg is discovered natively on Windows, Chrome is installed
Original file line number Diff line number Diff line change @@ -40,11 +40,6 @@ export function shouldTrack(): boolean {
4040 return false ;
4141 }
4242
43- if ( process . env [ "CI" ] === "true" || process . env [ "CI" ] === "1" ) {
44- telemetryEnabled = false ;
45- return false ;
46- }
47-
4843 if ( isDevMode ( ) ) {
4944 telemetryEnabled = false ;
5045 return false ;
You can’t perform that action at this time.
0 commit comments