From e3dbdff290115f958e612365853b005a51bc3cce Mon Sep 17 00:00:00 2001 From: Byungjin Park Date: Sat, 5 Feb 2022 00:39:32 +0900 Subject: [PATCH] Add welcome github action --- .github/workflows/welcome.yaml | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 .github/workflows/welcome.yaml diff --git a/.github/workflows/welcome.yaml b/.github/workflows/welcome.yaml new file mode 100644 index 0000000..606192d --- /dev/null +++ b/.github/workflows/welcome.yaml @@ -0,0 +1,31 @@ +name: Welcome for First Issue or Pull Request + +on: + pull_request: + types: + - opened + issues: + types: + - opened + +jobs: + welcome: + runs-on: ubuntu-latest + + steps: + - name: Welcome for First Issue or Pull Request + uses: actions/first-interaction@v1 + with: + repo-token: ${{ secrets.GITHUB_TOKEN }} + issue-message: | + ### :wave: Welcome! Looks like this is your first issue. + + Hey, thanks for your contribution! Please give us a bit of time to review it. 😄 + + **Be sure to follow the issue template!** + pr-message: | + ### :wave: Welcome! Looks like this is your first pull request. + + Hey, thanks for your contribution! Please give us a bit of time to review it. 😄 + + **Please check out our contributing guidelines.**