Skip to content

publish-hybridse-test-result-from-fork #2432

publish-hybridse-test-result-from-fork

publish-hybridse-test-result-from-fork #2432

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