From 58506d3f2d484a1b1699c129381dabbf4d71206f Mon Sep 17 00:00:00 2001 From: Logan Bussell Date: Tue, 23 Jun 2026 09:12:12 -0700 Subject: [PATCH] Fix malformed parameters declaration in set-dry-run.yml The parameters block used YAML map syntax, which defines parameters named 'name' and 'type' instead of a 'publishConfig' parameter. This broke callers passing publishConfig and the parameters.publishConfig.* references. Use the standard typed-list syntax. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> --- eng/docker-tools/templates/steps/set-dry-run.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/eng/docker-tools/templates/steps/set-dry-run.yml b/eng/docker-tools/templates/steps/set-dry-run.yml index 4879f7459..d614ab2a7 100644 --- a/eng/docker-tools/templates/steps/set-dry-run.yml +++ b/eng/docker-tools/templates/steps/set-dry-run.yml @@ -1,5 +1,5 @@ parameters: - name: publishConfig +- name: publishConfig type: object steps: