Dan Ballweg
60fa6e6c0a
update
2022-02-24 13:18:35 -06:00
Dan Ballweg
2f18f7927d
test include variables
2022-02-24 13:17:20 -06:00
Dan Ballweg
292cf75836
add vars to included taskfiles
2022-02-23 16:53:46 -06:00
tylermmorton
fc95061f4c
Add missing newlines
2022-02-21 15:33:54 -05:00
tylermmorton
1f1275255c
Fix bug in includes where default taskfiles were not being checked.
2022-02-21 15:31:55 -05:00
Andrey Nering
d8555e5a5d
v3.11.0
2022-02-19 19:40:29 -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
Andrey Nering
e94d1b6b9f
Merge branch 'task-498-taskfile-dist' of https://github.com/tylermmorton/task into tylermmorton-task-498-taskfile-dist
2022-02-19 18:01:00 -03:00
Andrey Nering
ca7b32105d
Merge pull request #674 from go-task/dependabot/go_modules/mvdan.cc/sh/v3-3.4.3
...
Bump mvdan.cc/sh/v3 from 3.4.2 to 3.4.3
2022-02-19 17:55:30 -03:00
dependabot[bot]
264db2737b
Bump mvdan.cc/sh/v3 from 3.4.2 to 3.4.3
...
Bumps [mvdan.cc/sh/v3](https://github.com/mvdan/sh ) from 3.4.2 to 3.4.3.
- [Release notes](https://github.com/mvdan/sh/releases )
- [Changelog](https://github.com/mvdan/sh/blob/master/CHANGELOG.md )
- [Commits](https://github.com/mvdan/sh/compare/v3.4.2...v3.4.3 )
---
updated-dependencies:
- dependency-name: mvdan.cc/sh/v3
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com>
2022-02-19 20:51:22 +00:00
Andrey Nering
5f2c9a6e45
Merge pull request #671 from JessThrysoee/bashcompletion
...
bash-completion refactoring
2022-02-13 19:51:40 -03:00
Jess Thrysoee
19be1f1bf0
bash-completion refactoring
...
1. 'compgen -c' lists _all_ command names on the system, which is not
appropriate for this script, furthermore echo does not read from stdin
so the output is lost.
2. use _get_comp_words_by_ref and __ltrim_colon_completions to handle task
names with colons.
"...modifying COMP_WORDBREAKS in your completion script is not safe
(as it is a global variable and it has the side effect of affecting
the behavior of other completion scripts"
Ref.: https://stackoverflow.com/a/12495727/7044304
3. Add options completion
4. Use task --list-all
2022-02-13 23:44:04 +01:00
tylermmorton
7cdf0000d9
Fix error message assertion in task_test
2022-02-03 22:23:01 -05:00
tylermmorton
13606e5e00
Remove note about multi level includes from usage documentation
2022-02-03 22:20:49 -05:00
tylermmorton
35af240faa
Add newlines to multi-level test Taskfiles
2022-02-03 22:19:07 -05:00
tylermmorton
0ac56f8973
Add newlines to test Taskfiles
2022-02-03 22:13:43 -05:00
tylermmorton
6e5f8b1fb0
Append task prefix to log messages
2022-02-03 22:12:58 -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
248952bc8f
Add dist fallbacks to defaultTaskfiles
2022-01-29 11:53:36 -05:00
Andrey Nering
2373743eac
Merge pull request #652 from jcwillox/master
...
Add completions to nfpms packages
2022-01-17 10:18:22 -03:00
Andrey Nering
f119596be6
Docs: Small change to title
2022-01-17 09:38:32 -03:00
Andrey Nering
b7cb41b388
Merge pull request #657 from lechuckroh/intellij-plugin
...
Update 'community.md' to add IntelliJ plugin link
2022-01-17 09:37:06 -03:00
Lechuck Roh
a65ee26446
Update 'community.md' to add IntelliJ plugin link
2022-01-16 22:24:12 +09:00
tylermmorton
d3e2fbf1e2
Merge branch 'master' of https://github.com/tylermmorton/task
2022-01-15 23:37:40 -05:00
tylermmorton
66748ab5e5
Update docs to account for new feature
2022-01-15 23:37:39 -05:00
tylermmorton
c73a2c8f84
Move circular include logic to a separate function
2022-01-15 23:34:59 -05:00
Tyler Morton
4bbcd99b8b
Merge branch 'go-task:master' into master
2022-01-14 22:39:27 -05:00
tylermmorton
02e7ff27c7
Add support for multi-level includes and cyclic include detection
2022-01-14 22:38:37 -05:00
Josh Willox
7ed3cea40b
Add completions to nfpms packages
2022-01-14 20:48:28 +11: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
086d13ca2f
Docs: Remove line reference from file link
2022-01-13 10:39:38 -03:00
Andrey Nering
2780e96179
Merge pull request #648 from sagikazarmark/docs-nix-install
...
docs: add nix as an installation method
2022-01-13 10:38:49 -03:00
Mark Sagi-Kazar
191678f9d6
docs: add nix as an installation method
2022-01-13 00:15:04 +01:00
Andrey Nering
79f595d8d1
v3.10.0
2022-01-04 18:19:48 -03:00
Andrey Nering
db2865fb17
Add CHANGELOG entry for #579
2022-01-04 18:10:24 -03:00
Andrey Nering
f945fa60d9
Merge branch 'bugfix/issue-481-dynamic-vars-broken' of https://github.com/masaushi/task into masaushi-bugfix/issue-481-dynamic-vars-broken
2022-01-04 17:39:14 -03:00
Andrey Nering
454988f657
Fix typo 🤦
2022-01-04 17:19:38 -03:00
Andrey Nering
7e0346d6eb
Add CHANGELOG, documentation and small improvements to #401
2022-01-04 17:16:21 -03:00
Andrey Nering
00a90d1fe6
Merge branch 'f/list-all' of https://github.com/therealkevinard/task into therealkevinard-f/list-all
2022-01-04 17:03:12 -03:00
Andrey Nering
d6c185580a
Add CHANGELOG, documentation and small improvements to #626
2022-01-04 16:56:13 -03:00
Jacob McCollum
fd9132c15d
remove extra file
2022-01-03 13:22:06 -05:00
Kevin Ard
42702e81b3
refactor: wrap PrintTasksHelp with arg-less signatures
...
provide exported methods for accessing PrintTasksHelp variants.
2022-01-03 12:12:18 -05:00
Jacob McCollum
09c9d55695
Changes from PR Review:
...
- Remove ^task syntax from `defer`
- Support task call syntax in defer
2022-01-02 16:38:06 -05:00
Jacob McCollum
69e9effc88
initial pass at deferred commands
2022-01-02 15:55:43 -05:00
Andrey Nering
1c782c599f
Remove deprecated "$" and "^" prefixes
...
`$` was a variable prefix that make it being evaluated as shell. It was
replaced with `sh:`.
`^` is a command prefix that make it run another task. It was replaced
with `task:`.
These were added long ago when we were experimenting with stuff and kept for
some time for backward compatibility reasons, but sometimes causes confusion
and I think the time to remove the code came.
Closes #644
Closes #645
Ref #642
Co-authored-by: Trite <60318513+Trite8Q1@users.noreply.github.com>
2022-01-02 15:26:42 -03:00
Andrey Nering
ed37071fd6
Merge pull request #621 from kerma/feat/support-yaml
...
Add support for yaml extension
2022-01-02 15:08:50 -03:00
Margus Kerma
d73cf106b1
Merge branch 'master' into feat/support-yaml
2022-01-02 15:30:23 +02:00
Margus Kerma
1d7982e80a
fix( #584 ): Add support to yaml extension
...
- init creates Taskfile.yaml
- add changelog entry
- add zsh completion support for Taskfile.yaml
2022-01-02 15:23:10 +02:00