Google button sign in #241
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |