mirror of
https://github.com/deepseek-ai/deepseek-harness
synced 2026-08-15 21:04:50 +00:00
apps/cli/cordis.yml now bakes in the production OTLP endpoint; CI boots of the web composition (e2e, snapshots, built smokes) must not stream test sessions there. DSH_TELEMETRY_DISABLED=1 at the workflow level disables the telemetry row before its load-time url validation; the telemetry e2e still runs — it overrides the variable to empty for its child process and points DSH_TELEMETRY_OTLP_URL at its in-test collector.
27 lines
584 B
YAML
27 lines
584 B
YAML
name: Expected filenames
|
|
|
|
on:
|
|
pull_request:
|
|
paths:
|
|
- '*[gG][oO][lL][dD][eE][nN]*'
|
|
- '**/*[gG][oO][lL][dD][eE][nN]*'
|
|
- '!vendor/**'
|
|
|
|
permissions:
|
|
contents: read
|
|
|
|
env:
|
|
# CI runs must never report to the production telemetry endpoint baked
|
|
# into apps/cli/cordis.yml (AppCLIEntry disables the row when set).
|
|
DSH_TELEMETRY_DISABLED: '1'
|
|
|
|
jobs:
|
|
expected-filenames:
|
|
name: no golden filenames
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v6
|
|
|
|
- name: Check tracked filenames
|
|
run: scripts/check-expected-filenames.sh
|