From edb5498cc0cc62af7bf111cdbd6852d231b7d36a Mon Sep 17 00:00:00 2001 From: claire labry Date: Fri, 17 Mar 2023 11:04:34 -0500 Subject: [PATCH] Remove Test cron (#3089) * bump to 20 runs of test workflows per hour * remove test cron --- .github/workflows/trigger-test-cron.yml | 22 ---------------------- 1 file changed, 22 deletions(-) delete mode 100644 .github/workflows/trigger-test-cron.yml diff --git a/.github/workflows/trigger-test-cron.yml b/.github/workflows/trigger-test-cron.yml deleted file mode 100644 index bc2614d04f..0000000000 --- a/.github/workflows/trigger-test-cron.yml +++ /dev/null @@ -1,22 +0,0 @@ -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 }}