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
4 changes: 3 additions & 1 deletion .github/workflows/cd-integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,9 @@ on:
- develop
types:
- closed
- synchronize
push:
branches:
- develop

permissions:
contents: write
Expand Down
15 changes: 9 additions & 6 deletions .github/workflows/cd-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,9 @@ on:
- master
types:
- closed
push:
branches:
- develop

permissions:
contents: write
Expand All @@ -17,9 +20,9 @@ jobs:
uses: ./.github/workflows/ci-maven.yml
secrets: inherit

# release:
# needs: ci
# uses: ./.github/workflows/cd-deploy.yml
# secrets: inherit
# with:
# environment: release
release:
needs: ci
uses: ./.github/workflows/cd-deploy.yml
secrets: inherit
with:
environment: release
4 changes: 3 additions & 1 deletion .github/workflows/cd-snapshot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,9 @@ on:
- release/**
types:
- closed
- synchronize
push:
branches:
- release/**

permissions:
contents: write
Expand Down
17 changes: 5 additions & 12 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,20 +41,13 @@ jobs:
echo "labels=$LABELS" >> $GITHUB_OUTPUT
echo "target-branch=release/$VERSION" >> $GITHUB_OUTPUT

# ci:
# needs: variables
# uses: ./.github/workflows/ci-maven.yml
# secrets: inherit

# gates:
# needs: ci
# if: success()
# uses: ./.github/workflows/ci-gates.yml
# secrets: inherit
ci:
needs: variables
uses: ./.github/workflows/ci-maven.yml
secrets: inherit

pull-request:
# needs: [gates, variables]
needs: variables
needs: [ci, variables]
if: success()
uses: ./.github/workflows/ci-pull-request.yml
secrets: inherit
Expand Down