1
0
Fork 0
mirror of https://github.com/NeoCloud/NeoNetwork synced 2024-05-19 09:31:46 +08:00

test-your-pr: fix bot comment: actions/github-script is much better [skip ci]

Signed-off-by: Jerry <isjerryxiao@outlook.com>
This commit is contained in:
JerryXiao 2023-12-05 19:47:43 +08:00
parent 30b2c1a057
commit 70891fe946
Signed by: Jerry
GPG key ID: 22618F758B5BE2E5

View file

@ -52,11 +52,16 @@ jobs:
runs-on: ubuntu-20.04 runs-on: ubuntu-20.04
if: ${{ always() && contains(needs.build.result, 'success') }} if: ${{ always() && contains(needs.build.result, 'success') }}
steps: steps:
- uses: thollander/actions-comment-pull-request@v2 - uses: actions/github-script@v7
with: with:
token: ${{ secrets.COMMENT_GITHUB_TOKEN }} github-token: ${{secrets.COMMENT_GITHUB_TOKEN}}
message: | script: |
Congratulations! Your pull request passed the check. github.rest.issues.createComment({
issue_number: context.issue.number,
owner: context.repo.owner,
repo: context.repo.repo,
body: 'Congratulations! Your pull request passed the check.'
})
comment_failure: comment_failure:
needs: [build] needs: [build]
@ -65,11 +70,18 @@ jobs:
steps: steps:
- shell: bash - shell: bash
run: | run: |
echo ${{needs.build.outputs.generate_roa}} | base64 -d |tail > /tmp/buildjob_tail.log || echo 'internal error' > /tmp/buildjob_tail.log echo ${{needs.build.outputs.generate_roa}} | base64 -d | tr -d '`' |tail > /tmp/buildjob_tail.log || echo 'internal error' > /tmp/buildjob_tail.log
- uses: thollander/actions-comment-pull-request@v2 - uses: actions/github-script@v7
with: with:
token: ${{ secrets.COMMENT_GITHUB_TOKEN }} github-token: ${{secrets.COMMENT_GITHUB_TOKEN}}
filePath: /tmp/buildjob_tail.log script: |
const fs = require('fs')
github.rest.issues.createComment({
issue_number: context.issue.number,
owner: context.repo.owner,
repo: context.repo.repo,
body: fs.readFileSync('/tmp/buildjob_tail.log')
})
- run: false - run: false