Remove Guides Section from README #21
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: | |
types: [opened] | |
jobs: | |
greeting: | |
runs-on: ubuntu-latest | |
permissions: write-all | |
steps: | |
- name: Greet Contributors for Creating New Issues. | |
uses: peter-evans/create-or-update-comment@v1 | |
if: github.event_name == 'issues' | |
with: | |
issue-number: ${{tojson(github.event.issue.number)}} | |
body: | | |
@${{ github.actor }} Thank you for taking your time and effort for your contribution, we truly value it. Happy Learning!❤️ | |
- name: Greet New Contributors for Creating New PR/Issues. | |
uses: peter-evans/create-or-update-comment@v1 | |
if: github.event.action =='opened' && ( github.event_name == 'pull_request' || github.event_name == 'pull_request_target') | |
with: | |
issue-number: ${{tojson(github.event.number)}} | |
body: | | |
@${{ github.actor }} Thank you for taking your time and effort for your contribution, we truly value it. Happy Learning!❤️ |