mirror of
https://github.com/go-task/task.git
synced 2026-06-11 09:51:50 +00:00
feat(task): tasks can be internal (not accessible from cli)
This commit is contained in:
16
testdata/internal_task/Taskfile.yml
vendored
Normal file
16
testdata/internal_task/Taskfile.yml
vendored
Normal file
@@ -0,0 +1,16 @@
|
||||
version: '3'
|
||||
|
||||
tasks:
|
||||
|
||||
task-1:
|
||||
cmds:
|
||||
- task: task-3
|
||||
|
||||
task-2:
|
||||
deps:
|
||||
- task-3
|
||||
|
||||
task-3:
|
||||
internal: true
|
||||
cmds:
|
||||
- echo "Hello, World!"
|
||||
Reference in New Issue
Block a user