diff --git a/.github/workflows/greetings.yml b/.github/workflows/greetings.yml new file mode 100644 index 0000000..1da2be9 --- /dev/null +++ b/.github/workflows/greetings.yml @@ -0,0 +1,21 @@ +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: | + Hey @${{ github.actor }}, Welcome to the project Click-The-Edible-Game! 🎊 + Thanks for opening an issue! 🙌 Please wait for the issue to be assigned. Happy Coding!! ✨ + pr-message: | + Hey @${{ github.actor }}, Welcome to the project Click-The-Edible-Game! 🎊 + Thanks for your contribution! Your effort makes this project better. Keep it up! 🙌 + Please wait for the PR to be reviewed. Happy Coding!! ✨