Update README.md

This commit is contained in:
Tonye Jack 2021-06-01 10:01:16 -04:00 committed by GitHub
parent 9bc993e811
commit 64a68dc774
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -30,6 +30,18 @@ Get branch or tag information without the `/ref/*` prefix
- name: Get branch names
id: branch-name
uses: tj-actions/branch-names@v4.3
- name: Current branch name
if: github.event_name == 'pull_request'
run: |
echo "${{ steps.branch-name.outputs.current_branch }}"
# Outputs: "feature/test" current PR branch.
- name: Current branch name
if: github.event_name == 'push'
run: |
echo "${{ steps.branch-name.outputs.current_branch }}"
# Outputs: "main" the branch that triggered the push event.
```
## Examples