Create rocm_ci_caller.yml enabling PSDB and OSDB for amd-mainline changes

Этот коммит содержится в:
Choudhary, Rahul
2024-12-17 11:30:03 -08:00
родитель 8bcb5f7068
Коммит 948271bd9b
+22
Просмотреть файл
@@ -0,0 +1,22 @@
name: ROCm CI Caller
on:
# Commenting below to avoid re-runs of amd smi for trivial rebases
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.ref }}
trigger_event_type: ${{ github.event_name }}