Skip to content

Commit 0ba1cc4

Browse files
authored
Merge branch 'main' into fix/cascading-testcase-status-cleanup-27418
2 parents 25795f3 + 88c4450 commit 0ba1cc4

97 files changed

Lines changed: 5471 additions & 201 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.github/ISSUE_TEMPLATE/bug_report.md

Lines changed: 0 additions & 29 deletions
This file was deleted.
Lines changed: 87 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,87 @@
1+
name: Bug report
2+
description: Create a report to help us improve
3+
labels: ["bug"]
4+
body:
5+
- type: markdown
6+
attributes:
7+
value: |
8+
> **Bug in a specific connector?** (Snowflake, Databricks, BigQuery, etc.) — use the **[Connector Bug](https://github.com/open-metadata/OpenMetadata/issues/new?template=connector_bug.yml)** template instead for faster triage.
9+
10+
Thanks for taking the time to file a bug! Before you go further:
11+
- Search [existing issues](https://github.com/open-metadata/OpenMetadata/issues) for duplicates.
12+
- Check the [docs](https://docs.open-metadata.org/) and [Slack](https://slack.open-metadata.org/) for known workarounds.
13+
- **Redact credentials, hostnames, emails, and other sensitive data** from logs and config before submitting.
14+
- type: dropdown
15+
id: affected_module
16+
attributes:
17+
label: Affected module
18+
description: Which area of OpenMetadata does this bug affect?
19+
options:
20+
- UI
21+
- Backend
22+
- Ingestion Framework
23+
- Connector
24+
- Data Quality / Profiler
25+
- Lineage
26+
- Search / Discovery
27+
- Authentication / Security
28+
- Governance (Glossary / Classification / Domains)
29+
- Documentation
30+
- Other
31+
validations:
32+
required: true
33+
- type: textarea
34+
id: describe
35+
attributes:
36+
label: Describe the bug
37+
description: A clear and concise description of what the bug is.
38+
validations:
39+
required: true
40+
- type: textarea
41+
id: reproduce
42+
attributes:
43+
label: To Reproduce
44+
description: Screenshots or steps to reproduce.
45+
validations:
46+
required: true
47+
- type: textarea
48+
id: expected
49+
attributes:
50+
label: Expected behavior
51+
description: A clear and concise description of what you expected to happen.
52+
validations:
53+
required: true
54+
- type: input
55+
id: os
56+
attributes:
57+
label: OS
58+
placeholder: "macOS 14.4 / Ubuntu 22.04 / Windows 11"
59+
- type: input
60+
id: python_version
61+
attributes:
62+
label: Python version
63+
placeholder: "3.11.7"
64+
- type: input
65+
id: om_version
66+
attributes:
67+
label: OpenMetadata version
68+
placeholder: "1.9.2"
69+
- type: input
70+
id: ingestion_version
71+
attributes:
72+
label: OpenMetadata Ingestion package version
73+
placeholder: "openmetadata-ingestion==1.9.2"
74+
- type: textarea
75+
id: additional_context
76+
attributes:
77+
label: Additional context
78+
description: Add any other context about the problem here. Redact sensitive data.
79+
- type: checkboxes
80+
id: checks
81+
attributes:
82+
label: Pre-submission checklist
83+
options:
84+
- label: I searched for duplicate issues.
85+
required: true
86+
- label: I removed credentials, hostnames, emails, and other sensitive data from logs and config.
87+
required: true
Lines changed: 101 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,101 @@
1+
name: Connector bug report
2+
description: Bug in a specific data connector (Snowflake, Databricks, BigQuery, etc.)
3+
labels: ["bug", "Ingestion"]
4+
body:
5+
- type: markdown
6+
attributes:
7+
value: |
8+
Thanks for reporting a connector bug! Before you go further:
9+
- Search [existing issues](https://github.com/open-metadata/OpenMetadata/issues) for duplicates.
10+
- Check the [connector docs](https://docs.open-metadata.org/latest/connectors) and [Slack](https://slack.open-metadata.org/) for known workarounds.
11+
- **Redact credentials, hostnames, emails, and other sensitive data** from logs and config before submitting.
12+
- type: input
13+
id: connector
14+
attributes:
15+
label: Connector
16+
description: Name of the affected connector. See the [connector docs](https://docs.open-metadata.org/latest/connectors) for the full supported list.
17+
placeholder: "e.g. Snowflake, Databricks, BigQuery, Power BI"
18+
validations:
19+
required: true
20+
- type: dropdown
21+
id: feature_area
22+
attributes:
23+
label: Feature area
24+
description: Which part of the connector is broken?
25+
options:
26+
- Metadata ingestion
27+
- Lineage
28+
- Profiler / Data Quality
29+
- Usage
30+
- Test Connection
31+
- Authentication / Connection
32+
- Other
33+
validations:
34+
required: true
35+
- type: textarea
36+
id: describe
37+
attributes:
38+
label: Describe the bug
39+
description: A clear and concise description of what the bug is.
40+
validations:
41+
required: true
42+
- type: textarea
43+
id: reproduce
44+
attributes:
45+
label: To Reproduce
46+
description: Steps or screenshots to reproduce.
47+
validations:
48+
required: true
49+
- type: textarea
50+
id: expected
51+
attributes:
52+
label: Expected behavior
53+
description: A clear and concise description of what you expected to happen.
54+
validations:
55+
required: true
56+
- type: textarea
57+
id: connection_config
58+
attributes:
59+
label: Connection / ingestion config
60+
description: Paste the relevant YAML. **Redact credentials, hostnames, and other sensitive values.**
61+
render: yaml
62+
- type: textarea
63+
id: logs
64+
attributes:
65+
label: Logs
66+
description: Relevant log output. Redact sensitive data.
67+
render: shell
68+
- type: input
69+
id: os
70+
attributes:
71+
label: OS
72+
placeholder: "macOS 14.4 / Ubuntu 22.04 / Windows 11"
73+
- type: input
74+
id: python_version
75+
attributes:
76+
label: Python version
77+
placeholder: "3.11.7"
78+
- type: input
79+
id: om_version
80+
attributes:
81+
label: OpenMetadata version
82+
placeholder: "1.9.2"
83+
- type: input
84+
id: ingestion_version
85+
attributes:
86+
label: OpenMetadata Ingestion package version
87+
placeholder: "openmetadata-ingestion==1.9.2"
88+
- type: textarea
89+
id: additional_context
90+
attributes:
91+
label: Additional context
92+
description: Anything else that helps us understand the problem. Redact sensitive data.
93+
- type: checkboxes
94+
id: checks
95+
attributes:
96+
label: Pre-submission checklist
97+
options:
98+
- label: I searched for duplicate issues.
99+
required: true
100+
- label: I removed credentials, hostnames, emails, and other sensitive data from logs and config.
101+
required: true

.github/ISSUE_TEMPLATE/doc_update.md

Lines changed: 0 additions & 16 deletions
This file was deleted.
Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
name: Documentation Request
2+
description: Let us know what our docs can improve
3+
labels: ["documentation"]
4+
body:
5+
- type: markdown
6+
attributes:
7+
value: |
8+
Thanks for helping us improve the docs! Before you file:
9+
- Search [existing issues](https://github.com/open-metadata/OpenMetadata/issues) for duplicates.
10+
- Check the latest [docs](https://docs.open-metadata.org/) — content may have been updated recently.
11+
- type: input
12+
id: doc_url
13+
attributes:
14+
label: Documentation URL
15+
description: Link to the page that needs updating. Leave blank if the docs for this topic don't exist yet.
16+
placeholder: "https://docs.open-metadata.org/... (or leave blank if missing)"
17+
- type: textarea
18+
id: problem
19+
attributes:
20+
label: Is some content missing, wrong or not clear?
21+
description: A clear and concise description of what the problem is. Ex. Page [...] is not clear.
22+
validations:
23+
required: true
24+
- type: textarea
25+
id: solution
26+
attributes:
27+
label: Describe the solution you'd like
28+
description: Let us know what could help us improve the docs.
29+
- type: textarea
30+
id: additional_context
31+
attributes:
32+
label: Additional context
33+
description: Add any other context or screenshots about the request here.
34+
- type: checkboxes
35+
id: checks
36+
attributes:
37+
label: Pre-submission checklist
38+
options:
39+
- label: I searched for duplicate doc issues.
40+
required: true

.github/ISSUE_TEMPLATE/epic.md

Lines changed: 0 additions & 22 deletions
This file was deleted.

.github/ISSUE_TEMPLATE/feature_request.md

Lines changed: 0 additions & 19 deletions
This file was deleted.
Lines changed: 41 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
name: Feature request
2+
description: Suggest an idea for this project
3+
labels: ["enhancement"]
4+
body:
5+
- type: markdown
6+
attributes:
7+
value: |
8+
Thanks for suggesting an improvement! Before you file:
9+
- Search [existing issues](https://github.com/open-metadata/OpenMetadata/issues) for duplicates.
10+
- Check the [roadmap](https://docs.open-metadata.org/) and [Slack](https://slack.open-metadata.org/) to see if it's already planned or discussed.
11+
- type: textarea
12+
id: problem
13+
attributes:
14+
label: Is your feature request related to a problem? Please describe.
15+
description: A clear and concise description of what the problem is. Ex. I'm always frustrated when [...]
16+
validations:
17+
required: true
18+
- type: textarea
19+
id: solution
20+
attributes:
21+
label: Describe the solution you'd like
22+
description: A clear and concise description of what you want to happen.
23+
validations:
24+
required: true
25+
- type: textarea
26+
id: alternatives
27+
attributes:
28+
label: Describe alternatives you've considered
29+
description: A clear and concise description of any alternative solutions or features you've considered.
30+
- type: textarea
31+
id: additional_context
32+
attributes:
33+
label: Additional context
34+
description: Add any other context or screenshots about the feature request here.
35+
- type: checkboxes
36+
id: checks
37+
attributes:
38+
label: Pre-submission checklist
39+
options:
40+
- label: I searched for duplicate feature requests.
41+
required: true

.github/ISSUE_TEMPLATE/feature_task.md

Lines changed: 0 additions & 13 deletions
This file was deleted.

0 commit comments

Comments
 (0)