From 6bded95c90e37ed75d713bf806354171e4721557 Mon Sep 17 00:00:00 2001 From: Willem Melching Date: Mon, 12 Oct 2020 15:14:03 +0200 Subject: [PATCH] Build sim container once an hour --- .github/workflows/sim_tests.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/sim_tests.yaml b/.github/workflows/sim_tests.yaml index eaf8d335..f3f626b8 100644 --- a/.github/workflows/sim_tests.yaml +++ b/.github/workflows/sim_tests.yaml @@ -1,14 +1,14 @@ name: simulator on: - push: - pull_request: + schedule: + - cron: '0 * * * *' jobs: docker_build: name: build container runs-on: ubuntu-16.04 timeout-minutes: 50 - if: github.repository == 'commaai/openpilot' + if: github.event_name == 'schedule' && github.repository == 'commaai/openpilot' steps: - uses: actions/checkout@v2 with: