Skip to content

Latest commit

 

History

History
41 lines (33 loc) · 591 Bytes

include.md

File metadata and controls

41 lines (33 loc) · 591 Bytes
title description published date tags editor dateCreated
include
true
2022-09-18 05:06:51 UTC
markdown
2022-09-18 05:06:49 UTC

Include

Allows including configuration from another file into a task.

Example

config.yml

tasks:
  stuff:
    rss: ...
    include: series.yml
    download: ~/downloads/

series.yml

series:
  - foo
  - bar

This allows parts of configuration to be shared between multiple configuration files (databases).

You can also include multiple files using this format:

include:
  - include1.yml
  - include2.yml