Skip to content

Commit

Permalink
Upgraded from v4.1 -> v4.2
Browse files Browse the repository at this point in the history
  • Loading branch information
jackton1 committed May 25, 2021
1 parent f107226 commit 58eb8e8
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 3 deletions.
14 changes: 14 additions & 0 deletions HISTORY.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,19 @@
# Changelog

## [v4.2](https://github.com/tj-actions/branch-names/tree/v4.2) (2021-05-25)

[Full Changelog](https://github.com/tj-actions/branch-names/compare/v4.1...v4.2)

**Fixed bugs:**

- \[BUG\] No current\_branch on release. [\#50](https://github.com/tj-actions/branch-names/issues/50)

**Merged pull requests:**

- Added test for current\_branch on release actions [\#52](https://github.com/tj-actions/branch-names/pull/52) ([jackton1](https://github.com/jackton1))
- Set the current\_branch for release actions [\#51](https://github.com/tj-actions/branch-names/pull/51) ([jackton1](https://github.com/jackton1))
- Upgraded to v4.1 [\#49](https://github.com/tj-actions/branch-names/pull/49) ([jackton1](https://github.com/jackton1))

## [v4.1](https://github.com/tj-actions/branch-names/tree/v4.1) (2021-05-24)

[Full Changelog](https://github.com/tj-actions/branch-names/compare/v4...v4.1)
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,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@v4.1
uses: tj-actions/branch-names@v4.2
```

## Examples
Expand All @@ -42,7 +42,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@v4.1
uses: tj-actions/branch-names@v4.2

- name: Running on the default branch.
if: steps.branch-name.outputs.is_default == 'true'
Expand Down Expand Up @@ -107,7 +107,7 @@ on:
steps:
- name: Get branch names.
id: branch-names
uses: tj-actions/branch-names@v4.1
uses: tj-actions/branch-names@v4.2
- uses: actions/checkout@v2
with:
ref: ${{ steps.branch-names.outputs.base_ref_branch }}
Expand Down

0 comments on commit 58eb8e8

Please sign in to comment.