Skip to content

Commit

Permalink
Added GitHub workflow for greeting contributors (#545)
Browse files Browse the repository at this point in the history
  • Loading branch information
harmeetsingh11 authored Feb 6, 2024
1 parent c27902d commit 3fda7a0
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/greetings.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: 'Greetings'

on:
issues:
types: [opened]
pull_request_target:
types: [opened]

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: |
Hey @${{ github.actor }}, Welcome to the project CalcDiverse! 🎊
Thanks for opening an issue! 🙌 Please wait for the issue to be assigned. Happy Coding!! ✨
pr-message: |
Hey @${{ github.actor }}, Welcome to the project CalcDiverse! 🎊
Thanks for your contribution! Your effort makes this project better. Keep it up! 🙌
Please wait for the PR to be reviewed. Happy Coding!! ✨

0 comments on commit 3fda7a0

Please sign in to comment.