diff --git a/.github/workflows/trigger-test-cron.yml b/.github/workflows/trigger-test-cron.yml new file mode 100644 index 0000000000..61f315bfd9 --- /dev/null +++ b/.github/workflows/trigger-test-cron.yml @@ -0,0 +1,18 @@ +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 */2 * * *' + +jobs: + trigger-test: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v3 + + - name: Trigger test workflow + run: gh workflow run test.yml + env: + GITHUB_TOKEN: ${{ github.token }}