Skip to content

Commit

Permalink
Upgraded from v5.6 -> v6
Browse files Browse the repository at this point in the history
  • Loading branch information
jackton1 committed Aug 27, 2022
1 parent a787f0f commit 9920a39
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 5 deletions.
14 changes: 14 additions & 0 deletions HISTORY.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,19 @@
# Changelog

## [v6](https://github.com/tj-actions/branch-names/tree/v6) (2022-08-27)

[Full Changelog](https://github.com/tj-actions/branch-names/compare/v5.6...v6)

**Implemented enhancements:**

- \[Feature\] determine branch-name when tag is pushed/triggers workflow [\#158](https://github.com/tj-actions/branch-names/issues/158)

**Merged pull requests:**

- Updated README.md [\#169](https://github.com/tj-actions/branch-names/pull/169) ([jackton1](https://github.com/jackton1))
- feat: add support for setting the base\_ref branch of a tag [\#168](https://github.com/tj-actions/branch-names/pull/168) ([jackton1](https://github.com/jackton1))
- Upgraded to v5.6 [\#167](https://github.com/tj-actions/branch-names/pull/167) ([jackton1](https://github.com/jackton1))

## [v5.6](https://github.com/tj-actions/branch-names/tree/v5.6) (2022-08-27)

[Full Changelog](https://github.com/tj-actions/branch-names/compare/v5.5...v5.6)
Expand Down
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ on:
steps:
- name: Get branch name
id: branch-name
uses: tj-actions/branch-names@v5.6
uses: tj-actions/branch-names@v6

- name: Running on the default branch.
if: steps.branch-name.outputs.is_default == 'true'
Expand Down Expand Up @@ -104,7 +104,7 @@ on:
steps:
- name: Get branch names
id: branch-name
uses: tj-actions/branch-names@v5.6
uses: tj-actions/branch-names@v6

- name: Current branch name
run: |
Expand Down Expand Up @@ -146,7 +146,7 @@ on:
steps:
- name: Get branch names
id: branch-name
uses: tj-actions/branch-names@v5.6
uses: tj-actions/branch-names@v6

- name: Current branch name
run: |
Expand Down Expand Up @@ -198,7 +198,7 @@ on:
steps:
- name: Get branch names
id: branch-name
uses: tj-actions/branch-names@v5.6
uses: tj-actions/branch-names@v6

- name: Running on a tag branch.
if: steps.branch-name.outputs.is_tag == 'true'
Expand Down Expand Up @@ -227,7 +227,7 @@ on:
steps:
- name: Get branch names.
id: branch-names
uses: tj-actions/branch-names@v5.6
uses: tj-actions/branch-names@v6
- uses: actions/checkout@v2
with:
ref: ${{ steps.branch-names.outputs.head_ref_branch }}
Expand Down

0 comments on commit 9920a39

Please sign in to comment.