Skip to content

Commit 8e15d88

Browse files
authored
Update Issue Templates (#35896)
1 parent 3fae982 commit 8e15d88

File tree

5 files changed

+159
-3
lines changed

5 files changed

+159
-3
lines changed

.github/ISSUE_TEMPLATE/config.yml

+9-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,12 @@
11
---
22
blank_issues_enabled: false
33
contact_links:
4-
- name: Ask a question, get community support or request new features/connectors
5-
url: https://github.com/airbytehq/airbyte/discussions/
6-
about: Use Github Discussion to request features/connectors or discuss ideas or issues.
4+
- name: Ask a question or get help troubleshooting issues
5+
url: https://github.com/airbytehq/airbyte/discussions/new?category=questions
6+
about: Use GitHub Discussions to engage with fellow users. Share insights on best practices, address issues, and explore potential workarounds collaboratively.
7+
- name: Request a New Connector
8+
url: https://github.com/airbytehq/airbyte/discussions/new?category=new-connector-request
9+
about: Request a New Source or a New Destination Connector.
10+
- name: Request a New Feature
11+
url: https://github.com/airbytehq/airbyte/discussions/new?category=ideas-and-features
12+
about: A new idea or want to discuss a new feature, here is the place.

.github/ISSUE_TEMPLATE/issue-cli.yaml

+26
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
name: CLI Issue
2+
about: Use this when you're using the Octavia CLI.
3+
title: "Octavia CLI Issue: "
4+
labels: [type/bug, area/octavia-cli, needs-triage]
5+
body:
6+
- type: input
7+
id: cli-version
8+
attributes:
9+
label: Octavia CLI Version
10+
description: Give the Octavia CLI version you're using.
11+
validations:
12+
required: true
13+
- type: textarea
14+
id: description
15+
attributes:
16+
label: Revelant information
17+
description: Please give any aditional information you have your steps to reproduce the problem.
18+
- type: textarea
19+
id: logs
20+
attributes:
21+
label: Relevant log output
22+
description: |
23+
Please copy and paste any relevant log output.
24+
This will be automatically formatted into code, so no need for backticks.
25+
We strongly recommend to upload the log file to further debugging.
26+
render: shell
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,51 @@
1+
name: Connector Issue
2+
about: Use this when you're facing issue with connector
3+
title: "Connector Issue: "
4+
labels: [type/bug, area/connectors, needs-triage]
5+
body:
6+
- type: input
7+
id: connector-name
8+
attributes:
9+
label: Connector Name
10+
description: Give the connector name in form of airbyte/source-pokeapi, airbyte/destination-snowflake
11+
validations:
12+
required: true
13+
- type: input
14+
id: connector-version
15+
attributes:
16+
label: Connector Version
17+
description: Give the connector version you're using.
18+
validations:
19+
required: true
20+
- type: dropdown
21+
id: step
22+
attributes:
23+
label: What step the error happened?
24+
multiple: false
25+
options:
26+
- Configuring a new connector
27+
- During the sync
28+
- Updating the connector
29+
- Other
30+
- type: textarea
31+
id: description
32+
attributes:
33+
label: Revelant information
34+
description: Please give any aditional information you have your steps to reproduce the problem.
35+
- type: textarea
36+
id: logs
37+
attributes:
38+
label: Relevant log output
39+
description: |
40+
Please copy and paste any relevant log output.
41+
This will be automatically formatted into code, so no need for backticks.
42+
We strongly recommend to upload the log file to further debugging.
43+
render: shell
44+
- type: checkboxes
45+
id: submit-pr
46+
attributes:
47+
label: Contribute
48+
description: Are you willing to submit the fix?
49+
options:
50+
- label: Yes
51+
required: true
+36
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
name: Platform Issue
2+
about: Use this when you're facing a platform, deploy or infrastructure issue.
3+
title: "Platform Issue: "
4+
labels: [type/bug, area/platform, needs-triage]
5+
body:
6+
- type: input
7+
id: platform-version
8+
attributes:
9+
label: Platform Version
10+
description: Give the Airbyte Platform version you're using.
11+
validations:
12+
required: true
13+
- type: dropdown
14+
id: step
15+
attributes:
16+
label: What step the error happened?
17+
multiple: false
18+
options:
19+
- On deploy
20+
- During the Sync
21+
- Upgrading the Platform
22+
- Other
23+
- type: textarea
24+
id: description
25+
attributes:
26+
label: Revelant information
27+
description: Please give any aditional information you have your steps to reproduce the problem.
28+
- type: textarea
29+
id: logs
30+
attributes:
31+
label: Relevant log output
32+
description: |
33+
Please copy and paste any relevant log output.
34+
This will be automatically formatted into code, so no need for backticks.
35+
We strongly recommend to upload the log file to further debugging.
36+
render: shell
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
name: New Connector Request
2+
about: Use this to request a new connector
3+
title: ""
4+
labels: [area/connectors, new-connector]
5+
body:
6+
- type: input
7+
id: connector-name
8+
attributes:
9+
label: Connector Name
10+
description: What is the service or database you want to integrate
11+
validations:
12+
required: true
13+
- type: dropdown
14+
id: type
15+
attributes:
16+
label: What type of integration
17+
multiple: false
18+
options:
19+
- Source
20+
- Destination
21+
- type: textarea
22+
id: description
23+
attributes:
24+
label: Revelant Information
25+
description: >-
26+
Why do you need this integration? How does your team intend to use the data? This helps us understand the use case.
27+
How often do you want to run syncs?
28+
If this is an API source connector, which entities/endpoints do you need supported?
29+
If the connector is for a paid service, can we name you as a mutual user when we subscribe for an account? Which company should we name?
30+
- type: checkboxes
31+
id: submit-pr
32+
attributes:
33+
label: Contribute
34+
description: Are you willing to submit the fix?
35+
options:
36+
- label: Yes
37+
required: true

0 commit comments

Comments
 (0)