Skip to content

Commit

Permalink
Update and rename feedback.yml to greeting.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
shyamtawli authored May 28, 2023
1 parent 0571ee9 commit 9190b98
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 20 deletions.
20 changes: 0 additions & 20 deletions .github/workflows/feedback.yml

This file was deleted.

25 changes: 25 additions & 0 deletions .github/workflows/greeting.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: Greeting

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

jobs:
welcome:
runs-on: ubuntu-latest
steps:
- name: Issue Greeting
if: github.event_name == 'issues'
run: |
echo "Hello, ${{ github.actor }}! Thank you for opening an issue."
echo "Soon the maintainers/owners will review it and provide you with feedback/suggestions."
echo "If you think it's something urgent, feel free to reach out on our social handles."
- name: Pull Request Greeting
if: github.event_name == 'pull_request_target'
run: |
echo "Hello, ${{ github.actor }}! Thank you for raising a pull request."
echo "Soon the maintainers/owners will review it and provide you with feedback/suggestions."
echo "If you think it's something urgent, feel free to reach out on our social handles."

0 comments on commit 9190b98

Please sign in to comment.