Update README.md

This commit is contained in:
Tonye Jack 2020-12-11 10:18:40 -05:00 committed by GitHub
parent 325ee91404
commit c8da2ee9ad
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -17,12 +17,12 @@ Get branch information without the `/ref/heads` prefix
- name: Get Head Ref branch name
if: github.event_name == 'pull_request'
run: |
echo "${{ steps.branch-name.outputs.head_ref_branch }}"
echo "${{ steps.branch-name.outputs.head_ref_branch }}" # Outputs: "feature/test"
- name: Get Base Ref branch name
if: github.event_name == 'pull_request'
run: |
echo "${{ steps.branch-name.outputs.base_ref_branch }}"
echo "${{ steps.branch-name.outputs.base_ref_branch }}" # Outputs: "1/merge"
```