Self-hosted runner (AMD scheduled CI caller) #281
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Self-hosted runner (AMD scheduled CI caller) | |
on: | |
schedule: | |
- cron: "17 2 * * *" | |
jobs: | |
run_scheduled_amd_ci: | |
name: Trigger Scheduled AMD CI | |
runs-on: ubuntu-22.04 | |
if: ${{ always() }} | |
steps: | |
- name: Trigger scheduled AMD CI via workflow_run | |
run: echo "Trigger scheduled AMD CI via workflow_run" |