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

dockerzhang pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-inlong.git


The following commit(s) were added to refs/heads/master by this push:
     new fc43a1fa7 [INLONG-4153][CI] Add support for first interaction (#4154)
fc43a1fa7 is described below

commit fc43a1fa7b63c447135996e69e40012cccdf9a8c
Author: Yuanhao Ji <[email protected]>
AuthorDate: Wed May 11 12:46:48 2022 +0800

    [INLONG-4153][CI] Add support for first interaction (#4154)
    
    Co-authored-by: dockerzhang <[email protected]>
---
 .github/workflows/ci_greeting.yml | 41 +++++++++++++++++++++++++++++++++++++++
 1 file changed, 41 insertions(+)

diff --git a/.github/workflows/ci_greeting.yml 
b/.github/workflows/ci_greeting.yml
new file mode 100644
index 000000000..7f3f5a6f9
--- /dev/null
+++ b/.github/workflows/ci_greeting.yml
@@ -0,0 +1,41 @@
+#
+# 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: InLong Greeting
+
+on:
+  pull_request:
+    types:
+      - opened
+  issues:
+    types:
+      - opened
+
+jobs:
+  greet:
+    name: Greet
+    runs-on: ubuntu-latest
+    permissions:
+      issues: write
+      pull-requests: write
+    steps:
+      - name: Interact with newcomers
+        uses: actions/first-interaction@v1
+        with:
+          repo-token: ${{ secrets.GITHUB_TOKEN }}
+          issue-message: 'Thanks a lot for opening your first issue with us! ๐Ÿงก 
We''ll get back to you shortly! โณ'
+          pr-message: 'Thanks a lot for your contribution! ๐Ÿ’– This seems to be 
your first PR! ๐ŸŒ  Please be sure to follow our [contribution 
guidelines](https://inlong.apache.org/community/how-to-contribute/)! ๐ŸŽ'

Reply via email to