This is an automated email from the ASF dual-hosted git repository. hxd pushed a commit to branch add-welcome-action-for-the-first-issue/pr in repository https://gitbox.apache.org/repos/asf/iotdb.git
commit a96927b5f161c9c8cc89b22668e59d6349c3f59e Author: Xiangdong Huang <[email protected]> AuthorDate: Mon Mar 8 17:58:03 2021 +0800 Add welcome info for who submit issues/PRs the first time. --- .github/workflows/greetings.yml | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/.github/workflows/greetings.yml b/.github/workflows/greetings.yml new file mode 100644 index 0000000..c8cbad4 --- /dev/null +++ b/.github/workflows/greetings.yml @@ -0,0 +1,13 @@ +name: Greetings + +on: [pull_request, issues] + +jobs: + greeting: + runs-on: ubuntu-latest + steps: + - uses: actions/first-interaction@v1 + with: + repo-token: ${{ secrets.GITHUB_TOKEN }} + issue-message: 'Hi, this is your first issue in IoTDB project. Thanks for your report. Welcome to join the community!' + pr-message: 'Hi, this is your first pull request in IoTDB project. Thanks for your contribution! IoTDB will be better because of you.'
