mirror of
https://github.com/tj-actions/branch-names.git
synced 2024-11-23 15:03:51 +08:00
Update README.md
This commit is contained in:
parent
d2d681cfc4
commit
42c7e256cd
22
README.md
22
README.md
@ -25,23 +25,31 @@ Get branch or tag information without the `/ref/*` prefix
|
||||
## Usage
|
||||
|
||||
```yaml
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- main
|
||||
pull_request:
|
||||
branches:
|
||||
- main
|
||||
|
||||
...
|
||||
steps:
|
||||
- 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.
|
||||
|
||||
- name: Current branch name
|
||||
if: github.event_name == 'pull_request'
|
||||
run: |
|
||||
echo "${{ steps.branch-name.outputs.current_branch }}"
|
||||
# Outputs: "feature/test" the current PR branch.
|
||||
```
|
||||
|
||||
## Examples
|
||||
|
Loading…
Reference in New Issue
Block a user