mirror of
https://github.com/go-task/task.git
synced 2025-04-04 22:24:25 +02:00
parent
c6d9201680
commit
572f6a7fab
@ -1,5 +1,10 @@
|
|||||||
# Changelog
|
# Changelog
|
||||||
|
|
||||||
|
# v3.0.0 - Unreleased
|
||||||
|
|
||||||
|
- Add `label:` to task so you can override the task name in the logs
|
||||||
|
([#321](https://github.com/go-task/task/issues/321]), [#337](https://github.com/go-task/task/pull/337)).
|
||||||
|
|
||||||
# v3.0.0 - Preview 4
|
# v3.0.0 - Preview 4
|
||||||
|
|
||||||
- Refactor how variables work on version 3
|
- Refactor how variables work on version 3
|
||||||
|
@ -687,6 +687,30 @@ If the task does not have a summary or a description, a warning is printed.
|
|||||||
|
|
||||||
Please note: *showing the summary will not execute the command*.
|
Please note: *showing the summary will not execute the command*.
|
||||||
|
|
||||||
|
## Overriding task name
|
||||||
|
|
||||||
|
Sometimes you may want to override the task name print on summary, up-to-date
|
||||||
|
messates to STDOUT, etc. In this case you can just set `label:`, which can also
|
||||||
|
be interpolated with variables:
|
||||||
|
|
||||||
|
```yaml
|
||||||
|
version: '3'
|
||||||
|
|
||||||
|
tasks:
|
||||||
|
default:
|
||||||
|
- task: print
|
||||||
|
vars:
|
||||||
|
MESSAGE: hello
|
||||||
|
- task: print
|
||||||
|
vars:
|
||||||
|
MESSAGE: world
|
||||||
|
|
||||||
|
print:
|
||||||
|
label: 'print-{{.MESSAGE}}'
|
||||||
|
cmds:
|
||||||
|
- echo "{{.MESSAGE}}"
|
||||||
|
```
|
||||||
|
|
||||||
## Silent mode
|
## Silent mode
|
||||||
|
|
||||||
Silent mode disables echoing of commands before Task runs it.
|
Silent mode disables echoing of commands before Task runs it.
|
||||||
|
Loading…
x
Reference in New Issue
Block a user