Skip to content

Commit bbfc3eb

Browse files
committed
adding pr comment file for automete
1 parent 569ea9c commit bbfc3eb

File tree

1 file changed

+31
-0
lines changed

1 file changed

+31
-0
lines changed

.github/workflows/comment-on-pr.yml

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
name: 💬 Comment on Pull Request
2+
3+
on:
4+
pull_request:
5+
types: [opened]
6+
7+
jobs:
8+
comment_pr:
9+
runs-on: ubuntu-latest
10+
name: Auto-comment PR
11+
permissions: # Add this block
12+
pull-requests: write
13+
steps:
14+
- name: Checkout Repository
15+
uses: actions/checkout@v3
16+
17+
- name: Add Pull Request Comment
18+
uses: thollander/actions-comment-pull-request@v3
19+
with:
20+
message: |
21+
👋 Hi @${{ github.actor }}, thank you for your contribution!
22+
We appreciate your effort in submitting this pull request to **TechInterviewMaster** 🚀
23+
24+
🔍 Our team will review your changes shortly.
25+
If you haven’t already:
26+
- Make sure your PR follows our [contributing guidelines](../blob/main/CONTRIBUTING.md)
27+
- Link any related issues
28+
- Add a meaningful description of your changes
29+
30+
Let's make tech interviews easier for everyone! 💪
31+
— _The Maintainers_

0 commit comments

Comments
 (0)