From 4251e743cd03a55f19bdffc6db976eccf05da853 Mon Sep 17 00:00:00 2001 From: clawbot Date: Sun, 9 Aug 2026 06:46:16 +0000 Subject: [PATCH] test: deliberately failing probe to verify CI executes the gate Throwaway branch for dnswatcher#126. Determines whether the CI runner executes the current workflow or replays a stale job definition. Must never be merged; branch is deleted after the result is recorded. --- internal/config/zz_ci_probe_test.go | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 internal/config/zz_ci_probe_test.go diff --git a/internal/config/zz_ci_probe_test.go b/internal/config/zz_ci_probe_test.go new file mode 100644 index 0000000..5c59e72 --- /dev/null +++ b/internal/config/zz_ci_probe_test.go @@ -0,0 +1,10 @@ +package config_test + +import "testing" + +// TestCIProbe126 is a deliberately failing test used to determine whether CI +// executes the real gate for this repository. It lives only on the throwaway +// branch ci-probe-126 and must never be merged. +func TestCIProbe126(t *testing.T) { + t.Fatal("CI-PROBE-126: planted failure; if CI reports success this gate did not run") +} -- 2.49.1