From 4b0b725e00c6468294a6f7e9d94da58f9388e046 Mon Sep 17 00:00:00 2001 From: Matthew McGowan Date: Fri, 8 Sep 2023 01:51:42 -0700 Subject: [PATCH] chore: add cron schedule so the runner is in weekly use. Also adds more tags that relate to the required configuration of the runner. --- .github/workflows/hitl/notecard-binary-tests.yml | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) diff --git a/.github/workflows/hitl/notecard-binary-tests.yml b/.github/workflows/hitl/notecard-binary-tests.yml index d7dc05f4..be8a5214 100644 --- a/.github/workflows/hitl/notecard-binary-tests.yml +++ b/.github/workflows/hitl/notecard-binary-tests.yml @@ -4,15 +4,18 @@ on: pull_request: branches: [ master ] workflow_dispatch: + schedule: + # * is a special character in YAML so you have to quote this string + - cron: '45 4 * * 1' # 4.45am every Monday jobs: - # md5srv-test: - # using: ./.github/workflows/md5srv-tests.yml - # runs-on: local + md5srv-test: + using: ./.github/workflows/md5srv-tests.yml + # runs-on: local # required for `act` notecard-binary-test: - # needs: md5srv-test - runs-on: local + needs: md5srv-test + runs-on: [self-hosted, swan, notecard, stlink, notecard-serial, md5srv, notehub-client] defaults: run: shell: bash