mirror of
https://github.com/tj-actions/branch-names.git
synced 2024-11-23 17:13:51 +08:00
Update README.md
This commit is contained in:
parent
dcd6890824
commit
15b5e1609f
@ -14,6 +14,7 @@ Get branch information without the `/ref/*` prefix
|
||||
| base_ref_branch | `string` | `main` | The target branch of a pull request |
|
||||
| head_ref_branch | `string` | `feature/test` | The source branch of a pull request |
|
||||
| ref_branch | `string` | `1/merge` *OR* `main` | The branch that triggered the workflow run |
|
||||
| tag | `string` | `v0.0.1` *OR* `0.0.1` | The tag that triggered the workflow run |
|
||||
|
||||
|
||||
## Usage
|
||||
@ -78,6 +79,11 @@ Get branch information without the `/ref/*` prefix
|
||||
echo "${{ steps.branch-name.outputs.base_ref_branch }}"
|
||||
# Outputs: "main" for main <- PR branch.
|
||||
|
||||
- name: Get the current tag
|
||||
if: startsWith(github.ref, 'refs/tags/')
|
||||
run: |
|
||||
echo "${{ steps.branch-name.outputs.tag }}"
|
||||
# Outputs: "v0.0.1" OR "0.0.1"
|
||||
```
|
||||
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user