mirror of
https://github.com/tj-actions/branch-names.git
synced 2024-11-23 19:33:52 +08:00
Update README.md
This commit is contained in:
parent
9bc993e811
commit
64a68dc774
12
README.md
12
README.md
@ -30,6 +30,18 @@ Get branch or tag information without the `/ref/*` prefix
|
|||||||
- name: Get branch names
|
- name: Get branch names
|
||||||
id: branch-name
|
id: branch-name
|
||||||
uses: tj-actions/branch-names@v4.3
|
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
|
## Examples
|
||||||
|
Loading…
Reference in New Issue
Block a user