-
Notifications
You must be signed in to change notification settings - Fork 322
37 lines (34 loc) · 1.3 KB
/
publish-hybridse-test-result-from-fork.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
name: publish-hybridse-test-result-from-fork
on:
# the action will only run on dependabot/fork pull request
workflow_run:
workflows: ["HybridSE CI"]
types:
- completed
jobs:
test-results-linux:
if: >
github.event.workflow_run.conclusion != 'skipped' && (
github.event.sender.login == 'dependabot[bot]' ||
github.event.workflow_run.head_repository.full_name != github.repository
)
name: Publish HybridSE Linux UT Results
uses: ./.github/workflows/publish-test-result-from-fork-action.yml
with:
commit: ${{ github.event.workflow_run.head_sha }}
files: artifacts/linux-ut-result-*/**/*.xml
check_name: HybridSE Linux Test Report
comment_title: HybridSE Linux Test Report
test-results-mac:
if: >
github.event.workflow_run.conclusion != 'skipped' && (
github.event.sender.login == 'dependabot[bot]' ||
github.event.workflow_run.head_repository.full_name != github.repository
)
name: Publish HybridSE Mac UT Results
uses: ./.github/workflows/publish-test-result-from-fork-action.yml
with:
commit: ${{ github.event.workflow_run.head_sha }}
files: artifacts/macos-ut-result-*/**/*.xml
check_name: HybridSE Mac Test Report
comment_title: HybridSE Mac Test Report