mirror of
https://github.com/open-metadata/OpenMetadata.git
synced 2025-12-02 18:46:02 +00:00
Running All the CI workflows on Release branches along with main branch (#7691)
* Update airflow-apis-tests-3_9.yml Updated workflows to run on main branch and also on all release branches * Update cypress-integration-tests-mysql.yml Updated workflows to run on main branch and also on all release branches * Update cypress-integration-tests-postgresql.yml Updated workflows to run on main branch and also on all release branches * Update docs-tests.yml Updated workflows to run on main branch and also on all release branches * Update java-checkstyle.yml Updated workflows to run on main branch and also on all release branches * Update maven-build.yml Updated workflows to run on main branch and also on all release branches * Update openmetadata-ingestion-core-version-comment.yml Updated workflows to run on main branch and also on all release branches * Update py-checkstyle.yml Updated workflows to run on main branch and also on all release branches * Update py-generate.yml Updated workflows to run on main branch and also on all release branche * Update py-ingestion-core-publish.yml Updated workflows to run on main branch and also on all release branches * Update py-tests.yml Updated workflows to run on main branch and also on all release branches * Update selenium-noIngestion-tests.yml Updated workflows to run on main branch and also on all release branches * Update sync-docs.yml Updated workflows to run on main branch and also on all release branches * Update yarn-coverage.yml Updated workflows to run on main branch and also on all release branches * Update airflow-apis-tests-3_9.yml Updated workflows to run on main branch and also on all release branches * Update cypress-integration-tests-mysql.yml Updated workflows to run on main branch and also on all release branches * Update cypress-integration-tests-postgresql.yml Updated workflows to run on main branch and also on all release branches * Update docs-tests.yml Updated workflows to run on main branch and also on all release branches * Update java-checkstyle.yml Updated workflows to run on main branch and also on all release branches * Update maven-build.yml Updated workflows to run on main branch and also on all release branches * Update openmetadata-ingestion-core-version-comment.yml Updated workflows to run on main branch and also on all release branches * Update py-checkstyle.yml Updated workflows to run on main branch and also on all release branches * Update py-tests.yml Updated workflows to run on main branch and also on all release branches * Update selenium-noIngestion-tests.yml Updated workflows to run on main branch and also on all release branches * Update sync-docs.yml Updated workflows to run on main branch and also on all release branches
This commit is contained in:
parent
35efd49256
commit
23f6e18a17
4
.github/workflows/airflow-apis-tests-3_9.yml
vendored
4
.github/workflows/airflow-apis-tests-3_9.yml
vendored
@ -13,7 +13,9 @@
|
||||
name: airflow-apis-tests
|
||||
on:
|
||||
push:
|
||||
branches: [main]
|
||||
branches:
|
||||
- main
|
||||
- '0.[0-9]+.[0-9]+'
|
||||
paths:
|
||||
- 'openmetadata-airflow-apis/**'
|
||||
pull_request_target:
|
||||
|
||||
@ -16,7 +16,9 @@ name: MySQL Cypress Integration Tests
|
||||
|
||||
on:
|
||||
push:
|
||||
branches: [main]
|
||||
branches:
|
||||
- main
|
||||
- '0.[0-9]+.[0-9]+'
|
||||
paths-ignore:
|
||||
- 'openmetadata-docs/**'
|
||||
pull_request_target:
|
||||
|
||||
@ -16,7 +16,9 @@ name: PostgreSQL Cypress Integration Tests
|
||||
|
||||
on:
|
||||
push:
|
||||
branches: [main]
|
||||
branches:
|
||||
- main
|
||||
- '0.[0-9]+.[0-9]+'
|
||||
paths-ignore:
|
||||
- 'openmetadata-docs/**'
|
||||
pull_request_target:
|
||||
|
||||
4
.github/workflows/docs-tests.yml
vendored
4
.github/workflows/docs-tests.yml
vendored
@ -13,7 +13,9 @@
|
||||
name: docs-tests
|
||||
on:
|
||||
push:
|
||||
branches: [main]
|
||||
branches:
|
||||
- main
|
||||
- '0.[0-9]+.[0-9]+'
|
||||
paths:
|
||||
- 'openmetadata-docs/**'
|
||||
pull_request_target:
|
||||
|
||||
4
.github/workflows/java-checkstyle.yml
vendored
4
.github/workflows/java-checkstyle.yml
vendored
@ -15,7 +15,9 @@ name: Java Checkstyle
|
||||
# access to secrets
|
||||
on:
|
||||
pull_request_target:
|
||||
branches: [ main ]
|
||||
branches:
|
||||
- main
|
||||
- '0.[0-9]+.[0-9]+'
|
||||
|
||||
concurrency:
|
||||
group: java-checkstyle-${{ github.head_ref }}
|
||||
|
||||
8
.github/workflows/maven-build.yml
vendored
8
.github/workflows/maven-build.yml
vendored
@ -13,12 +13,16 @@ name: Maven CI
|
||||
|
||||
on:
|
||||
push:
|
||||
branches: [main]
|
||||
branches:
|
||||
- main
|
||||
- '0.[0-9]+.[0-9]+'
|
||||
paths:
|
||||
- "openmetadata-service/**"
|
||||
- "openmetadata-ui/**"
|
||||
pull_request_target:
|
||||
branches: [main]
|
||||
branches:
|
||||
- main
|
||||
- '0.[0-9]+.[0-9]+'
|
||||
paths:
|
||||
- "openmetadata-service/**"
|
||||
- "openmetadata-ui/**"
|
||||
|
||||
@ -15,7 +15,9 @@ name: OpenMetadata Ingestion Core Version Check Comment
|
||||
# access to secrets
|
||||
on:
|
||||
pull_request_target:
|
||||
branches: [ main ]
|
||||
branches:
|
||||
- main
|
||||
- '0.[0-9]+.[0-9]+'
|
||||
types: [ opened ]
|
||||
paths:
|
||||
- 'openmetadata-service/src/main/resources/json/schema/**'
|
||||
|
||||
4
.github/workflows/py-checkstyle.yml
vendored
4
.github/workflows/py-checkstyle.yml
vendored
@ -15,7 +15,9 @@ name: Python Checkstyle
|
||||
# access to secrets
|
||||
on:
|
||||
pull_request_target:
|
||||
branches: [ main ]
|
||||
branches:
|
||||
- main
|
||||
- '0.[0-9]+.[0-9]+'
|
||||
|
||||
concurrency:
|
||||
group: py-checkstyle-${{ github.head_ref }}
|
||||
|
||||
1
.github/workflows/py-generate.yml
vendored
1
.github/workflows/py-generate.yml
vendored
@ -15,6 +15,7 @@ on:
|
||||
pull_request:
|
||||
branches:
|
||||
- main
|
||||
- '0.[0-9]+.[0-9]+'
|
||||
paths:
|
||||
- 'openmetadata-service/src/main/resources/json/**'
|
||||
|
||||
|
||||
@ -20,6 +20,7 @@ on:
|
||||
push:
|
||||
branches:
|
||||
- main
|
||||
- '0.[0-9]+.[0-9]+'
|
||||
paths:
|
||||
- 'openmetadata-service/src/main/resources/json/schema/**'
|
||||
- 'ingestion-core/src/metadata/_version.py'
|
||||
|
||||
8
.github/workflows/py-tests.yml
vendored
8
.github/workflows/py-tests.yml
vendored
@ -12,12 +12,16 @@
|
||||
name: py-tests
|
||||
on:
|
||||
push:
|
||||
branches: [main]
|
||||
branches:
|
||||
- main
|
||||
- '0.[0-9]+.[0-9]+'
|
||||
paths:
|
||||
- ingestion/**
|
||||
- openmetadata-service/**
|
||||
pull_request_target:
|
||||
branches: [main]
|
||||
branches:
|
||||
- main
|
||||
- '0.[0-9]+.[0-9]+'
|
||||
paths:
|
||||
- ingestion/**
|
||||
- openmetadata-service/**
|
||||
|
||||
@ -16,12 +16,16 @@ name: Selenium No Ingestion Java CI
|
||||
|
||||
on:
|
||||
push:
|
||||
branches: [ main ]
|
||||
branches:
|
||||
- main
|
||||
- '0.[0-9]+.[0-9]+'
|
||||
paths:
|
||||
- 'openmetadata-ui/src/main/resources/ui/**'
|
||||
- 'openmetadata-ui/src/test/java/org/openmetadata/catalog/selenium/pagesWithoutData/**'
|
||||
pull_request:
|
||||
branches: [ main ]
|
||||
branches:
|
||||
- main
|
||||
- '0.[0-9]+.[0-9]+'
|
||||
paths:
|
||||
- 'openmetadata-ui/src/main/resources/ui/**'
|
||||
- 'openmetadata-ui/src/test/java/org/openmetadata/catalog/selenium/pagesWithoutData/**'
|
||||
|
||||
4
.github/workflows/sync-docs.yml
vendored
4
.github/workflows/sync-docs.yml
vendored
@ -13,7 +13,9 @@
|
||||
name: Sync publish docs
|
||||
on:
|
||||
push:
|
||||
branches: [main]
|
||||
branches:
|
||||
- main
|
||||
- '0.[0-9]+.[0-9]+'
|
||||
paths:
|
||||
- openmetadata-docs/**
|
||||
workflow_dispatch:
|
||||
|
||||
1
.github/workflows/yarn-coverage.yml
vendored
1
.github/workflows/yarn-coverage.yml
vendored
@ -6,6 +6,7 @@ on:
|
||||
push:
|
||||
branches:
|
||||
- main
|
||||
- '0.[0-9]+.[0-9]+'
|
||||
paths:
|
||||
- openmetadata-ui/src/main/resources/ui/**
|
||||
pull_request_target:
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user