From f04e181921b2b44185731ff4489ff9c21afd0364 Mon Sep 17 00:00:00 2001 From: Frank Date: Tue, 24 Sep 2024 12:11:22 +0200 Subject: [PATCH] Attempt to depuplicate action runs, add schedule for daily qodana scans (#66) * Attempt to depuplicate action runs, add schedule for daily qodana scans * disable schedule --- .github/workflows/build.yml | 6 +++--- .github/workflows/qodana.yml | 10 ++++++---- 2 files changed, 9 insertions(+), 7 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 8869f37a..43cb136e 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -1,10 +1,10 @@ name: build on: + workflow_dispatch: push: - branches: [ "main" ] + branches: + - main pull_request: - branches: [ "main" ] - workflow_dispatch: env: CARGO_TERM_COLOR: always diff --git a/.github/workflows/qodana.yml b/.github/workflows/qodana.yml index 107234b1..52824e16 100644 --- a/.github/workflows/qodana.yml +++ b/.github/workflows/qodana.yml @@ -1,10 +1,12 @@ name: Qodana on: - workflow_dispatch: - pull_request: + #schedule: + # - cron: "30 1 * * *" push: - branches: # Specify your branches here - - main # The 'main' branch + branches: + - main + pull_request: + workflow_dispatch: jobs: qodana: