We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 23ad598 commit e529bc0Copy full SHA for e529bc0
.github/workflows/gradle.yml
@@ -24,6 +24,13 @@ jobs:
24
run: chmod +x gradlew
25
- name: Run automated tests
26
run: ./gradlew test -i
27
+ - name: Collects Pull Request Information
28
+ run: |
29
+ echo "Pull Request's Target Branch: ${TARGET_BRANCH}"
30
+ echo "Pull Request's Working Branch: ${WORKING_BRANCH}"
31
+ env:
32
+ TARGET_BRANCH: ${{ github.base_ref }}
33
+ WORKING_BRANCH: ${{ github.head_ref }}
34
- name: Run Code Style Check
35
run: ./gradlew checkstyleCI -i --debug
36
- name: Run PMD Quality Check
0 commit comments