From bf7511907d7d4b40f06f514d981af0052c919dc1 Mon Sep 17 00:00:00 2001 From: Kevin Breit Date: Mon, 12 Apr 2021 11:46:30 -0500 Subject: [PATCH] Run CI pipeline nightly (#232) Change CI to run every night at 10 PM central --- .github/workflows/ansible-test.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ansible-test.yml b/.github/workflows/ansible-test.yml index bf3d8ee3..9005df42 100644 --- a/.github/workflows/ansible-test.yml +++ b/.github/workflows/ansible-test.yml @@ -1,6 +1,8 @@ name: CI on: -- pull_request + pull_request: + schedule: + - cron: '0 22 * * *' jobs: sanity: @@ -21,4 +23,4 @@ jobs: run: pip install https://github.com/ansible/ansible/archive/devel.tar.gz --disable-pip-version-check - name: Run sanity tests - run: ansible-test sanity --docker -v --color --python 3.6 \ No newline at end of file + run: ansible-test sanity --docker -v --color