Skip to content

Commit d27522d

Browse files
Create comment-PR.yml
1 parent 99235f5 commit d27522d

File tree

1 file changed

+17
-0
lines changed

1 file changed

+17
-0
lines changed

.github/workflows/comment-PR.yml

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
name: Comment ON Pull Requests
2+
3+
on:
4+
pull_request:
5+
types: [opened]
6+
jobs:
7+
post-comment:
8+
runs-on: ubuntu-latest
9+
steps:
10+
- name: Checkout code
11+
uses: actions/checkout@v2
12+
13+
- name: Comment PR
14+
uses: thollander/actions-comment-pull-request@v1
15+
with:
16+
message: 'Thank you for your pull request!'
17+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 commit comments

Comments
 (0)