-
-
Notifications
You must be signed in to change notification settings - Fork 1.4k
36 lines (30 loc) · 1.13 KB
/
pr-comment.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
name: PR Comment
on:
pull_request_target:
types:
- opened
- synchronize
- reopened
- unlocked
jobs:
pr-comment:
runs-on: ubuntu-latest
timeout-minutes: 10
permissions: write-all
steps:
- uses: actions/checkout@v3
- uses: mshick/add-pr-comment@v2
with:
repo-token: ${{ secrets.PERSONAL_TOKEN}}
message-id: pr-test
message: |
Thanks for your contribution.
The next step is to wait for review and approval to merge it to main repository
The community can help reacting with a thumb up (:thumbsup:) for approval and rocket (:rocket:) for who has tested it.
To test this PR you can run the following command below:
```
# NPM
npm install @whiskeysockets/baileys@${{ github.event.pull_request.head.repo.full_name }}#${{ github.event.pull_request.head.ref }}
# YARN v2
yarn add @whiskeysockets/baileys@${{ github.event.pull_request.head.repo.full_name }}#${{ github.event.pull_request.head.ref }}
```