From 16615c1079df2063e6cf3e40492ba4e46c62a7d1 Mon Sep 17 00:00:00 2001 From: Kevin <68507333+shubhammjha22@users.noreply.github.com> Date: Thu, 23 May 2024 13:15:25 +0530 Subject: [PATCH] Added Automate PR-Message --- .github/workflows/greetings.yaml | 30 +++++++++++++++++++----------- 1 file changed, 19 insertions(+), 11 deletions(-) diff --git a/.github/workflows/greetings.yaml b/.github/workflows/greetings.yaml index ca8ec8bd..5c20bbf1 100644 --- a/.github/workflows/greetings.yaml +++ b/.github/workflows/greetings.yaml @@ -1,16 +1,24 @@ -name: Greetings +name: 'Greetings' -on: [issues] +on: + fork: + push: + branches: [main] + issues: + types: [opened] + pull_request_target: + types: [opened] jobs: - greeting: + welcome: runs-on: ubuntu-latest - permissions: - issues: write - pull-requests: write steps: - - uses: actions/first-interaction@v1 - with: - repo-token: ${{ secrets.GITHUB_TOKEN }} - issue-message: "Hi there! Thanks for opening this issue. We appreciate your contribution to this open-source project. We aim to respond or assign your issue as soon as possible." - pr-message: "Welcome to Our repository.🎊 Thank you so much for taking the time to point this out." + - uses: actions/checkout@v1 + - uses: EddieHubCommunity/gh-action-community/src/welcome@main + with: + github-token: ${{ secrets.GITHUB_TOKEN }} + issue-message: | + Congratulations, @${{ github.actor }}! 🎉 Thank you for creating your issue. Your contribution is greatly appreciated and we look forward to working with you to resolve the issue. Keep up the great work! + pr-message: | + Great job, @${{ github.actor }}! 🎉 Thank you for submitting your pull request. Your contribution is valuable and we appreciate your efforts to improve our project. + footer: 'We will promptly review your changes and offer feedback. Keep up the excellent work! Kindly remember to check our [contributing guidelines](https://github.com/Clueless-Community/scrape-up/blob/main/CONTRIBUTING.md)'