[llvm] [CI] Remove Check Clang Format from watched workflows (PR #122740)

Nathan Gauër via llvm-commits llvm-commits at lists.llvm.org
Mon Jan 13 08:40:37 PST 2025


https://github.com/Keenuts created https://github.com/llvm/llvm-project/pull/122740

This was useful to test metrics before we had an actual workflow, now it generates noise.

>From 4c778825b9edcdbee0c526650260c91521b6ca2e Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Nathan=20Gau=C3=ABr?= <brioche at google.com>
Date: Mon, 13 Jan 2025 17:39:34 +0100
Subject: [PATCH] [CI] Remove Check Clang Format from watched workflows
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit

This was useful to test metrics before we had an actual workflow, now
it generates noise.

Signed-off-by: Nathan Gauër <brioche at google.com>
---
 .ci/metrics/metrics.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/.ci/metrics/metrics.py b/.ci/metrics/metrics.py
index 55025e50d1081f..306c447e1afffa 100644
--- a/.ci/metrics/metrics.py
+++ b/.ci/metrics/metrics.py
@@ -12,7 +12,7 @@
     "https://influx-prod-13-prod-us-east-0.grafana.net/api/v1/push/influx/write"
 )
 GITHUB_PROJECT = "llvm/llvm-project"
-WORKFLOWS_TO_TRACK = ["Check code formatting", "LLVM Premerge Checks"]
+WORKFLOWS_TO_TRACK = ["LLVM Premerge Checks"]
 SCRAPE_INTERVAL_SECONDS = 5 * 60
 
 



More information about the llvm-commits mailing list