Upgraded from v5.5 -> v5.6

This commit is contained in:
jackton1 2022-08-27 15:14:33 +00:00 committed by GitHub
parent 63b65253bc
commit a4ea8fa07e
2 changed files with 18 additions and 9 deletions

View File

@ -1,5 +1,18 @@
# Changelog # Changelog
## [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)
**Closed issues:**
- Dependency Dashboard [\#36](https://github.com/tj-actions/branch-names/issues/36)
**Merged pull requests:**
- Update tj-actions/verify-changed-files action to v11 [\#166](https://github.com/tj-actions/branch-names/pull/166) ([renovate[bot]](https://github.com/apps/renovate))
- Upgraded to v5.5 [\#165](https://github.com/tj-actions/branch-names/pull/165) ([jackton1](https://github.com/jackton1))
## [v5.5](https://github.com/tj-actions/branch-names/tree/v5.5) (2022-08-21) ## [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...v5.5) [Full Changelog](https://github.com/tj-actions/branch-names/compare/v5.4...v5.5)
@ -8,10 +21,6 @@
- \[BUG\] is\_default always returns true [\#151](https://github.com/tj-actions/branch-names/issues/151) - \[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:** **Merged pull requests:**
- chore: add helpful step comments [\#164](https://github.com/tj-actions/branch-names/pull/164) ([jackton1](https://github.com/jackton1)) - chore: add helpful step comments [\#164](https://github.com/tj-actions/branch-names/pull/164) ([jackton1](https://github.com/jackton1))

View File

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