Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 1 addition & 7 deletions .github/workflows/cd-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
13 changes: 13 additions & 0 deletions .github/workflows/quality.yml
Original file line number Diff line number Diff line change
@@ -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
Loading