This is an automated email from the ASF dual-hosted git repository.

morningman pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/doris-kafka-connector.git


The following commit(s) were added to refs/heads/master by this push:
     new 086c5b9  [Improve]Added asf.yaml file and github action build file (#4)
086c5b9 is described below

commit 086c5b94cfc3a126b5d738b66a39920fd335079b
Author: wudongliang <46414265+donglian...@users.noreply.github.com>
AuthorDate: Mon Mar 4 12:44:01 2024 +0800

    [Improve]Added asf.yaml file and github action build file (#4)
---
 .asf.yaml                                         | 50 +++++++++++++++++++++++
 .github/workflows/build-doris-kafka-connector.yml | 45 ++++++++++++++++++++
 2 files changed, 95 insertions(+)

diff --git a/.asf.yaml b/.asf.yaml
new file mode 100644
index 0000000..7f3691c
--- /dev/null
+++ b/.asf.yaml
@@ -0,0 +1,50 @@
+#
+# 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.
+#
+
+github:
+  description: Kafka Connector for Apache Doris
+  homepage: https://doris.apache.org
+  labels:
+    - olap
+    - mpp
+    - apache
+    - doris
+    - kafka
+    - kafka-connect
+    - etl
+    - data-streaming
+
+  enabled_merge_buttons:
+    squash:  true
+    merge:   false
+    rebase:  false
+  protected_branches:
+    master:
+      required_pull_request_reviews:
+        dismiss_stale_reviews: true
+        required_approving_review_count: 1
+  features:
+    issues: true
+    projects: true
+
+notifications:
+    issues: commits@doris.apache.org
+    commits: commits@doris.apache.org
+    pullrequests_status:  commits@doris.apache.org
+
diff --git a/.github/workflows/build-doris-kafka-connector.yml 
b/.github/workflows/build-doris-kafka-connector.yml
new file mode 100644
index 0000000..f54a248
--- /dev/null
+++ b/.github/workflows/build-doris-kafka-connector.yml
@@ -0,0 +1,45 @@
+#
+# 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: Build Doris Kafka Connector
+on:
+  pull_request:
+  push:
+
+jobs:
+  build-extension:
+    name: "Build Doris Kafka Connector"
+    runs-on: ubuntu-latest
+    defaults:
+      run:
+        shell: bash
+    steps:
+      - name: Checkout
+        uses: actions/checkout@master
+
+      - name: Setup java
+        uses: actions/setup-java@v2
+        with:
+          distribution: adopt
+          java-version: '8'
+
+      - name: Build Doris Kafka Connector
+        run: |
+          mvn clean package
\ No newline at end of file


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org
For additional commands, e-mail: commits-h...@doris.apache.org

Reply via email to