-
-
Notifications
You must be signed in to change notification settings - Fork 184
34 lines (31 loc) · 1.47 KB
/
greetings.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
name: Greetings
on:
fork:
push:
branches: [main]
issues:
types: [opened]
pull_request_target:
types: [opened]
jobs:
greeting:
runs-on: ubuntu-latest
permissions:
issues: write
pull-requests: write
steps:
- uses: actions/first-interaction@v1
continue-on-error: true
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
issue-message: "Hi there ${{ github.actor }}!, welcome to Dummygram :)"
pr-message: "Hi there ${{ github.actor }}!, congratulations on your first pull request :)"
welcome:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: EddieHubCommunity/gh-action-community/src/welcome@main
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
issue-message: "Hello ${{ github.actor }}! \n Thank you for raising this issue! 😊 Your contribution is valuable to us! 😊 \n\nPlease make sure to follow our [Contributing Guidelines. 💪🏻](https://github.com/narayan954/dummygram/blob/master/CONTRIBUTING.md) \n\nOur reviewers shall carefully assess the issue and reach out to you soon! 😇 \n We appreciate your patience! "
pr-message: "Thank you ${{ github.actor }}! for creating this pull request and contributing to Dummygram! 💗\n\n The maintainers will review this Pull Request and provide feedback as soon as possible! 😇\nWe appreciate your patience and contribution, Keep up the great work! 😀"