From dc93560acdb373067f1a0e42b3a9a6a6f8626643 Mon Sep 17 00:00:00 2001 From: Marcos Tischer Vallim Date: Fri, 1 May 2026 18:57:44 -0300 Subject: [PATCH] ci: update gate workflow Signed-off-by: Marcos Tischer Vallim --- .github/workflows/cd-release.yml | 8 +------- .github/workflows/quality.yml | 13 +++++++++++++ 2 files changed, 14 insertions(+), 7 deletions(-) create mode 100644 .github/workflows/quality.yml diff --git a/.github/workflows/cd-release.yml b/.github/workflows/cd-release.yml index 54e0a53..83f36da 100644 --- a/.github/workflows/cd-release.yml +++ b/.github/workflows/cd-release.yml @@ -17,14 +17,8 @@ jobs: uses: ./.github/workflows/ci-maven.yml secrets: inherit - gates: - needs: ci - if: success() - uses: ./.github/workflows/ci-gates.yml - secrets: inherit - release: - needs: gates + needs: ci uses: ./.github/workflows/cd-deploy.yml secrets: inherit with: diff --git a/.github/workflows/quality.yml b/.github/workflows/quality.yml new file mode 100644 index 0000000..ace2c9a --- /dev/null +++ b/.github/workflows/quality.yml @@ -0,0 +1,13 @@ +name: SonarQube + +on: + push: + branches: + - master + pull_request: + types: [opened, synchronize, reopened] + +jobs: + gates: + uses: ./.github/workflows/ci-gates.yml + secrets: inherit \ No newline at end of file