forked from shyamtawli/devFind
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update and rename feedback.yml to greeting.yml
- Loading branch information
1 parent
0571ee9
commit 9190b98
Showing
2 changed files
with
25 additions
and
20 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
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
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." |