There should be a way to specify parents (and CLIs) that merge instead of append.
Example:
# a.yamla:1# b.yamlb:2# c.yaml$parent:- a- b
Expected output:
a:1b:2
Actual output:
a:1---b:2
There should be a way to specify parents (and CLIs) that merge instead of append.
Example:
```yaml
# a.yaml
a: 1
# b.yaml
b: 2
# c.yaml
$parent:
- a
- b
```
Expected output:
```yaml
a: 1
b: 2
```
Actual output:
```yaml
a: 1
---
b: 2
```
Blocking a user prevents them from interacting with repositories, such as opening or commenting on pull requests or issues. Learn more about blocking a user.
There should be a way to specify parents (and CLIs) that merge instead of append.
Example:
Expected output:
Actual output: