mirror of
https://github.com/tj-actions/branch-names.git
synced 2024-11-24 04:03:50 +08:00
Merge pull request #154 from tj-actions/upgrade-to-v5.4
Upgraded to v5.4
This commit is contained in:
commit
d7a98ead82
17
HISTORY.md
17
HISTORY.md
@ -1,5 +1,22 @@
|
|||||||
# Changelog
|
# Changelog
|
||||||
|
|
||||||
|
## [Unreleased](https://github.com/tj-actions/branch-names/tree/HEAD)
|
||||||
|
|
||||||
|
[Full Changelog](https://github.com/tj-actions/branch-names/compare/v5.4...HEAD)
|
||||||
|
|
||||||
|
**Fixed bugs:**
|
||||||
|
|
||||||
|
- \[BUG\] is\_default always returns true [\#151](https://github.com/tj-actions/branch-names/issues/151)
|
||||||
|
|
||||||
|
## [v5.4](https://github.com/tj-actions/branch-names/tree/v5.4) (2022-07-01)
|
||||||
|
|
||||||
|
[Full Changelog](https://github.com/tj-actions/branch-names/compare/v5.3...v5.4)
|
||||||
|
|
||||||
|
**Merged pull requests:**
|
||||||
|
|
||||||
|
- fix: bug with is\_default boolean output [\#153](https://github.com/tj-actions/branch-names/pull/153) ([jackton1](https://github.com/jackton1))
|
||||||
|
- Upgraded to v5.3 [\#152](https://github.com/tj-actions/branch-names/pull/152) ([jackton1](https://github.com/jackton1))
|
||||||
|
|
||||||
## [v5.3](https://github.com/tj-actions/branch-names/tree/v5.3) (2022-06-22)
|
## [v5.3](https://github.com/tj-actions/branch-names/tree/v5.3) (2022-06-22)
|
||||||
|
|
||||||
[Full Changelog](https://github.com/tj-actions/branch-names/compare/v5.2...v5.3)
|
[Full Changelog](https://github.com/tj-actions/branch-names/compare/v5.2...v5.3)
|
||||||
|
10
README.md
10
README.md
@ -38,7 +38,7 @@ on:
|
|||||||
steps:
|
steps:
|
||||||
- name: Get branch name
|
- name: Get branch name
|
||||||
id: branch-name
|
id: branch-name
|
||||||
uses: tj-actions/branch-names@v5.3
|
uses: tj-actions/branch-names@v5.4
|
||||||
|
|
||||||
- name: Running on the default branch.
|
- name: Running on the default branch.
|
||||||
if: steps.branch-name.outputs.is_default == 'true'
|
if: steps.branch-name.outputs.is_default == 'true'
|
||||||
@ -104,7 +104,7 @@ on:
|
|||||||
steps:
|
steps:
|
||||||
- name: Get branch names
|
- name: Get branch names
|
||||||
id: branch-name
|
id: branch-name
|
||||||
uses: tj-actions/branch-names@v5.3
|
uses: tj-actions/branch-names@v5.4
|
||||||
|
|
||||||
- name: Current branch name
|
- name: Current branch name
|
||||||
run: |
|
run: |
|
||||||
@ -146,7 +146,7 @@ on:
|
|||||||
steps:
|
steps:
|
||||||
- name: Get branch names
|
- name: Get branch names
|
||||||
id: branch-name
|
id: branch-name
|
||||||
uses: tj-actions/branch-names@v5.3
|
uses: tj-actions/branch-names@v5.4
|
||||||
|
|
||||||
- name: Current branch name
|
- name: Current branch name
|
||||||
run: |
|
run: |
|
||||||
@ -198,7 +198,7 @@ on:
|
|||||||
steps:
|
steps:
|
||||||
- name: Get branch names
|
- name: Get branch names
|
||||||
id: branch-name
|
id: branch-name
|
||||||
uses: tj-actions/branch-names@v5.3
|
uses: tj-actions/branch-names@v5.4
|
||||||
|
|
||||||
- name: Running on a tag branch.
|
- name: Running on a tag branch.
|
||||||
if: steps.branch-name.outputs.is_tag == 'true'
|
if: steps.branch-name.outputs.is_tag == 'true'
|
||||||
@ -227,7 +227,7 @@ on:
|
|||||||
steps:
|
steps:
|
||||||
- name: Get branch names.
|
- name: Get branch names.
|
||||||
id: branch-names
|
id: branch-names
|
||||||
uses: tj-actions/branch-names@v5.3
|
uses: tj-actions/branch-names@v5.4
|
||||||
- uses: actions/checkout@v2
|
- uses: actions/checkout@v2
|
||||||
with:
|
with:
|
||||||
ref: ${{ steps.branch-names.outputs.head_ref_branch }}
|
ref: ${{ steps.branch-names.outputs.head_ref_branch }}
|
||||||
|
Loading…
Reference in New Issue
Block a user