mirror of
https://github.com/tj-actions/branch-names.git
synced 2024-11-23 23:43:51 +08:00
Merge pull request #16 from tj-actions/updated-readme
This commit is contained in:
commit
d8901557b4
12
README.md
12
README.md
@ -27,16 +27,16 @@ Get branch information without the `/ref/*` prefix
|
|||||||
uses: tj-actions/branch-names@v2.2
|
uses: tj-actions/branch-names@v2.2
|
||||||
|
|
||||||
- name: Running on the default branch.
|
- name: Running on the default branch.
|
||||||
if: ${{ steps.branch-name.outputs.is_default }}
|
if: steps.branch-name.outputs.is_default == 'true'
|
||||||
run: |
|
run: |
|
||||||
echo "Running on default: ${{ steps.branch-name.outputs.is_default }}"
|
echo "Running on default: ${{ steps.branch-name.outputs.current_branch }}"
|
||||||
# Outputs: "Running on default: true".
|
# Outputs: "Running on default: main".
|
||||||
|
|
||||||
- name: Running on a pull request branch.
|
- name: Running on a pull request branch.
|
||||||
if: "!${{ steps.branch-name.outputs.is_default }}"
|
if: steps.branch-name.outputs.is_default == 'false'
|
||||||
run: |
|
run: |
|
||||||
echo "Running on default: ${{ steps.branch-name.outputs.is_default }}"
|
echo "Running on pr: ${{ steps.branch-name.outputs.current_branch }}"
|
||||||
# Outputs: "Running on default: false".
|
# Outputs: "Running on pr: feature/test".
|
||||||
|
|
||||||
- name: Current branch name
|
- name: Current branch name
|
||||||
if: github.event_name == 'pull_request'
|
if: github.event_name == 'pull_request'
|
||||||
|
Loading…
Reference in New Issue
Block a user