Unverified Commit dde6c427 authored by Yih-Dar's avatar Yih-Dar Committed by GitHub
Browse files

Fix AMD push CI not triggered (#28029)



fix
Co-authored-by: default avatarydshieh <ydshieh@users.noreply.github.com>
parent 73de5108
...@@ -18,7 +18,7 @@ on: ...@@ -18,7 +18,7 @@ on:
jobs: jobs:
run_amd_ci: run_amd_ci:
name: AMD mi210 name: AMD mi210
if: (cancelled() != true) && ((github.event_name == 'push') && (github.ref_name == 'main' || startsWith(github.ref_name, 'run_amd_push_ci_caller'))) if: (cancelled() != true) && ((github.event_name == 'workflow_run') || ((github.event_name == 'push') && startsWith(github.ref_name, 'run_amd_push_ci_caller')))
uses: ./.github/workflows/self-push-amd.yml uses: ./.github/workflows/self-push-amd.yml
with: with:
gpu_flavor: mi210 gpu_flavor: mi210
......
...@@ -18,7 +18,7 @@ on: ...@@ -18,7 +18,7 @@ on:
jobs: jobs:
run_amd_ci: run_amd_ci:
name: AMD mi250 name: AMD mi250
if: (cancelled() != true) && ((github.event_name == 'push') && (github.ref_name == 'main' || startsWith(github.ref_name, 'run_amd_push_ci_caller'))) if: (cancelled() != true) && ((github.event_name == 'workflow_run') || ((github.event_name == 'push') && startsWith(github.ref_name, 'run_amd_push_ci_caller')))
uses: ./.github/workflows/self-push-amd.yml uses: ./.github/workflows/self-push-amd.yml
with: with:
gpu_flavor: mi250 gpu_flavor: mi250
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment