From 0d02ac99ca5c13d002aada256495a5ccc73507c7 Mon Sep 17 00:00:00 2001 From: web-flow Date: Tue, 24 Nov 2020 15:23:51 +0000 Subject: [PATCH] Update global workflows --- .../workflows/welcome-first-time-contrib.yml | 24 +++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 .github/workflows/welcome-first-time-contrib.yml diff --git a/.github/workflows/welcome-first-time-contrib.yml b/.github/workflows/welcome-first-time-contrib.yml new file mode 100644 index 000000000000..5368492ebf22 --- /dev/null +++ b/.github/workflows/welcome-first-time-contrib.yml @@ -0,0 +1,24 @@ +name: Welcome first time contributors + +on: + pull_request_target: + types: + - opened + issues: + types: + - opened + +jobs: + welcome: + runs-on: ubuntu-latest + steps: + - uses: actions/first-interaction@v1 + with: + repo-token: ${{ secrets.GITHUB_TOKEN }} + issue-message: | + Welcome to AsyncAPI. Thanks a lot for reporting your first issue. + Keep in mind there are also other channels you can use to interact with AsyncAPI community. For more details check out [this issue](https://github.com/asyncapi/asyncapi/issues/115). + pr-message: | + Welcome to AsyncAPI. Thanks a lot for creating your first pull request. + Keep in mind there are also other channels you can use to interact with AsyncAPI community. For more details check out [this issue](https://github.com/asyncapi/asyncapi/issues/115). +© 2020 GitHub, Inc.