From 302f288a55cf87b24fec520ca9d984140b0f05db Mon Sep 17 00:00:00 2001 From: Florentino <66912536+huynhit24@users.noreply.github.com> Date: Fri, 29 Jul 2022 10:55:26 +0700 Subject: [PATCH] Create greetings.yml Signed-off-by: Florentino <66912536+huynhit24@users.noreply.github.com> --- .github/workflows/greetings.yml | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 .github/workflows/greetings.yml diff --git a/.github/workflows/greetings.yml b/.github/workflows/greetings.yml new file mode 100644 index 0000000..4677434 --- /dev/null +++ b/.github/workflows/greetings.yml @@ -0,0 +1,16 @@ +name: Greetings + +on: [pull_request_target, issues] + +jobs: + greeting: + runs-on: ubuntu-latest + permissions: + issues: write + pull-requests: write + steps: + - uses: actions/first-interaction@v1 + with: + repo-token: ${{ secrets.GITHUB_TOKEN }} + issue-message: "Message that will be displayed on users' first issue" + pr-message: "Message that will be displayed on users' first pull request"