feat: add internal to included files

This commit is contained in:
Pete Davison
2022-07-22 02:16:14 +00:00
parent 6f8f1f1409
commit 3507fa40f1
6 changed files with 72 additions and 3 deletions

16
testdata/includes_internal/Taskfile.yml vendored Normal file
View File

@@ -0,0 +1,16 @@
version: '3'
includes:
included:
taskfile: Taskfile2.yml
internal: true
tasks:
task-1:
cmds:
- task: included:default
task-2:
deps:
- included:default

View File

@@ -0,0 +1,7 @@
version: '3'
tasks:
task-3:
cmds:
- echo "Hello, World!"