-
Notifications
You must be signed in to change notification settings - Fork 3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' into openapi-nested-schema-support
- Loading branch information
Showing
2,924 changed files
with
204,287 additions
and
13,216 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,65 @@ | ||
comment: | ||
layout: "header, files, footer" # remove "new" from "header" and "footer" | ||
hide_project_coverage: true # set to false | ||
require_changes: false # if true: only post the comment if coverage changes | ||
|
||
codecov: | ||
#due to ci-optimization, reports for modules that have not changed may be quite old | ||
max_report_age: off | ||
|
||
flag_management: | ||
default_rules: # the rules that will be followed for any flag added, generally | ||
carryforward: true | ||
statuses: | ||
- type: project | ||
target: auto | ||
threshold: 0% #Not enforcing project coverage yet. | ||
- type: patch | ||
target: 90% | ||
individual_flags: # exceptions to the default rules above, stated flag by flag | ||
- name: frontend | ||
paths: | ||
- "datahub-frontend/**" | ||
- "datahub-web-react/**" | ||
- name: backend | ||
paths: | ||
- "metadata-models/**" | ||
- "datahub-upgrade/**" | ||
- "entity-registry/**" | ||
- "li-utils/**" | ||
- "metadata-auth/**" | ||
- "metadata-dao-impl/**" | ||
- "metadata-events/**" | ||
- "metadata-jobs/**" | ||
- "metadata-service/**" | ||
- "metadata-utils/**" | ||
- "metadata-operation-context/**" | ||
- "datahub-graphql-core/**" | ||
- name: metadata-io | ||
paths: | ||
- "metadata-io/**" | ||
- name: ingestion | ||
paths: | ||
- "metadata-ingestion/**" | ||
- name: ingestion-airflow | ||
paths: | ||
- "metadata-ingestion-modules/airflow-plugin/**" | ||
- name: ingestion-dagster | ||
paths: | ||
- "metadata-ingestion-modules/dagster-plugin/**" | ||
- name: ingestion-gx-plugin | ||
paths: | ||
- "metadata-ingestion-modules/gx-plugin/**" | ||
- name: ingestion-prefect | ||
paths: | ||
- "metadata-ingestion-modules/prefect-plugin/**" | ||
coverage: | ||
status: | ||
project: | ||
default: | ||
target: 0% # no threshold enforcement yet | ||
only_pulls: true | ||
patch: | ||
default: | ||
target: 90% # for new code added in the patch | ||
only_pulls: true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
--- | ||
name: DataHub v1.0-rc Bug Report | ||
about: Report issues found in DataHub v1.0 Release Candidates | ||
title: "[v1.0-rc/bug] Description of Bug" | ||
labels: bug, datahub-v1.0-rc | ||
assignees: chriscollins3456, david-leifker, maggiehays | ||
|
||
--- | ||
|
||
**Describe the bug** | ||
A clear and concise description of what the bug is. | ||
|
||
**To Reproduce** | ||
Steps to reproduce the behavior: | ||
1. Go to '...' | ||
2. Click on '....' | ||
3. Scroll down to '....' | ||
4. See error | ||
|
||
**Expected behavior** | ||
A clear and concise description of what you expected to happen. | ||
|
||
**Screenshots and/or Screen Recordings** | ||
If applicable, add screenshots and/or screen recordings to help explain the issue. | ||
|
||
**System details (please complete the following information):** | ||
- DataHub Version Tag [e.g. v1.0-rc1] | ||
- OS: [e.g. iOS] | ||
- Browser [e.g. chrome, safari] | ||
|
||
**Additional context** | ||
Add any other context about the problem here. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
# To get started with Dependabot version updates, you'll need to specify which | ||
# package ecosystems to update and where the package manifests are located. | ||
# Please see the documentation for all configuration options: | ||
# https://docs.github.com/code-security/dependabot/dependabot-version-updates/configuration-options-for-the-dependabot.yml-file | ||
|
||
version: 2 | ||
updates: | ||
- package-ecosystem: "github-actions" # See documentation for possible values | ||
directory: "/" # Location of package manifests | ||
schedule: | ||
interval: "weekly" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,22 +1,32 @@ | ||
ingestion: | ||
- "metadata-ingestion/**/*" | ||
- "metadata-ingestion-modules/**/*" | ||
- "metadata-integration/**/*" | ||
- changed-files: | ||
- any-glob-to-any-file: | ||
- "metadata-ingestion/**/*" | ||
- "metadata-ingestion-modules/**/*" | ||
- "metadata-integration/**/*" | ||
|
||
devops: | ||
- "docker/**/*" | ||
- ".github/**/*" | ||
- "perf-test/**/*" | ||
- "metadata-service/**/*" | ||
- changed-files: | ||
- any-glob-to-any-file: | ||
- "docker/**/*" | ||
- ".github/**/*" | ||
- "perf-test/**/*" | ||
- "metadata-service/**/*" | ||
|
||
product: | ||
- "datahub-web-react/**/*" | ||
- "datahub-frontend/**/*" | ||
- "datahub-graphql-core/**/*" | ||
- "metadata-io/**/*" | ||
- changed-files: | ||
- any-glob-to-any-file: | ||
- "datahub-web-react/**/*" | ||
- "datahub-frontend/**/*" | ||
- "datahub-graphql-core/**/*" | ||
- "metadata-io/**/*" | ||
|
||
docs: | ||
- "docs/**/*" | ||
- changed-files: | ||
- any-glob-to-any-file: | ||
- "docs/**/*" | ||
|
||
smoke_test: | ||
- "smoke-test/**/*" | ||
- changed-files: | ||
- any-glob-to-any-file: | ||
- "smoke-test/**/*" |
Oops, something went wrong.