From 859712a76c7cecd3f1b94d584af33d2b1d0222dd Mon Sep 17 00:00:00 2001 From: th3maid <36008397+th3maid@users.noreply.github.com> Date: Tue, 3 Oct 2023 21:07:44 -0300 Subject: [PATCH] update rust workflow to runs at midnight every day --- .github/workflows/rust.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml index e07c5bb..2e8dc46 100644 --- a/.github/workflows/rust.yml +++ b/.github/workflows/rust.yml @@ -2,9 +2,11 @@ name: Rust on: push: - branches: [ "develop", "build" ] + branches: [ "master", "develop", "build" ] pull_request: branches: [ "master", "develop", "build" ] + schedule: + - cron: '0 0 * * *' # This schedule runs at midnight every day env: CARGO_TERM_COLOR: always @@ -16,7 +18,7 @@ jobs: steps: - uses: actions/checkout@v3 - - name: Install Deps + - name: Install Depedencies run: | sudo mkdir /var/maid sudo cp maid_lists/ /var/maid -R