ROSA Daily Scheduled Run #46
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: ROSA Scheduled Create | |
on: | |
schedule: | |
- cron: '0 5 * * 1-5' # Runs At 05:00 UTC on every day-of-week from Monday through Friday. | |
jobs: | |
checkout: | |
name: ROSA Scheduled Create cluster | |
runs-on: ubuntu-latest | |
steps: | |
- run: gh workflow run -R keycloak/keycloak-benchmark rosa-cluster-create.yml | |
if: github.event_name != 'schedule' || github.repository == 'keycloak/keycloak-benchmark' | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |