From 8278c586b78fedf6815e66957bec1b25feb21a01 Mon Sep 17 00:00:00 2001 From: Harry Nguyen Date: Mon, 17 Aug 2026 16:00:05 -0700 Subject: [PATCH] ci: run e2e tests on otel-plugin changes The e2e-tests workflow's paths filter omitted otel-plugin/, so any PR touching only that module (including real code changes, not just dependency bumps) silently skipped e2e coverage. Add 'otel-plugin/**' to the paths filter on both the pull_request and push triggers. --- .github/workflows/e2e-tests.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/e2e-tests.yml b/.github/workflows/e2e-tests.yml index b8bbe991d..96d592ae4 100644 --- a/.github/workflows/e2e-tests.yml +++ b/.github/workflows/e2e-tests.yml @@ -10,6 +10,7 @@ on: - 'sdk/**' - 'sdk-testing/**' - 'sdk-integration-tests/**' + - 'otel-plugin/**' - 'examples/**' - 'pom.xml' push: @@ -20,6 +21,7 @@ on: - 'sdk/**' - 'sdk-testing/**' - 'sdk-integration-tests/**' + - 'otel-plugin/**' - 'examples/**' - 'pom.xml'