From 893d5772847c2d5945be7e351081336f9e0f0332 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Sebastian=20Ho=C3=9F?= Date: Sun, 10 Jul 2022 07:55:13 +0200 Subject: [PATCH] run qodana only on demand That action seems to be running forever (> 5 hours) since the last update. --- .github/workflows/qodana.yml | 23 +---------------------- 1 file changed, 1 insertion(+), 22 deletions(-) diff --git a/.github/workflows/qodana.yml b/.github/workflows/qodana.yml index 81e14768..296d272b 100644 --- a/.github/workflows/qodana.yml +++ b/.github/workflows/qodana.yml @@ -1,27 +1,6 @@ name: Qodana Scan on: - push: - branches: [ main ] - paths: - - .github/workflows/qodana.yml - - pom.xml - - yosql-benchmarks/** - - yosql-codegen/** - - yosql-examples/** - - yosql-internals/** - - yosql-models/** - - yosql-tooling/** - pull_request: - branches: [ main ] - paths: - - .github/workflows/qodana.yml - - pom.xml - - yosql-benchmarks/** - - yosql-codegen/** - - yosql-examples/** - - yosql-internals/** - - yosql-models/** - - yosql-tooling/** + workflow_dispatch: jobs: build: name: Build -- 2.11.4.GIT