mirror of
https://github.com/tj-actions/branch-names.git
synced 2024-12-27 14:27:59 +08:00
Merge pull request #1 from tj-actions/feature/test
This commit is contained in:
commit
325ee91404
14
README.md
14
README.md
@ -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 }}"
|
|
||||||
```
|
```
|
||||||
|
|
||||||
|
|
||||||
|
@ -40,7 +40,7 @@ runs:
|
|||||||
export REF=${{ inputs.ref }}
|
export REF=${{ inputs.ref }}
|
||||||
echo "::set-output name=base_ref_branch::${BASE_REF/refs\/heads\//}"
|
echo "::set-output name=base_ref_branch::${BASE_REF/refs\/heads\//}"
|
||||||
echo "::set-output name=head_ref_branch::${HEAD_REF/refs\/heads\//}"
|
echo "::set-output name=head_ref_branch::${HEAD_REF/refs\/heads\//}"
|
||||||
echo "::set-output name=ref_branch::${REF/refs\/heads\//}"
|
echo "::set-output name=ref_branch::${REF/refs\/pull\//}"
|
||||||
shell: bash
|
shell: bash
|
||||||
branding:
|
branding:
|
||||||
icon: git-branch
|
icon: git-branch
|
||||||
|
Loading…
x
Reference in New Issue
Block a user