We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 097e8e2 commit c8a06c6Copy full SHA for c8a06c6
.github/workflows/comment-new-pr.yml
@@ -0,0 +1,20 @@
1
+name: Comment on PR creation
2
+
3
+on:
4
+ pull_request:
5
+ types: [opened]
6
7
+jobs:
8
+ comment:
9
+ runs-on: ubuntu-latest
10
+ steps:
11
+ - name: Comment on new PR
12
+ uses: peter-evans/create-or-update-comment@v4
13
+ with:
14
+ token: ${{ secrets.GITHUB_TOKEN }}
15
+ issue-number: ${{ github.event.pull_request.number }}
16
+ body: |
17
+ 🚀 Thanks sending the PR@${{ github.event.pull_request.user.login }}!
18
+ It'll be reviewed by the team soon.
19
+ If you have any questions, please feel free to ask.
20
+ Thanks!
0 commit comments