merge v7.0.0 branch #287
Workflow file for this run
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 hexo | |
npm install | |
npm test | |
``` |