Skip to content

Conversation

juristr
Copy link
Member

@juristr juristr commented Oct 10, 2025

Current Behavior

Expected Behavior

Related Issue(s)

Fixes #

Copy link

vercel bot commented Oct 10, 2025

The latest updates on your projects. Learn more about Vercel for GitHub.

Project Deployment Preview Updated (UTC)
nx-dev Ready Ready Preview Oct 14, 2025 9:18am

Copy link

netlify bot commented Oct 10, 2025

Deploy Preview for nx-docs ready!

Name Link
🔨 Latest commit 8d38f22
🔍 Latest deploy log https://app.netlify.com/projects/nx-docs/deploys/68ee0dda41591800087ce116
😎 Deploy Preview https://deploy-preview-33042--nx-docs.netlify.app
📱 Preview on mobile
Toggle QR Code...

QR Code

Use your smartphone camera to open QR code link.

To edit notification comments on pull requests, go to your Netlify project configuration.

Copy link
Contributor

nx-cloud bot commented Oct 10, 2025

View your CI Pipeline Execution ↗ for commit 8d38f22

Command Status Duration Result
nx affected --targets=lint,test,test-kt,build,e... ✅ Succeeded 4m 41s View ↗
nx run-many -t check-imports check-commit check... ✅ Succeeded 2m 7s View ↗
nx-cloud record -- nx-cloud conformance:check ✅ Succeeded 2s View ↗
nx-cloud record -- nx format:check ✅ Succeeded 6s View ↗
nx-cloud record -- nx sync:check ✅ Succeeded 6s View ↗
nx documentation ✅ Succeeded 2m 2s View ↗

☁️ Nx Cloud last updated this comment at 2025-10-14 08:57:41 UTC

nx-cloud[bot]

This comment was marked as outdated.

@juristr juristr force-pushed the blog/whats-new-self-healing branch from f08df2a to 0a6d11c Compare October 10, 2025 10:32
nx-cloud[bot]

This comment was marked as outdated.

@juristr juristr force-pushed the blog/whats-new-self-healing branch 2 times, most recently from f2e9675 to 262e361 Compare October 10, 2025 12:28
nx-cloud[bot]

This comment was marked as outdated.

jaysoo pushed a commit that referenced this pull request Oct 10, 2025
#33045)

blog and marketing pages will still link to astro docs, so depend on the
astro sitemap to check all links available to be used.
NOTE: the specific header links (url fragments) are skipped for pages
that come from astro docs (prefixed with /docs) due to not having a
simple way to create these lists without parsing all the build html
files out and that's not the part we really care about

confirmed working #33042 and
#33036 which are blocked until this
change merges

Fixes DOC-264
@juristr juristr force-pushed the blog/whats-new-self-healing branch from fa184a4 to 971f362 Compare October 13, 2025 08:07
@juristr juristr force-pushed the blog/whats-new-self-healing branch from 971f362 to 949df08 Compare October 13, 2025 12:41
nx-cloud[bot]

This comment was marked as outdated.

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.

Nx Cloud is proposing a fix for your failed CI:

We've fixed the broken internal documentation links in the new blog post. The links were using an incorrect URL pattern with a "/docs/" prefix that doesn't match the site's routing structure. All four links have been corrected to use the proper format.

Suggested Fix changes
diff --git a/docs/blog/2025-10-13-whats-new-in-nx-self-healing-ci.md b/docs/blog/2025-10-13-whats-new-in-nx-self-healing-ci.md
index 16d5afa7f8..a0dce426e2 100644
--- a/docs/blog/2025-10-13-whats-new-in-nx-self-healing-ci.md
+++ b/docs/blog/2025-10-13-whats-new-in-nx-self-healing-ci.md
@@ -7,13 +7,13 @@ cover_image: /blog/images/articles/self-healing-ci-update-blog-hero.avif
 description: 'Enhanced GitHub integration, interactive diffs, fine-grained task control, auto-apply fixes, and local fix application—discover the latest improvements to Nx Self-Healing CI.'
 ---
 
-AI agents and AI-assisted coding are here to stay. Our mission: integrate it with Nx such that it's actually useful for day-to-day developer work. We've been heads-down fine-tuning [Self-Healing CI](/docs/features/ci-features/self-healing-ci), improving its correctness and making sure it shows up when it should without being annoying.
+AI agents and AI-assisted coding are here to stay. Our mission: integrate it with Nx such that it's actually useful for day-to-day developer work. We've been heads-down fine-tuning [Self-Healing CI](/features/self-healing-ci), improving its correctness and making sure it shows up when it should without being annoying.
 
 So let me take this occasion to highlight a few things we shipped in the last weeks.
 
 ## Enhanced GitHub Integration
 
-We built a dedicated view into [Nx Console](/docs/getting-started/editor-setup) to surface Self-Healing fixes directly in your editor. But sometimes you're jumping straight to GitHub (or whatever VCS you're using) to quickly check your open PRs and see if there's anything new.
+We built a dedicated view into [Nx Console](/getting-started/editor-setup) to surface Self-Healing fixes directly in your editor. But sometimes you're jumping straight to GitHub (or whatever VCS you're using) to quickly check your open PRs and see if there's anything new.
 
 We improved the way we integrate into your GitHub PRs by posting a dedicated comment whenever Self-Healing CI finds a fix for a broken CI run:
 
@@ -77,7 +77,7 @@ npx nx start-ci-run --auto-apply-fixes="*format*,*lint*"
 1. AI generates a fix for the failed task
 2. Nx Cloud runs a **verification phase** in the background to ensure the fix passes CI
 3. If verification succeeds, the fix is **automatically pushed to your PR**—no manual approval needed
-4. If you have [Nx Console](/docs/getting-started/editor-setup), you'll get a notification that a commit has been added
+4. If you have [Nx Console](/getting-started/editor-setup), you'll get a notification that a commit has been added
 
 You can continue working on other things while the AI handles the fix in the background. Just pull the changes when you're ready.
 
@@ -127,7 +127,7 @@ jobs:
         if: always()
 ​`​`​`
 
-Check out [our docs for the full details on how to configure Self-Healing CI](/docs/features/ci-features/self-healing-ci#enable-self-healing-ci).
+Check out [our docs for the full details on how to configure Self-Healing CI](/features/self-healing-ci#enable-self-healing-ci).
 
 Self-Healing CI is available for free on **Hobby, Team, and Enterprise** plans.
 

Apply fix via Nx Cloud  Reject fix via Nx Cloud

Or Apply changes locally with:

npx nx-cloud apply-locally Am4z-3APC

Apply fix locally with your editor ↗  View interactive diff ↗


🎓 To learn more about Self Healing CI, please visit nx.dev

@juristr juristr force-pushed the blog/whats-new-self-healing branch from fd6a809 to c75c485 Compare October 13, 2025 15:08
philipjfulcher pushed a commit that referenced this pull request Oct 13, 2025
#33045)

blog and marketing pages will still link to astro docs, so depend on the
astro sitemap to check all links available to be used.
NOTE: the specific header links (url fragments) are skipped for pages
that come from astro docs (prefixed with /docs) due to not having a
simple way to create these lists without parsing all the build html
files out and that's not the part we really care about

confirmed working #33042 and
#33036 which are blocked until this
change merges

Fixes DOC-264
@juristr juristr force-pushed the blog/whats-new-self-healing branch from c75c485 to efd6262 Compare October 14, 2025 08:43
@juristr juristr self-assigned this Oct 14, 2025
@juristr juristr marked this pull request as ready for review October 14, 2025 08:44
@juristr juristr requested a review from a team as a code owner October 14, 2025 08:44
@juristr juristr requested a review from FrozenPandaz October 14, 2025 08:44
@juristr juristr force-pushed the blog/whats-new-self-healing branch from efd6262 to 8d38f22 Compare October 14, 2025 08:46
@juristr juristr merged commit a150d9f into master Oct 14, 2025
12 of 13 checks passed
@juristr juristr deleted the blog/whats-new-self-healing branch October 14, 2025 09:14
FrozenPandaz pushed a commit that referenced this pull request Oct 15, 2025
#33045)

blog and marketing pages will still link to astro docs, so depend on the
astro sitemap to check all links available to be used.
NOTE: the specific header links (url fragments) are skipped for pages
that come from astro docs (prefixed with /docs) due to not having a
simple way to create these lists without parsing all the build html
files out and that's not the part we really care about

confirmed working #33042 and
#33036 which are blocked until this
change merges

Fixes DOC-264

(cherry picked from commit bfaa91b)
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.

2 participants