-
Notifications
You must be signed in to change notification settings - Fork 2k
48 lines (41 loc) · 1.37 KB
/
run_test_cases_pr_comment.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
name: run test cases PR comment
on:
workflow_run:
workflows: ["run test cases"]
types:
- completed
permissions:
issues: write
pull-requests: write
jobs:
post-pr-comment:
if: github.event.workflow_run.conclusion == 'success'
runs-on: ubuntu-latest
steps:
- name: Download artifacts
uses: actions/download-artifact@v4
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
run-id: ${{ github.event.workflow_run.id }}
merge-multiple: true
path: ./artifacts
- name: Display structure of downloaded files
run: |
ls -R ./artifacts
- name: Set PR environment variable
uses: actions/github-script@v7
with:
script: |
const fs = require('fs');
const pr = Number(fs.readFileSync('./artifacts/pr.txt', 'utf8'));
core.exportVariable('PR_NUMBER', pr);
- name: Update Mac Comment
uses: peter-evans/create-or-update-comment@71345be0265236311c031f5c7866368bd1eff043
with:
issue-number: ${{ env.PR_NUMBER }}
body-path: './artifacts/comment.txt'
- name: Update Win Comment
uses: peter-evans/create-or-update-comment@71345be0265236311c031f5c7866368bd1eff043
with:
issue-number: ${{ env.PR_NUMBER }}
body-path: './artifacts/commentwin.txt'