Skip to content

Commit dfee861

Browse files
committed
2 parents c54227f + 2f50b65 commit dfee861

File tree

1 file changed

+29
-0
lines changed

1 file changed

+29
-0
lines changed

.github/workflows/greetings.yml

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
name: Greet Contributors and Forkers
2+
3+
on:
4+
pull_request:
5+
types: [opened]
6+
push:
7+
branches:
8+
- main
9+
- 'feature/**'
10+
fork:
11+
types: [created]
12+
13+
jobs:
14+
greeting:
15+
runs-on: ubuntu-latest
16+
17+
steps:
18+
- name: Greet Pull Request or Fork
19+
uses: actions/first-interaction@v1
20+
with:
21+
repo-token: ${{ secrets.GITHUB_TOKEN }}
22+
issue-message: >
23+
🎉 Thank you for opening a pull request! We appreciate your effort and
24+
contribution to this project. The team will review it soon.
25+
pr-message: >
26+
🚀 Thank you for contributing! We're excited to review your changes and collaborate with you.
27+
fork-message: >
28+
🎉 Thank you for forking this repository! We’re thrilled to have you exploring the project.
29+
Feel free to contribute and let us know if you need help.

0 commit comments

Comments
 (0)