Erro Automation Rename with variables

Hi, please, can anyone help?
I’ve tried several ways but none of them worked.

Need:
When new Project is moved to the lis PROJECTS, all items in Checklist ACTIONS are added as new Cards in List TASKS - so far it works.

The new Card should be Renamed with the CHECKLIST ITEM NAME+ PROJECT NAME - here is the problem, I copy below the tentatives:

TENTATIVE
“{checklistitemname} - {cardname}”
AUTOMATION RESULT
“Action.01 - Action.01}”
(it repeats the same name for the item name and the new Card names are the same)

TENTATIVE
“{checklistitemname} - { linkedCard.checklists.ACTIONS[0].name}”
AUTOMATION RESULT
Renamed card Trello from “Action.01” to
“Action.01 - { linkedCard.checklists.ACTIONS[0].name}”

TENTATIVE
{checklistitemname} { linkedCard.checklists.ACTIONS[0].name}
AUTOMATION RESULT
Action.01 { linkedCard.checklists.ACTIONS[0].name}

TENTATIVE
{checklistitemname} {linkedCard.checklists.ACTIONS[0].name}
AUTOMATION RESULT
Action.01 {linkedCard.checklists.ACTIONS[0].name}

TENTATIVE
{{checklistitemname} {linkedCard.checklists.ACTIONS[0].name}}
AUTOMATION RESULT
{Action.01 {linkedCard.checklists.ACTIONS[0].name}}

TENTATIVE
{checklistitemname}, {linkedCard.checklists.ACTIONS[0].name}
AUTOMATION RESULT
Action.01, {linkedCard.checklists.ACTIONS[0].name}

TENTATIVE
{checklistitemname}; {linkedCard.checklists.ACTIONS[0].name}
AUTOMATION RESULT
Action.01;{linkedCard.checklists.ACTIONS[0].name}

TENTATIVE
{checklistitemname} , {linkedCard.checklists.ACTIONS[0].name}
AUTOMATION RESULT
Action.01 , {linkedCard.checklists.ACTIONS[0].name}

TENTATIVE
[{checklistitemname}{linkedCard.checklists.ACTIONS[0].name}]
AUTOMATION RESULT
[Action.01 {linkedCard.checklists.ACTIONS[0].name}]