Update README.md

This commit is contained in:
Tonye Jack 2020-12-11 08:52:52 -05:00 committed by GitHub
parent 7cc8adc4b4
commit 5df11eb7b0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -10,11 +10,19 @@ Get branch information without the `/ref/heads` prefix
- name: Get branch name - name: Get branch name
uses: tj-actions/branch-name@v1 uses: tj-actions/branch-name@v1
id: branch-name id: branch-name
- name: Get brach Names - name: Get Ref brach name
run: |
echo "${{ steps.branch-name.outputs.ref_branch }}" # Outputs: "main"
- name: Get Head Ref branch name
if: github.event_name == 'pull_request'
run: |
echo "${{ steps.branch-name.outputs.head_ref_branch }}"
- name: Get Base Ref branch name
if: github.event_name == 'pull_request'
run: | run: |
echo "${{ steps.branch-name.outputs.base_ref_branch }}" echo "${{ steps.branch-name.outputs.base_ref_branch }}"
echo "${{ steps.branch-name.outputs.head_ref_branch }}"
echo "${{ steps.branch-name.outputs.ref_branch }}"
``` ```