Skip to content

Commit e529bc0

Browse files
author
Roman Glushko
committed
magento#184 Tried to pass PR information via additional step in the job flow
1 parent 23ad598 commit e529bc0

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

.github/workflows/gradle.yml

+7
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,13 @@ jobs:
2424
run: chmod +x gradlew
2525
- name: Run automated tests
2626
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 }}
2734
- name: Run Code Style Check
2835
run: ./gradlew checkstyleCI -i --debug
2936
- name: Run PMD Quality Check

0 commit comments

Comments
 (0)