mirror of
https://github.com/tj-actions/branch-names.git
synced 2024-11-23 18:53:50 +08:00
Upgraded from v3.1 -> v3.2
This commit is contained in:
parent
ae7cf1163a
commit
14bab64a11
11
HISTORY.md
11
HISTORY.md
@ -1,11 +1,13 @@
|
||||
# Changelog
|
||||
|
||||
## [Unreleased](https://github.com/tj-actions/branch-names/tree/HEAD)
|
||||
## [v3.2](https://github.com/tj-actions/branch-names/tree/v3.2) (2021-04-25)
|
||||
|
||||
[Full Changelog](https://github.com/tj-actions/branch-names/compare/v3.1...HEAD)
|
||||
[Full Changelog](https://github.com/tj-actions/branch-names/compare/v3.1...v3.2)
|
||||
|
||||
**Merged pull requests:**
|
||||
|
||||
- Added support for stripping tag prefix [\#25](https://github.com/tj-actions/branch-names/pull/25) ([jackton1](https://github.com/jackton1))
|
||||
- Upgraded to v3.1 [\#24](https://github.com/tj-actions/branch-names/pull/24) ([jackton1](https://github.com/jackton1))
|
||||
- Upgraded to v3 [\#22](https://github.com/tj-actions/branch-names/pull/22) ([jackton1](https://github.com/jackton1))
|
||||
|
||||
## [v3.1](https://github.com/tj-actions/branch-names/tree/v3.1) (2021-04-24)
|
||||
@ -43,7 +45,6 @@
|
||||
- Added support for detecting the default branch [\#11](https://github.com/tj-actions/branch-names/pull/11) ([jackton1](https://github.com/jackton1))
|
||||
- Update README.md [\#9](https://github.com/tj-actions/branch-names/pull/9) ([jackton1](https://github.com/jackton1))
|
||||
- Upgraded to v2.1 [\#8](https://github.com/tj-actions/branch-names/pull/8) ([jackton1](https://github.com/jackton1))
|
||||
- Update README.md [\#1](https://github.com/tj-actions/branch-names/pull/1) ([jackton1](https://github.com/jackton1))
|
||||
|
||||
## [v2.1](https://github.com/tj-actions/branch-names/tree/v2.1) (2021-02-08)
|
||||
|
||||
@ -78,6 +79,10 @@
|
||||
|
||||
[Full Changelog](https://github.com/tj-actions/branch-names/compare/c5308c6d98ef23ee7f672f6fc3aa92acd7ad611d...v1)
|
||||
|
||||
**Merged pull requests:**
|
||||
|
||||
- Update README.md [\#1](https://github.com/tj-actions/branch-names/pull/1) ([jackton1](https://github.com/jackton1))
|
||||
|
||||
|
||||
|
||||
\* *This Changelog was automatically generated by [github_changelog_generator](https://github.com/github-changelog-generator/github-changelog-generator)*
|
||||
|
@ -25,7 +25,7 @@ Get branch or tag information without the `/ref/*` prefix
|
||||
- uses: actions/checkout@v2
|
||||
- name: Get branch names
|
||||
id: branch-name
|
||||
uses: tj-actions/branch-names@v3.1
|
||||
uses: tj-actions/branch-names@v3.2
|
||||
```
|
||||
|
||||
## Examples
|
||||
@ -36,7 +36,7 @@ Get branch or tag information without the `/ref/*` prefix
|
||||
- uses: actions/checkout@v2
|
||||
- name: Get branch names
|
||||
id: branch-name
|
||||
uses: tj-actions/branch-names@v3.1
|
||||
uses: tj-actions/branch-names@v3.2
|
||||
|
||||
- name: Running on the default branch.
|
||||
if: steps.branch-name.outputs.is_default == 'true'
|
||||
@ -101,7 +101,7 @@ on:
|
||||
steps:
|
||||
- name: Get branch names.
|
||||
id: branch-names
|
||||
uses: tj-actions/branch-names@v3.1
|
||||
uses: tj-actions/branch-names@v3.2
|
||||
- uses: actions/checkout@v2
|
||||
with:
|
||||
ref: ${{ steps.branch-names.outputs.base_ref_branch }}
|
||||
|
Loading…
Reference in New Issue
Block a user