You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/advanced_config/glob_config_files.md
+5-1Lines changed: 5 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -14,4 +14,8 @@ dbt-jobs-as-code plan "jobs/**/*.yml" # (1)!
14
14
15
15
1. Depending on your shell you might have to quote the pattern or not. For example, for `zsh` quoting is required as otherwise the shell will try to expand the pattern before passing it to the command.
16
16
17
-
If the provided config is a directory, we automatically search for all the `*.yml` files in this directory. This is particularly relevant for users with a shell not supporting the `*` character.
17
+
If the provided config is a directory, we automatically search for all the `*.yml` and `*.yaml` files in this directory. This is particularly relevant for users with a shell not supporting the `*` character.
18
+
19
+
```bash
20
+
dbt-jobs-as-code plan ./jobs # Equivalent to ./jobs/*.yml + ./jobs/*.yaml
0 commit comments