-
-
Notifications
You must be signed in to change notification settings - Fork 2
55 lines (55 loc) · 1.73 KB
/
report.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
49
50
51
52
53
54
55
{
"jobs": {
"checks": {
"runs-on": "ubuntu-22.04",
"permissions": {
"contents": "read",
"actions": "read",
"checks": "write"
},
"steps": [
{
"with": {
"ref": "${{ github.event.workflow_run.head_commit.id }}",
"repository": "${{ github.event.workflow_run.head_repository.full_name }}"
},
"name": "Checkout",
"uses": "actions/checkout@v4"
},
{
"with": {
"name": "junit-test-results",
"github-token": "${{ github.token }}",
"run-id": "${{ github.event.workflow_run.id }}"
},
"name": "Download Test Report",
"uses": "actions/download-artifact@v4"
},
{
"with": {
"name": "Gametests",
"path": "*/runs/gametest/results/junit.xml",
"reporter": "java-junit",
"fail-on-empty": "true",
"list-tests": "failed"
},
"name": "JUnit Test Report",
"uses": "dorny/test-reporter@v1"
}
]
}
},
"name": "Report Test Results",
"concurrency": "ci-${{ github.ref }}",
"on": {
"workflow_run": {
"types": [
"completed"
],
"workflows": [
"Build PR",
"Snapshot"
]
}
}
}