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

test-your-pr: add bot comment [skip ci]

Signed-off-by: Jerry <isjerryxiao@outlook.com>
This commit is contained in:
JerryXiao 2023-12-05 18:17:04 +08:00
parent 137a4d64bc
commit aabb859780
Signed by: Jerry
GPG key ID: 22618F758B5BE2E5

View file

@ -24,9 +24,9 @@ jobs:
python-version: 3.x python-version: 3.x
architecture: x64 architecture: x64
- run: pip install -r scripts/requirements.txt - run: env PYTHONUNBUFFERED=1 pip install -r scripts/requirements.txt 2>(tee -a ~/buildjob.log >&2)
- run: scripts/generate-roa.sh - run: env PYTHONUNBUFFERED=1 scripts/generate-roa.sh 2>(tee -a ~/buildjob.log >&2)
- run: git -C generated diff README.md - run: git -C generated diff README.md
@ -34,3 +34,26 @@ jobs:
with: with:
name: generated name: generated
path: generated path: generated
comment_success:
needs: [build]
runs-on: ubuntu-20.04
if: needs.build.result == 'success'
steps:
- uses: thollander/actions-comment-pull-request@v2
with:
GITHUB_TOKEN: ${{ secrets.COMMENT_GITHUB_TOKEN }}
message: |
Congratulations! Your pull request passed the check.
comment_failure:
needs: [build]
runs-on: ubuntu-20.04
if: needs.build.result == 'failure'
steps:
- run: tail ~/buildjob.log > ~/buildjob_tail.log
- uses: thollander/actions-comment-pull-request@v2
with:
GITHUB_TOKEN: ${{ secrets.COMMENT_GITHUB_TOKEN }}
filePath: ~/buildjob_tail.log