From 2b805184b90d81a73723d4a62d8c5782a6530ac2 Mon Sep 17 00:00:00 2001 From: jackton1 Date: Mon, 24 May 2021 11:38:41 +0000 Subject: [PATCH] Upgraded from v4 -> v4.1 --- HISTORY.md | 23 +++++++++++++++++++++++ README.md | 6 +++--- 2 files changed, 26 insertions(+), 3 deletions(-) diff --git a/HISTORY.md b/HISTORY.md index c818f04..96de685 100644 --- a/HISTORY.md +++ b/HISTORY.md @@ -1,5 +1,28 @@ # Changelog +## [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) + +**Closed issues:** + +- Dependency Dashboard [\#36](https://github.com/tj-actions/branch-names/issues/36) + +**Merged pull requests:** + +- Exclude current branch output for tag branches [\#48](https://github.com/tj-actions/branch-names/pull/48) ([jackton1](https://github.com/jackton1)) +- Bump peter-evans/create-pull-request from 3.9.2 to 3.10.0 [\#47](https://github.com/tj-actions/branch-names/pull/47) ([dependabot[bot]](https://github.com/apps/dependabot)) +- Update cirrus-actions/rebase action to v1.5 [\#46](https://github.com/tj-actions/branch-names/pull/46) ([renovate[bot]](https://github.com/apps/renovate)) +- Bump peter-evans/create-pull-request from 3.9.1 to 3.9.2 [\#45](https://github.com/tj-actions/branch-names/pull/45) ([dependabot[bot]](https://github.com/apps/dependabot)) +- Bump peter-evans/create-pull-request from 3 to 3.9.1 [\#42](https://github.com/tj-actions/branch-names/pull/42) ([dependabot[bot]](https://github.com/apps/dependabot)) +- Bump actions/checkout from 2 to 2.3.4 [\#41](https://github.com/tj-actions/branch-names/pull/41) ([dependabot[bot]](https://github.com/apps/dependabot)) +- Update tj-actions/sync-release-version action to v8.6 [\#40](https://github.com/tj-actions/branch-names/pull/40) ([renovate[bot]](https://github.com/apps/renovate)) +- Update tj-actions/github-changelog-generator action to v1.8 [\#39](https://github.com/tj-actions/branch-names/pull/39) ([renovate[bot]](https://github.com/apps/renovate)) +- Bump tj-actions/sync-release-version from v8 to v8.5 [\#38](https://github.com/tj-actions/branch-names/pull/38) ([dependabot[bot]](https://github.com/apps/dependabot)) +- Upgrade to GitHub-native Dependabot [\#37](https://github.com/tj-actions/branch-names/pull/37) ([dependabot-preview[bot]](https://github.com/apps/dependabot-preview)) +- Update tj-actions/github-changelog-generator action to v1.6 [\#35](https://github.com/tj-actions/branch-names/pull/35) ([renovate[bot]](https://github.com/apps/renovate)) +- Upgraded to v4 [\#34](https://github.com/tj-actions/branch-names/pull/34) ([jackton1](https://github.com/jackton1)) + ## [v4](https://github.com/tj-actions/branch-names/tree/v4) (2021-04-25) [Full Changelog](https://github.com/tj-actions/branch-names/compare/v3.6...v4) diff --git a/README.md b/README.md index 5e314fd..8458c18 100644 --- a/README.md +++ b/README.md @@ -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 + uses: tj-actions/branch-names@v4.1 ``` ## Examples @@ -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 + uses: tj-actions/branch-names@v4.1 - name: Running on the default branch. if: steps.branch-name.outputs.is_default == 'true' @@ -107,7 +107,7 @@ on: steps: - name: Get branch names. id: branch-names - uses: tj-actions/branch-names@v4 + uses: tj-actions/branch-names@v4.1 - uses: actions/checkout@v2 with: ref: ${{ steps.branch-names.outputs.base_ref_branch }}