From 12fb43b58991eac609a0f362c9f32129622d604e Mon Sep 17 00:00:00 2001 From: "K. Shankari" Date: Wed, 15 Apr 2020 16:53:37 -0700 Subject: [PATCH] Add a scheduled run to the Github Workflow Actions This will allow us to catch bitrotted changes like https://github.com/e-mission/e-mission-docs/issues/513 or https://github.com/e-mission/e-mission-docs/issues/511 and make it easier for people who don't want to use docker to install --- .github/workflows/test-with-docker.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/test-with-docker.yml b/.github/workflows/test-with-docker.yml index d9008cea1..e38499544 100644 --- a/.github/workflows/test-with-docker.yml +++ b/.github/workflows/test-with-docker.yml @@ -9,6 +9,9 @@ on: branches: [ master ] pull_request: branches: [ master ] + schedule: + # * is a special character in YAML so you have to quote this string + - cron: '5 4 * * 0' # A workflow run is made up of one or more jobs that can run sequentially or in parallel jobs: