Skip to content

Google button sign in #241

Google button sign in

Google button sign in #241

Workflow file for this run

name: Greetings
on:
issues:
types:
- opened
pull_request_target:
types:
- opened
jobs:
Greetings:
runs-on: ubuntu-latest
steps:
- env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
if [[ "${{ github.event_name }}" == "issues" ]]; then
gh issue comment ${{ github.event.issue.html_url }} --body "@${{ github.event.issue.user.login }}
Thank you for raising this issue! πŸŽ‰πŸ™Œ
We truly appreciate your contribution to this project and will review the details shortly. πŸ› οΈβœ¨
We will get back to you soon!
Thank you for your patience! πŸ™"
elif [[ "${{ github.event_name }}" == "pull_request_target" ]]; then
gh pr comment ${{ github.event.pull_request.html_url }} --body "@${{ github.event.pull_request.user.login }}
Thank you for your Pull Request!
We truly appreciate your contribution! πŸ™Œ
We will review the changes and provide feedback or merge the PR soon. πŸ”
Please stay tuned for updates! πŸ””
🌟 Thank you for your efforts in improving the project! πŸ™"
fi