From 82263d478cda2320aea27c9552437a4f711745ba Mon Sep 17 00:00:00 2001 From: Harsh Vaidya Date: Sun, 29 Dec 2024 12:54:04 +0530 Subject: [PATCH] Solving greetings.yml issue --- .github/workflows/greetings.yml | 19 ++++++++++++------- 1 file changed, 12 insertions(+), 7 deletions(-) diff --git a/.github/workflows/greetings.yml b/.github/workflows/greetings.yml index 1c06dbe8..2cdaeba9 100644 --- a/.github/workflows/greetings.yml +++ b/.github/workflows/greetings.yml @@ -13,10 +13,15 @@ jobs: welcome: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v1 - - uses: EddieHubCommunity/gh-action-community/src/welcome@main - with: - github-token: ${{ secrets.GITHUB_TOKEN }} - issue-message: "Welcome, @${{ github.actor }}! Your issue is like a spark that ignites innovation. We're thrilled to dive into it and work together to find a solution." - pr-message: 'Great job, @${{ github.actor }}! 🎉 Thank you for opening a pull request. Your contribution is valuable and we appreciate your efforts to improve our project.' - footer: 'Soon the maintainers/owner will review it and provide you with feedback/suggestions.' + # Checkout repository + - name: Checkout code + uses: actions/checkout@v2 + + # Sending a custom greeting message to issues and PRs + - name: Welcome new issue or PR + uses: EddieHubCommunity/gh-action-welcome@v1 + with: + github-token: ${{ secrets.GITHUB_TOKEN }} + issue-message: "Welcome, @${{ github.actor }}! Your issue is like a spark that ignites innovation. We're thrilled to dive into it and work together to find a solution." + pr-message: "Great job, @${{ github.actor }}! 🎉 Thank you for opening a pull request. Your contribution is valuable and we appreciate your efforts to improve our project." + footer: "Soon the maintainers/owner will review it and provide you with feedback/suggestions."