From 1aff40dc23cb9a2ba510ce55922fc620294ff142 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jos=C3=A9=20Pedro=20Sousa?= Date: Tue, 19 Dec 2023 18:05:52 +0000 Subject: [PATCH] wrapping up --- .github/workflows/nightly.yaml | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/.github/workflows/nightly.yaml b/.github/workflows/nightly.yaml index 560699d..456e51e 100644 --- a/.github/workflows/nightly.yaml +++ b/.github/workflows/nightly.yaml @@ -1,9 +1,11 @@ name: Nightly drift test on: - pull_request: - paths: - - 'vite-hardhat/**' + # Giving ourselves a way to trigger this manually + workflow_dispatch: + schedule: + # Run a nightly release at 2 AM UTC + - cron: '0 2 * * *' jobs: setup: @@ -26,7 +28,7 @@ jobs: VERSIONS='${{ steps.versions_step.outputs.versionArray }}' echo "Versions for Matrix: $VERSIONS" MATRIX=$(echo "$VERSIONS" | jq -c '{versions: .} | .versions | to_entries | map({key: .key, value: (.value | sub("^v"; ""))})') - echo "::set-output name=matrix::{\"include\":$MATRIX}" + echo "::set-output name=matrix::{\"include\":$MATRIX}" test-drift-vite-hardhat: needs: setup