Add workflow to run test on schedule (#3076)

pull/3077/head
Jeanne Angeles Franco 3 years ago committed by GitHub
parent d391dc6ab7
commit 8a7b507d41
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -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 }}
Loading…
Cancel
Save