Skip to content

[bugFix][Connector-V2][Kafka & Canal] The settings for database.include and table.include are not taking effect. (#6870) #5947

[bugFix][Connector-V2][Kafka & Canal] The settings for database.include and table.include are not taking effect. (#6870)

[bugFix][Connector-V2][Kafka & Canal] The settings for database.include and table.include are not taking effect. (#6870) #5947

Workflow file for this run

#
# Licensed to the Apache Software Foundation (ASF) under one or more
# contributor license agreements. See the NOTICE file distributed with
# this work for additional information regarding copyright ownership.
# The ASF licenses this file to You under the Apache License, Version 2.0
# (the 'License'); you may not use this file except in compliance with
# the License. You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an 'AS IS' BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#
name: Documents
on:
pull_request:
paths:
- 'docs/**'
jobs:
build:
name: Build website
runs-on: ubuntu-latest
timeout-minutes: 60
steps:
- name: Checkout PR
uses: actions/checkout@v3
with:
path: seatunnel-pr
- name: Checkout website repo
uses: actions/checkout@v3
with:
repository: apache/seatunnel-website
path: seatunnel-website
- name: Sync PR changes to website
run: |
bash seatunnel-pr/tools/documents/sync.sh seatunnel-pr seatunnel-website
- uses: actions/setup-node@v2
with:
node-version: 20.13.1
- name: Run docusaurus build
run: |
cd seatunnel-website
npm set strict-ssl false
npm install
npm run build
code-style:
name: Code style
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- uses: actions/checkout@v3
with:
submodules: true
- name: Check code style
run: ./mvnw --batch-mode --quiet --no-snapshot-updates clean spotless:check