-
Notifications
You must be signed in to change notification settings - Fork 9
29 lines (24 loc) · 1 KB
/
greet-contributors.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
name: Greet Contributor
on:
fork:
push:
branches: [main]
issues:
types: [opened]
pull_request_target:
types: [opened]
jobs:
welcome:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@main
- uses: EddieHubCommunity/gh-action-community/src/welcome@main
if: ${{ github.event.sender.login != github.repository_owner }}
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
issue-message: |
### Hello @${{ github.actor }},
Thank you for raising the issue. Soon, the maintainers/owner will review it and offer feedback and suggestions. If you enjoy contributing to the project, please consider giving it a star ⭐.
pr-message: |
### Good work @${{ github.actor }},
Thank you for raising the PR. Soon, the maintainers/owner will review it and offer feedback and suggestions. If you enjoy contributing to the project, please consider giving it a star ⭐.