From 98fdae4a9ff24b8c744665b24119b8443097a2d2 Mon Sep 17 00:00:00 2001 From: Julien Cristau Date: Fri, 30 Jan 2026 14:37:33 +0100 Subject: [PATCH] fix: wrong location for `extra` in .taskcluster.yml template --- .../taskcluster.github.yml | 32 +++++++++---------- 1 file changed, 16 insertions(+), 16 deletions(-) diff --git a/template/{{cookiecutter.project_name}}/taskcluster.github.yml b/template/{{cookiecutter.project_name}}/taskcluster.github.yml index fa42ddf11..c88ed7a4b 100644 --- a/template/{{cookiecutter.project_name}}/taskcluster.github.yml +++ b/template/{{cookiecutter.project_name}}/taskcluster.github.yml @@ -277,19 +277,19 @@ tasks: # debugging, but they are not useful long-term. expires: {$fromNow: '7 day'} - extra: - $merge: - - $if: 'tasks_for in ["action", "pr-action"]' - then: - parent: '${action.taskGroupId}' - action: - name: '${action.name}' - context: - taskGroupId: '${action.taskGroupId}' - taskId: {$eval: 'taskId'} - input: {$eval: 'input'} - clientId: {$eval: 'clientId'} - - $if: 'tasks_for == "cron"' - then: - cron: {$json: {$eval: 'cron'}} - - tasks_for: '${tasks_for}' + extra: + $merge: + - $if: 'tasks_for in ["action", "pr-action"]' + then: + parent: '${action.taskGroupId}' + action: + name: '${action.name}' + context: + taskGroupId: '${action.taskGroupId}' + taskId: {$eval: 'taskId'} + input: {$eval: 'input'} + clientId: {$eval: 'clientId'} + - $if: 'tasks_for == "cron"' + then: + cron: {$json: {$eval: 'cron'}} + - tasks_for: '${tasks_for}'