Skip to content

Commit

Permalink
add quickstart issue template; fix typos in other templates (#37415)
Browse files Browse the repository at this point in the history
  • Loading branch information
colesnodgrass committed Apr 18, 2024
1 parent fbb7672 commit 0d70cb8
Show file tree
Hide file tree
Showing 3 changed files with 90 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/ISSUE_TEMPLATE/2-issue-docker.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ body:
- type: textarea
id: description
attributes:
label: Revelant information
label: Relevant information
description: Please give any additional information you have and steps to reproduce the problem.
- type: textarea
id: logs
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ body:
- type: textarea
id: description
attributes:
label: Revelant information
label: Relevant information
description: Please give any additional information you have and steps to reproduce the problem.
- type: textarea
id: logs
Expand Down
88 changes: 88 additions & 0 deletions .github/ISSUE_TEMPLATE/4-issue-abctl.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,88 @@
name: 🐛 [abctl] Report an issue with the abctl tool
description: Use this template when you experience an issue with the abctl tool
labels: [type/bug, area/abctl, needs-triage]
body:
- type: markdown
attributes:
value: >
<p align="center">
<a target="_blank" href="https://airbyte.com">
<image>
<source srcset="https://raw.githubusercontent.com/airbytehq/airbyte/master/.github/octavia-issue-template.svg">
<img alt="octavia-welcome" src="https://raw.githubusercontent.com/airbytehq/airbyte/master/.github/octavia-issue-template.svg" width="auto" height="120">
</image>
</a>
</p>
- type: markdown
attributes:
value: |
Thanks for taking the time to fill out this bug report...
Make sure to update this issue with a concise title and provide all information you have to
help us debug the problem together. Issues not following the template will be closed.
- type: textarea
id: problem
attributes:
label: What happened?
description: Please give any additional information you have and steps to reproduce the problem.
validations:
required: true
- type: textarea
id: expected
attributes:
label: What did you expect to happen?
validations:
required: true
- type: textarea
id: abctlVersion
attributes:
label: Abctl Version
value: |
<details>
```console
$ abctl version
# paste output here
```
</details>
validations:
required: true
- type: textarea
id: dockerVersion
attributes:
label: Docker Version
value: |
<details>
```console
$ docker version
# paste output here
```
</details>
validations:
required: true
- type: textarea
id: osVersion
attributes:
label: OS Version
value: |
<details>
```console
# On Linux:
$ cat /etc/os-release
# paste output here
# On Mac:
$ uname -a
# paste output here
# On Windows:
C:\> wmic os get Caption, Version, BuildNumber, OSArchitecture
# paste output here
```
</details>
validations:
required: true

0 comments on commit 0d70cb8

Please sign in to comment.