Skip to content

Commit 7b8a4d9

Browse files
authored
Create rocm_ci_caller.yml to trigger release branch PSDB (#699)
2 parents c521e70 + 2387a8f commit 7b8a4d9

File tree

1 file changed

+24
-0
lines changed

1 file changed

+24
-0
lines changed
Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
name: ROCm CI Caller
2+
3+
on:
4+
pull_request:
5+
branches: [release/rocm-rel-6.4]
6+
types: [opened, reopened, synchronize, ready_for_review]
7+
8+
workflow_dispatch:
9+
issue_comment:
10+
types: [created]
11+
12+
jobs:
13+
call-workflow:
14+
if: ${{ github.event_name != 'issue_comment' || github.event.comment.body == '!verify' }}
15+
uses: AMD-ROCm-Internal/rocm_ci_infra/.github/workflows/rocm_ci.yml@mainline
16+
secrets: inherit
17+
with:
18+
input_sha: ${{ github.event_name == 'pull_request' && github.event.pull_request.head.sha || github.sha }}
19+
input_pr_num: ${{ github.event_name == 'pull_request' && github.event.pull_request.number || 0 }}
20+
input_pr_url: ${{ github.event_name == 'pull_request' && github.event.pull_request.html_url || '' }}
21+
input_pr_title: ${{ github.event_name == 'pull_request' && github.event.pull_request.title || '' }}
22+
repository_name: ${{ github.repository }}
23+
base_ref: ${{ github.event_name == 'pull_request' && github.base_ref || github.ref }}
24+
trigger_event_type: ${{ github.event_name }}

0 commit comments

Comments
 (0)