docs: clarify join argument order in templating reference (#2887)

Co-authored-by: Markus Stark <markusstark@MacBook-Air-von-Markus.local>
This commit is contained in:
Markus
2026-06-29 17:08:44 +02:00
committed by GitHub
parent 7fa9d657cd
commit b93897a6c3

View File

@@ -565,6 +565,9 @@ tasks:
- echo "{{.MULTILINE | catLines}}" # Replace newlines with spaces
```
In pipeline form, `join` receives the list from the left-hand side. The
equivalent non-pipeline form is `{{join " " .WORDS}}`.
#### Shell Argument Parsing
```yaml