Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docs(core): fix links to nx agents #22314

Merged
merged 1 commit into from
Mar 14, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/nx-cloud/reference/release-notes.md
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ To enable the light runner feature, make sure you:

##### Nx Agents

This release is also the first one to support ["Nx Agents"](https://nx.dev/ci/features/nx-agents#managed-agents-seamless-configuration).
This release is also the first one to support ["Nx Agents"](https://nx.dev/ci/features/distribute-task-execution#managed-agents-seamless-configuration).

While currently experimental and disabled by default for on-prem users, we are looking for more on-prem workspaces to try it out with
so please reach out to your DPE contact or to [cloud-suppport@nrwl.io](cloud-support@nrwl.io) if you are interested in helping us shape this according to your needs!
Expand Down
4 changes: 2 additions & 2 deletions nx-dev/nx-dev/pages/tips.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ const tips: NewYearTip[] = [
large monorepo - it also makes your CI fast. With features like remote
caching, distributed task execution,{' '}
<Link
href="/ci/features/nx-agents"
href="/ci/features/distribute-task-execution"
className="underline text-slate-900 dark:text-slate-100"
>
Nx Agents
Expand Down Expand Up @@ -311,7 +311,7 @@ const tips: NewYearTip[] = [
<p className="my-4">
Read more about the upcoming{' '}
<Link
href="/ci/features/nx-agents"
href="/ci/features/distribute-task-execution"
className="underline text-slate-900 dark:text-slate-100"
>
Nx Agents
Expand Down
2 changes: 1 addition & 1 deletion nx-dev/ui-home/src/lib/hero.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ export function Hero(): JSX.Element {
<span className="text-blue-500 dark:text-sky-500">Nx Agents</span>,
the next leap in CI.{' '}
<Link
href="/ci/features/nx-agents"
href="/ci/features/distribute-task-execution"
title="Discover Nx Agents"
className="font-semibold text-blue-500 dark:text-sky-500"
>
Expand Down
5 changes: 4 additions & 1 deletion nx-dev/ui-home/src/lib/nx-with-ci.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -166,7 +166,10 @@ export function NxWithCi(): JSX.Element {
<div className="absolute -inset-1 bg-gradient-to-r from-emerald-500 to-green-500 rounded-lg blur-sm opacity-25 group-hover:opacity-90 transition duration-1000 group-hover:duration-200"></div>
<div className="relative flex gap-4 items-center rounded-lg border border-slate-200 bg-white p-4 text-lg shadow-sm transition focus-within:ring-2 focus-within:ring-blue-500 focus-within:ring-offset-2 dark:border-slate-800/40 dark:bg-slate-800">
<NxAgentsIcon className="h-8 w-8" aria-hidden="true" />
<a href="/ci/features/nx-agents" title="Discover Nx Agents">
<a
href="/ci/features/distribute-task-execution"
title="Discover Nx Agents"
>
<span className="absolute inset-0"></span>Nx Agents
</a>
</div>
Expand Down