yq/.github/ISSUE_TEMPLATE/bug_report.md

49 lines
708 B
Markdown
Raw Normal View History

2020-02-21 10:00:36 +00:00
---
2020-11-25 11:22:16 +00:00
name: Bug report - V3 / V4
2020-02-21 10:00:36 +00:00
about: Create a report to help us improve
title: ''
labels: bug
assignees: ''
---
**Describe the bug**
A clear and concise description of what the bug is.
2020-06-15 11:42:26 +00:00
version of yq:
operating system:
2020-02-21 10:00:36 +00:00
**Input Yaml**
2020-11-25 11:22:16 +00:00
Concise yaml document(s) (as simple as possible to show the bug, please keep it to 10 lines or less)
2020-02-21 10:00:36 +00:00
data1.yml:
```yaml
this: should really work
```
data2.yml:
```yaml
but: it strangely didn't
```
**Command**
The command you ran:
```
yq merge data1.yml data2.yml
```
**Actual behavior**
```yaml
cat: meow
```
**Expected behavior**
```yaml
this: should really work
but: it strangely didn't
```
**Additional context**
Add any other context about the problem here.