We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 82246ca commit d1bc461Copy full SHA for d1bc461
.github/workflows/pr-flow.yml
@@ -16,5 +16,8 @@ jobs:
16
- name: PR-BUILD
17
run: |
18
cd initial
19
- bash ./gradlew -Pbuild_target=SNAPSHOT clean build jacocoTestReport spotlessApply spotbugsMain
20
- bash ./gradlew -Pbuild_target=SNAPSHOT sonarqube showSonarQubeLink --info
+ export CHANGE_BRANCH=`echo "${{ github.repository }}" | awk -F "/" '{print $2}'`
+ export CHANGE_ID=$(echo $GITHUB_REF | awk 'BEGIN { FS = "/" } ; { print $3 }')
21
+ echo "$CHANGE_ID"
22
+ echo "$CHANGE_BRANCH"
23
+ bash ./gradlew -Pbuild_target=SNAPSHOT clean build jacocoTestReport spotlessApply spotbugsMain
0 commit comments