a3bc9b7a72
Signed-off-by: Maisam Arif <Maisam.Arif@amd.com>
Change-Id: Icb0389f422b6f158492828e79e44fe00e5db07f5
[ROCm/rdc commit: 35eb8e7c4b]
22 строки
963 B
YAML
22 строки
963 B
YAML
name: ROCm CI Caller
|
|
on:
|
|
pull_request:
|
|
branches: [amd-mainline]
|
|
types: [opened, reopened, synchronize]
|
|
push:
|
|
branches: [amd-mainline]
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
call-workflow:
|
|
uses: AMD-ROCm-Internal/rocm_ci_infra/.github/workflows/rocm_ci.yml@mainline
|
|
secrets: inherit
|
|
with:
|
|
input_sha: ${{ github.event_name == 'pull_request' && github.event.pull_request.head.sha || github.sha }}
|
|
input_pr_num: ${{ github.event_name == 'pull_request' && github.event.pull_request.number || 0 }}
|
|
input_pr_url: ${{ github.event_name == 'pull_request' && github.event.pull_request.html_url || '' }}
|
|
input_pr_title: ${{ github.event_name == 'pull_request' && github.event.pull_request.title || '' }}
|
|
repository_name: ${{ github.repository }}
|
|
base_ref: ${{ github.event_name == 'pull_request' && github.base_ref || github.ref }}
|
|
trigger_event_type: ${{ github.event_name }}
|