From d2adb1a3cd4b4d45645543198f8a101e9dfc7be6 Mon Sep 17 00:00:00 2001 From: Giordano Ricci Date: Mon, 19 Sep 2022 13:01:15 +0100 Subject: [PATCH] chore: add coverage repoort for OX-related PRs (#55316) --- .github/workflows/ox-code-coverage.yml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 .github/workflows/ox-code-coverage.yml diff --git a/.github/workflows/ox-code-coverage.yml b/.github/workflows/ox-code-coverage.yml new file mode 100644 index 00000000000..5ec379342d3 --- /dev/null +++ b/.github/workflows/ox-code-coverage.yml @@ -0,0 +1,18 @@ +name: Observability Experience test code coverage +on: + pull_request: + paths: + - 'pkg/services/queryhistory/**' + - 'pkg/services/correlations/**' + - 'public/app/features/explore/**' + - 'public/app/features/correlations/**' + branches-ignore: + - dependabot/** + - backport-* + +jobs: + workflow-call: + uses: grafana/code-coverage/.github/workflows/code-coverage.yml@v0.1.10 + with: + frontend-path-regexp: public\/app\/features\/(explore|correlations) + backend-path-regexp: pkg\/services\/(queryhistory|correlations)