Joshua Tzucker
|
2155fdd756
|
Docs: typo fixes
|
2022-03-31 22:14:38 -07:00 |
|
Andrey Nering
|
41cd7acc87
|
Merge pull request #656 from tylermmorton/master
Add support for multi-level includes
|
2022-03-31 21:12:15 -03:00 |
|
Andrey Nering
|
de09843467
|
Improvements + CHANGELOG for #677
|
2022-03-19 18:41:03 -03:00 |
|
Andrey Nering
|
b323531dd5
|
Improvements and CHANGELOG for #651
|
2022-02-19 19:31:27 -03:00 |
|
Andrey Nering
|
cfb665310e
|
Merge branch 'group-begin-message' of https://github.com/janslow/task into janslow-group-begin-message
|
2022-02-19 18:42:34 -03:00 |
|
Andrey Nering
|
51c6ebcd4d
|
Add tests, documentation and changelog for #666
|
2022-02-19 18:24:43 -03:00 |
|
tylermmorton
|
13606e5e00
|
Remove note about multi level includes from usage documentation
|
2022-02-03 22:20:49 -05:00 |
|
tylermmorton
|
15e831c0b0
|
Revert "Update docs to account for new feature"
This reverts commit 66748ab5e5 .
|
2022-02-03 22:09:57 -05:00 |
|
tylermmorton
|
66748ab5e5
|
Update docs to account for new feature
|
2022-01-15 23:37:39 -05:00 |
|
Jay Anslow
|
74f5cf8f29
|
Add support for begin/end messages with grouped output
Fixes #647
This allows CI systems that support grouping (such as with [GitHub Actions's `::group::` command](https://docs.github.com/en/actions/learn-github-actions/workflow-commands-for-github-actions#grouping-log-lines) and [Azure Devops](https://docs.microsoft.com/en-us/azure/devops/pipelines/scripts/logging-commands?view=azure-devops&tabs=bash#formatting-commands)) to collapse all of the logs for a single task, to improve readability of logs
## Example
The following Taskfile
```
# Taskfile.yml
version: 3
output:
group:
begin: "::group::{{ .TASK }}"
end: "::endgroup::"
tasks:
default:
cmds:
- "echo 'Hello, World!'"
```
Results in the following output
```bash
$ task
task: [default] echo 'Hello, World!'
::group::default
Hello, World!
::endgroup::
```
See [this GitHub Actions job](https://github.com/janslow/task/runs/4811059609?check_suite_focus=true) for a full example
<img width="771" alt="image" src="https://user-images.githubusercontent.com/1253367/149429832-6cb0c1b5-0758-442e-9375-c4daa65771bc.png">
<img width="394" alt="image" src="https://user-images.githubusercontent.com/1253367/149429851-1d5d2ab5-9095-4795-9b57-f91750720d40.png">
|
2022-01-14 00:22:14 +00:00 |
|
Andrey Nering
|
7e0346d6eb
|
Add CHANGELOG, documentation and small improvements to #401
|
2022-01-04 17:16:21 -03:00 |
|
Andrey Nering
|
d6c185580a
|
Add CHANGELOG, documentation and small improvements to #626
|
2022-01-04 16:56:13 -03:00 |
|
Omri Steiner
|
e8aa3a17a6
|
Fix typo in usage.md
|
2021-11-09 16:18:42 +02:00 |
|
Andrey Nering
|
3cfe21af58
|
Add shellQuote template function
|
2021-10-02 18:29:07 -03:00 |
|
Andrey Nering
|
78792bd11c
|
Add CHANGELOG + Small improvement for #563
|
2021-09-26 21:55:31 -03:00 |
|
Andrey Nering
|
e45ed85b55
|
Add CHANGELOG + Small nits for #552
|
2021-09-25 09:40:03 -03:00 |
|
Andrey Nering
|
52474f9103
|
Merge pull request #552 from justafish/justafish/519/optional-includes
Allow includes to be optional
|
2021-09-25 09:36:44 -03:00 |
|
Andrey Nering
|
fa0e72bd69
|
Documentation typo
Fixes #555
|
2021-09-04 21:30:28 -03:00 |
|
Sally Young
|
8f80fc4e2c
|
Issue #519: Allow includes to be optional
|
2021-08-11 17:28:44 +01:00 |
|
Andrey Nering
|
8aa983257d
|
Small adjustments and CHANGELOG for #359
|
2021-07-31 20:29:59 -03:00 |
|
Ross Hammermeister
|
3e16ca37bc
|
Updating version checking
|
2021-07-31 19:36:40 -03:00 |
|
Ross Hammermeister
|
2da38a5bdc
|
Cleaning up the run code
|
2021-07-31 19:36:40 -03:00 |
|
Ross Hammermeister
|
97c85e39c3
|
Only run task once for #53
|
2021-07-31 19:36:40 -03:00 |
|
Nicolas Fouché
|
08265ed1d7
|
Allow vars in dotenv paths, including environment variables
Closes #453
Closes #434
Ref #433
Co-authored-by: Andrey Nering <andrey@nering.com.br>
|
2021-06-05 16:00:19 -03:00 |
|
Andrey Nering
|
e6c4706b73
|
Add support for delegating CLI arguments with "--" and a special CLI_ARGS variable
Closes #327
|
2021-03-20 11:58:45 -03:00 |
|
Andrey Nering
|
b2f08c9c20
|
Merge pull request #415 from felladrin/patch-1
Fix duplicate task name on "Short task syntax" example
|
2021-01-02 11:02:49 -03:00 |
|
Victor Nogueira
|
f5eb80759b
|
Fix duplicate task name on "Short task syntax" example
To make it a valid YAML file and avoid the error:
```
yaml: unmarshal errors:
line 6: mapping key "build" already defined at line 4
```
|
2020-12-07 13:00:25 +02:00 |
|
Bryce Schober
|
bf88bd5da5
|
Use {{default}} for an overriding usage
Fixes documentation confusion raised in #376.
|
2020-11-18 17:09:44 -08:00 |
|
Andrey Nering
|
1bdf7e3192
|
v3: Post-release improvements to the documentation
Closes #367
|
2020-08-24 21:43:08 -03:00 |
|
Jonas Galvão Xavier
|
87f11491d9
|
typo and grammar fixes
|
2020-08-22 13:33:04 -07:00 |
|
Andrey Nering
|
7652d7889b
|
Some documentation improvements after the release of v3
Thanks @marco-m
|
2020-08-17 09:46:55 -03:00 |
|
Andrey Nering
|
30cbf02bff
|
Update documentation to reflect the new default "method"
|
2020-08-16 21:59:42 -03:00 |
|
Andrey Nering
|
6f290f28b6
|
On documentation: version: '2' -> version: '3'
|
2020-08-16 21:34:33 -03:00 |
|
Andrey Nering
|
6ff3c9015b
|
On v3, treat all CLI variables as global variables
Closes #336
Ref #341
Co-authored-by: Egor Kovetskiy <e.kovetskiy@gmail.com>
|
2020-08-16 21:27:11 -03:00 |
|
Andrey Nering
|
3edf124f96
|
Merge pull request #220 from go-task/v3
v3 base branch
|
2020-08-16 15:54:20 -03:00 |
|
Andrey Nering
|
eab14b6c49
|
Some improvements to #356
|
2020-08-15 19:13:30 -03:00 |
|
Chris Garrett
|
8b962fb8e8
|
#324 implement dotenv
|
2020-08-03 16:18:38 -06:00 |
|
Arnold
|
e6b543c15e
|
Fix some typos in the documentation
|
2020-07-07 16:25:27 +09:00 |
|
Andrey Nering
|
8137517d93
|
Merge branch 'master' into v3
|
2020-06-14 17:13:46 -03:00 |
|
Andrey Nering
|
572f6a7fab
|
CHANGELOG, docs and nits for #321 and #337
|
2020-06-14 17:12:20 -03:00 |
|
Andrey Nering
|
bf64259af3
|
taskfile.dev: Add note about parallel deps
Reference: #331
|
2020-05-23 14:13:15 -03:00 |
|
Andrey Nering
|
3f80a3b39e
|
Improve documentation for included Taskfiles
Follow-up of #292
|
2020-02-16 11:21:06 -03:00 |
|
Andrey Nering
|
15338ecb18
|
Merge branch 'master' into v3
|
2019-12-07 22:04:16 -03:00 |
|
Andrey Nering
|
4bdfe64afb
|
Add hability silent all tasks
By add `silent: true` at the root of the Taskfile.
|
2019-12-07 21:44:09 -03:00 |
|
Andrey Nering
|
b7b752b92f
|
Allow shorter syntax for tasks with default configuration
Closes #194
Closes #240
Co-authored-by: Jaedle <dennis.jekubczyk@gmail.com>
|
2019-12-07 21:28:02 -03:00 |
|
Andrey Nering
|
7373639f57
|
Expose .TASK variable with the task name
Closes #252
|
2019-12-07 19:43:10 -03:00 |
|
Andrey Nering
|
62752ba7e1
|
Merge branch 'master' into v3
|
2019-11-24 21:02:33 -03:00 |
|
Andrey Nering
|
fea23ed6d4
|
Add Changelog and Docs for --parallel
|
2019-11-15 23:31:18 -03:00 |
|
Alberto Iannaccone
|
263b094cab
|
fix typo in usage.md
|
2019-11-08 11:01:57 +01:00 |
|
Andrey Nering
|
1a28e5e0d4
|
Few code improvements on #216
|
2019-09-14 17:54:41 -03:00 |
|