We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Lets say you have an executor and you want to localise the scope of a variable as you may want to reuse it somewhere else without the prefix .input.
.input
The assumption is that the following step should work but it does not
- name: "localise variable user" vars: user.uuid: from: '{{.input.user.uuid}}'
On the other hand its working properly
- name: "localise variable user" script: | echo "{{.input.user.uuid}}" vars: user.uuid: from: result.systemout
The text was updated successfully, but these errors were encountered:
same as #777
Sorry, something went wrong.
No branches or pull requests
Lets say you have an executor and you want to localise the scope of a variable as you may want to reuse it somewhere else without the prefix
.input
.The assumption is that the following step should work but it does not
On the other hand its working properly
The text was updated successfully, but these errors were encountered: