From ea1ad50969f3a7bd4c5f62e1a8033dfc5936185e Mon Sep 17 00:00:00 2001 From: Emotion Date: Sat, 29 Jan 2022 22:50:17 +1300 Subject: [PATCH] Create greetings.yml --- .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..9a7d09e --- /dev/null +++ b/.github/workflows/greetings.yml @@ -0,0 +1,16 @@ +name: Greetings + +on: [pull_request, 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: 'Thanks for opening an issue one of the team member will be with you as soon as they can' + pr-message: 'Thanks for opening a pr one of the team members will review it as soon as they have time'