Skip to content

Commit 0d70cb8

Browse files
add quickstart issue template; fix typos in other templates (#37415)
1 parent fbb7672 commit 0d70cb8

File tree

3 files changed

+90
-2
lines changed

3 files changed

+90
-2
lines changed

.github/ISSUE_TEMPLATE/2-issue-docker.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ body:
3939
- type: textarea
4040
id: description
4141
attributes:
42-
label: Revelant information
42+
label: Relevant information
4343
description: Please give any additional information you have and steps to reproduce the problem.
4444
- type: textarea
4545
id: logs

.github/ISSUE_TEMPLATE/2-issue-helm.yaml .github/ISSUE_TEMPLATE/3-issue-helm.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ body:
3939
- type: textarea
4040
id: description
4141
attributes:
42-
label: Revelant information
42+
label: Relevant information
4343
description: Please give any additional information you have and steps to reproduce the problem.
4444
- type: textarea
4545
id: logs
+88
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,88 @@
1+
name: 🐛 [abctl] Report an issue with the abctl tool
2+
description: Use this template when you experience an issue with the abctl tool
3+
labels: [type/bug, area/abctl, needs-triage]
4+
body:
5+
- type: markdown
6+
attributes:
7+
value: >
8+
<p align="center">
9+
<a target="_blank" href="https://airbyte.com">
10+
<image>
11+
<source srcset="https://raw.githubusercontent.com/airbytehq/airbyte/master/.github/octavia-issue-template.svg">
12+
<img alt="octavia-welcome" src="https://raw.githubusercontent.com/airbytehq/airbyte/master/.github/octavia-issue-template.svg" width="auto" height="120">
13+
</image>
14+
</a>
15+
</p>
16+
- type: markdown
17+
attributes:
18+
value: |
19+
Thanks for taking the time to fill out this bug report...
20+
Make sure to update this issue with a concise title and provide all information you have to
21+
help us debug the problem together. Issues not following the template will be closed.
22+
- type: textarea
23+
id: problem
24+
attributes:
25+
label: What happened?
26+
description: Please give any additional information you have and steps to reproduce the problem.
27+
validations:
28+
required: true
29+
- type: textarea
30+
id: expected
31+
attributes:
32+
label: What did you expect to happen?
33+
validations:
34+
required: true
35+
- type: textarea
36+
id: abctlVersion
37+
attributes:
38+
label: Abctl Version
39+
value: |
40+
<details>
41+
42+
```console
43+
$ abctl version
44+
# paste output here
45+
```
46+
47+
</details>
48+
validations:
49+
required: true
50+
- type: textarea
51+
id: dockerVersion
52+
attributes:
53+
label: Docker Version
54+
value: |
55+
<details>
56+
57+
```console
58+
$ docker version
59+
# paste output here
60+
```
61+
62+
</details>
63+
validations:
64+
required: true
65+
- type: textarea
66+
id: osVersion
67+
attributes:
68+
label: OS Version
69+
value: |
70+
<details>
71+
72+
```console
73+
# On Linux:
74+
$ cat /etc/os-release
75+
# paste output here
76+
77+
# On Mac:
78+
$ uname -a
79+
# paste output here
80+
81+
# On Windows:
82+
C:\> wmic os get Caption, Version, BuildNumber, OSArchitecture
83+
# paste output here
84+
```
85+
86+
</details>
87+
validations:
88+
required: true

0 commit comments

Comments
 (0)