cicd: Fix calculating opencga branch in pull request approve workflow… #306
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Merge/Push in java-common-libs develop branch | |
on: | |
push: | |
branches: | |
- develop | |
- release-* | |
jobs: | |
build: | |
uses: ./.github/workflows/build-java-app-workflow.yml | |
test: | |
uses: ./.github/workflows/test-analysis.yml | |
needs: build | |
secrets: inherit | |
deploy-maven: | |
uses: ./.github/workflows/deploy-maven-repository-workflow.yml | |
needs: test | |
secrets: inherit |