From 4727d6a408b28f028de9dfbbc20837d357eec33c Mon Sep 17 00:00:00 2001 From: Leonardo Mauro Date: Tue, 17 Dec 2024 08:04:39 -0300 Subject: [PATCH] feat: add scheduler and manual trigger (#8) --- .github/workflows/continuous-integration.yml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/.github/workflows/continuous-integration.yml b/.github/workflows/continuous-integration.yml index 2fe4e46..012bb35 100644 --- a/.github/workflows/continuous-integration.yml +++ b/.github/workflows/continuous-integration.yml @@ -1,8 +1,11 @@ name: "Continuous Integration" - run-name: Running tests on "${{ github.ref }}" by "${{ github.actor }}" -on: push +on: + push: + workflow_dispatch: + schedule: + - cron: "0 12 1 * *" jobs: # Run pre-commit hooks