migrate to monorepo #312
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Commenter | |
on: [pull_request_target] | |
permissions: | |
contents: read | |
jobs: | |
commenter: | |
permissions: | |
pull-requests: write # for marocchino/sticky-pull-request-comment to create or update PR comment | |
runs-on: ubuntu-latest | |
steps: | |
- name: Comment PR | |
uses: marocchino/sticky-pull-request-comment@v2 | |
with: | |
message: | | |
## How to test | |
```sh | |
git clone -b ${{ github.head_ref }} https://github.com/${{ github.event.pull_request.head.repo.full_name }}.git | |
cd ${{ github.event.pull_request.head.repo.name }} | |
pnpm install | |
pnpm run test | |
``` |