From fd337bb5e3726cbfc8bb2e16563af3fad10bad79 Mon Sep 17 00:00:00 2001 From: Louie Weng <56288712+lourw@users.noreply.github.com> Date: Wed, 2 Apr 2025 12:27:35 -0400 Subject: [PATCH] chore(repo): fix assignment rules to prevent early termination (#30382) ## Current Behavior We set assignment rules to default all tasks to medium, which meant that after the `linux-large` agent was complete, it would terminate since no tasks would be assigned to it. This fixes the rules to ensure that tasks can also be assigned to the linux-large agent. ## Expected Behavior ## Related Issue(s) Fixes # --- .nx/workflows/dynamic-changesets.yaml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.nx/workflows/dynamic-changesets.yaml b/.nx/workflows/dynamic-changesets.yaml index a8b9cbdcee..099a5b3e8f 100644 --- a/.nx/workflows/dynamic-changesets.yaml +++ b/.nx/workflows/dynamic-changesets.yaml @@ -20,3 +20,5 @@ assignment-rules: run-on: - agent: linux-medium parallelism: 3 + - agent: linux-extra-large + parallelism: 3