From 5360d437856715a9787b8631bb69c77bdd08a88a Mon Sep 17 00:00:00 2001 From: varshitha-besthu Date: Mon, 17 Nov 2025 00:43:14 +0530 Subject: [PATCH] chore: add github workflows to sonar.exclusions --- .sonarcloud.properties | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.sonarcloud.properties b/.sonarcloud.properties index 83c08b4e1..aa80e745a 100644 --- a/.sonarcloud.properties +++ b/.sonarcloud.properties @@ -1,2 +1,5 @@ # Disable duplicate code in tests since it would introduce more complexity to reduce it. -sonar.cpd.exclusions=**/*.test.ts,**/*.spec.ts \ No newline at end of file +sonar.cpd.exclusions=**/*.test.ts,**/*.spec.ts + +# Ignore GitHub workflow files from analysis +sonar.exclusions=**/.github/workflows/** \ No newline at end of file