Skip to content

Commit 7387bb8

Browse files
authored
Merge pull request #46 from Optimism-Educators/testing
Testing
2 parents 6fd1209 + 55d8e37 commit 7387bb8

File tree

2 files changed

+37
-0
lines changed

2 files changed

+37
-0
lines changed
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_

requirements.txt

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
pytest==7.4.0
2+
numpy==1.25.2
3+
pandas==2.1.1
4+
matplotlib==3.8.0
5+
scipy==1.11.3
6+
networkx==3.1

0 commit comments

Comments
 (0)