You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
boundary/.github/workflows/trigger-test-cron.yml

23 lines
530 B

name: trigger-test-cron
# This workflow will run every two hours to determine the frequency of test failures
on:
schedule:
# * is a special character in YAML so you have to quote this string
- cron: '0 * * * *'
jobs:
trigger-test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Trigger test workflow
run: |
run=5
for i in $(seq $run); do
gh workflow run test.yml
done
env:
GITHUB_TOKEN: ${{ github.token }}