mirror of
https://github.com/FranP-code/Baileys.git
synced 2025-10-13 00:32:22 +00:00
Merge branch 'WhiskeySockets:master' into master
This commit is contained in:
36
.github/workflows/pr-comment.yml
vendored
Normal file
36
.github/workflows/pr-comment.yml
vendored
Normal file
@@ -0,0 +1,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 }}
|
||||||
|
```
|
||||||
0
.npmignore
Normal file
0
.npmignore
Normal file
@@ -36,6 +36,7 @@
|
|||||||
"gen:protobuf": "sh WAProto/GenerateStatics.sh",
|
"gen:protobuf": "sh WAProto/GenerateStatics.sh",
|
||||||
"lint": "eslint . --ext .js,.ts,.jsx,.tsx",
|
"lint": "eslint . --ext .js,.ts,.jsx,.tsx",
|
||||||
"lint:fix": "eslint . --fix --ext .js,.ts,.jsx,.tsx",
|
"lint:fix": "eslint . --fix --ext .js,.ts,.jsx,.tsx",
|
||||||
|
"prepack": "tsc",
|
||||||
"prepare": "tsc",
|
"prepare": "tsc",
|
||||||
"release": "release-it",
|
"release": "release-it",
|
||||||
"test": "jest"
|
"test": "jest"
|
||||||
|
|||||||
Reference in New Issue
Block a user