-
-
Notifications
You must be signed in to change notification settings - Fork 668
New issue
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
Imported task cannot call excluded task #2135
Comments
@mkantzer Unfortunately, this is another consequence of the way we currently merge taskfiles when resolving includes. This is something that will eventually be solved when we move away from merging. However, there is a lot of work to do to get there. In the meantime, if you have an internal task that you don't want to show up in I will leave this open for now so that we remember to add it as a test case when we remove AST merging. |
Hello, Like @pd93 said, mark the task as like this :
version: 3
includes:
import:
taskfile: import.yaml
tasks:
test:
cmds:
- task: import:included-task
version: 3
tasks:
imported-task:
cmds:
- echo "howdy"
- task: excluded-task
excluded-task:
internal: true
cmd: echo "bazz" To me To finish, I'd quote our doc : Maybe we need to clarify that it won't be callable not only from the CLI but also from within a Taskfile. We could change this behavior, but what would be the difference with Feel free to jump in @pd93 |
@vmaerten The docs make it clear that if you have taskfile A which includes taskfile B (containing I can understand why this distinction is confusing as However, this is not currently the case. This is quite a complex issue to describe, so sorry if I'm not clear. I rewrote this twice 😆 |
@pd93 you've got it exactly: something like having private functions. That being said, using Appreciate the help. Feel free to keep this open as a reference for after AST merging removal if you still need it. |
Thanks a lot ! It's cristal clear 🙂 |
Description
For the given files:
Taskfile.yaml
:import.yaml
Running
task test
returns:but when the
excludes
block is commented out, it returns:I'd expect
task test
to return the second result in both cases. I'm using theexclude
to preventexcluded-task
from showing up in things like autocomplete andtask --list-all
, but the internal workings of an imported system shouldn't change based on that.Version
3.41.0
Operating system
macOS
Experiments Enabled
No response
Example Taskfile
The text was updated successfully, but these errors were encountered: