Skip to content

Commit

Permalink
Merge pull request #165 from tj-actions/upgrade-to-v5.5
Browse files Browse the repository at this point in the history
  • Loading branch information
jackton1 committed Aug 21, 2022
2 parents a704b89 + c46020f commit a95070d
Show file tree
Hide file tree
Showing 2 changed files with 28 additions and 16 deletions.
34 changes: 23 additions & 11 deletions HISTORY.md
Original file line number Diff line number Diff line change
@@ -1,13 +1,29 @@
# Changelog

## [Unreleased](https://github.com/tj-actions/branch-names/tree/HEAD)
## [v5.5](https://github.com/tj-actions/branch-names/tree/v5.5) (2022-08-21)

[Full Changelog](https://github.com/tj-actions/branch-names/compare/v5.4...HEAD)
[Full Changelog](https://github.com/tj-actions/branch-names/compare/v5.4...v5.5)

**Fixed bugs:**

- \[BUG\] is\_default always returns true [\#151](https://github.com/tj-actions/branch-names/issues/151)

**Closed issues:**

- Dependency Dashboard [\#36](https://github.com/tj-actions/branch-names/issues/36)

**Merged pull requests:**

- chore: add helpful step comments [\#164](https://github.com/tj-actions/branch-names/pull/164) ([jackton1](https://github.com/jackton1))
- Update tj-actions/auto-doc action to v1.4.1 [\#162](https://github.com/tj-actions/branch-names/pull/162) ([renovate[bot]](https://github.com/apps/renovate))
- Update tj-actions/auto-doc action to v1.4.0 [\#161](https://github.com/tj-actions/branch-names/pull/161) ([renovate[bot]](https://github.com/apps/renovate))
- Update peter-evans/create-pull-request action to v4.1.1 [\#160](https://github.com/tj-actions/branch-names/pull/160) ([renovate[bot]](https://github.com/apps/renovate))
- Update peter-evans/create-pull-request action to v4.1.0 [\#159](https://github.com/tj-actions/branch-names/pull/159) ([renovate[bot]](https://github.com/apps/renovate))
- Update tj-actions/auto-doc action to v1.3.1 [\#157](https://github.com/tj-actions/branch-names/pull/157) ([renovate[bot]](https://github.com/apps/renovate))
- Update tj-actions/auto-doc action to v1.3.0 [\#156](https://github.com/tj-actions/branch-names/pull/156) ([renovate[bot]](https://github.com/apps/renovate))
- Update tj-actions/github-changelog-generator action to v1.14 [\#155](https://github.com/tj-actions/branch-names/pull/155) ([renovate[bot]](https://github.com/apps/renovate))
- Upgraded to v5.4 [\#154](https://github.com/tj-actions/branch-names/pull/154) ([jackton1](https://github.com/jackton1))

## [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)
Expand All @@ -21,10 +37,6 @@

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

**Closed issues:**

- Dependency Dashboard [\#36](https://github.com/tj-actions/branch-names/issues/36)

**Merged pull requests:**

- Bump tj-actions/verify-changed-files from 9 to 10 [\#150](https://github.com/tj-actions/branch-names/pull/150) ([dependabot[bot]](https://github.com/apps/dependabot))
Expand Down Expand Up @@ -200,7 +212,7 @@

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

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

**Merged pull requests:**

Expand All @@ -210,13 +222,13 @@
- Update pascalgn/automerge-action action to v0.14.2 [\#54](https://github.com/tj-actions/branch-names/pull/54) ([renovate[bot]](https://github.com/apps/renovate))
- Upgraded to v4.2 [\#53](https://github.com/tj-actions/branch-names/pull/53) ([jackton1](https://github.com/jackton1))

## [v4](https://github.com/tj-actions/branch-names/tree/v4) (2021-05-25)
## [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.2...v4)
[Full Changelog](https://github.com/tj-actions/branch-names/compare/v4...v4.2)

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

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

**Fixed bugs:**

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.4
uses: tj-actions/branch-names@v5.5

- 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.4
uses: tj-actions/branch-names@v5.5

- 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.4
uses: tj-actions/branch-names@v5.5

- 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.4
uses: tj-actions/branch-names@v5.5

- 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.4
uses: tj-actions/branch-names@v5.5
- uses: actions/checkout@v2
with:
ref: ${{ steps.branch-names.outputs.head_ref_branch }}
Expand Down

0 comments on commit a95070d

Please sign in to comment.