Skip to content

Conversation

@vsavkin
Copy link
Member

@vsavkin vsavkin commented Nov 26, 2025

No description provided.

@vsavkin vsavkin requested a review from MaxKless as a code owner November 26, 2025 12:42
@nx-cloud
Copy link
Contributor

nx-cloud bot commented Nov 26, 2025

View your CI Pipeline Execution ↗ for commit 202b501

Command Status Duration Result
nx affected --targets=lint,test,build,e2e-ci,ty... ✅ Succeeded 1m 53s View ↗
nx-cloud record -- yarn nx sync:check ✅ Succeeded 4s View ↗
nx-cloud record -- yarn nx run-many -t ktfmtFormat ✅ Succeeded 5m 28s View ↗
nx run-many -t ktfmtFormat ✅ Succeeded 5m 24s View ↗
nx-cloud record -- yarn nx format:check --verbose ✅ Succeeded 7s View ↗

☁️ Nx Cloud last updated this comment at 2025-11-26 14:38:54 UTC

@vsavkin vsavkin force-pushed the change-code-notificiations branch from 51cf356 to d095020 Compare November 26, 2025 12:44
Copy link
Contributor

@nx-cloud nx-cloud bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

✅ The fix from Nx Cloud was applied

These changes will fix the format:check error by applying Prettier formatting to periodic-ai-check.ts. The file was modified in the PR to adjust AI check timing intervals, but the changes were not formatted according to the project's Prettier configuration before committing.

We had verified this fix by re-running nx-cloud record -- yarn nx format:check --verbose.

Suggested Fix changes
diff --git a/libs/vscode/mcp/src/lib/periodic-ai-check.ts b/libs/vscode/mcp/src/lib/periodic-ai-check.ts
index f58ff915..9f35a021 100644
--- a/libs/vscode/mcp/src/lib/periodic-ai-check.ts
+++ b/libs/vscode/mcp/src/lib/periodic-ai-check.ts
@@ -65,17 +65,20 @@ let intervalTimer: NodeJS.Timeout | undefined;
 
 export function setupPeriodicAiCheck(context: ExtensionContext) {
   // Run first check after 3 minutes
-  checkTimer = setTimeout(() => {
-    runAiAgentCheck();
-
-    // Then check every 3 hours
-    intervalTimer = setInterval(
-      () => {
-        runAiAgentCheck();
-      },
-      3 * 60 * 60 * 1000,
-    );
-  }, 3 * 60 * 1000);
+  checkTimer = setTimeout(
+    () => {
+      runAiAgentCheck();
+
+      // Then check every 3 hours
+      intervalTimer = setInterval(
+        () => {
+          runAiAgentCheck();
+        },
+        3 * 60 * 60 * 1000,
+      );
+    },
+    3 * 60 * 1000,
+  );
 
   context.subscriptions.push(
     new Disposable(() => {

Revert fix via Nx Cloud  

View interactive diff ↗

🎓 Learn more about Self-Healing CI on nx.dev

@Cammisuli Cammisuli merged commit 28e05f3 into master Nov 27, 2025
7 checks passed
@Cammisuli Cammisuli deleted the change-code-notificiations branch November 27, 2025 14:33
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

3 participants