From cf62a9f7613bf12dcd4940cbe365e47fd49a161e Mon Sep 17 00:00:00 2001 From: jackton1 Date: Thu, 7 Dec 2023 04:26:34 +0000 Subject: [PATCH] Upgraded from v7.0.7 -> v8 --- HISTORY.md | 19 +++++++++++++++++++ README.md | 12 ++++++------ 2 files changed, 25 insertions(+), 6 deletions(-) diff --git a/HISTORY.md b/HISTORY.md index 8d370ce..fd971e8 100644 --- a/HISTORY.md +++ b/HISTORY.md @@ -1,5 +1,24 @@ # Changelog +# [8.0.0](https://github.com/tj-actions/branch-names/compare/v7.0.7...v8.0.0) - (2023-12-05) + +## ➖ Remove + +- Deleted .github/workflows/auto-approve.yml ([d412a8b](https://github.com/tj-actions/branch-names/commit/d412a8b9be018a303e4c446b1e1e77e26dc79603)) - (Tonye Jack) + +## 📝 Other + +- PR [#273](https://github.com/tj-actions/branch-names/pull/273): to v7.0.7 ([aebb456](https://github.com/tj-actions/branch-names/commit/aebb456ae8608f6dc5a66f8ee1af451d4cc6a121)) - (repo-ranger[bot]) + +## ⚙️ Miscellaneous Tasks + +- Create SECURITY.md ([#274](https://github.com/tj-actions/branch-names/issues/274)) ([6b29454](https://github.com/tj-actions/branch-names/commit/6b29454859d080290fc5e9c05ee4e82b9156404b)) - (Tonye Jack) + +## ⬆️ Upgrades + +- Upgraded from v7.0.6 -> v7.0.7 + ([f78faab](https://github.com/tj-actions/branch-names/commit/f78faabb0379ad0477ee82bf26324d6c8e6e6a05)) - (jackton1) + # [7.0.7](https://github.com/tj-actions/branch-names/compare/v7.0.6...v7.0.7) - (2023-12-03) ## 🐛 Bug Fixes diff --git a/README.md b/README.md index eb8a745..27f38b9 100644 --- a/README.md +++ b/README.md @@ -49,7 +49,7 @@ Get a branch or tag name without the `/ref/*` prefix. steps: - name: Get branch names. id: branch-names - uses: tj-actions/branch-names@v7 + uses: tj-actions/branch-names@v8 - name: Running on the default branch. if: steps.branch-names.outputs.is_default == 'true' @@ -90,7 +90,7 @@ Support this project with a :star: ```yaml -- uses: tj-actions/branch-names@v7 +- uses: tj-actions/branch-names@v8 id: branch-names with: # The prefix that should be stripped from the tag @@ -134,7 +134,7 @@ on: steps: - name: Get branch names id: branch-names - uses: tj-actions/branch-names@v7 + uses: tj-actions/branch-names@v8 - name: Current branch names run: | @@ -176,7 +176,7 @@ on: steps: - name: Get branch names id: branch-names - uses: tj-actions/branch-names@v7 + uses: tj-actions/branch-names@v8 - name: Current branch names run: | @@ -228,7 +228,7 @@ on: steps: - name: Get branch names id: branch-names - uses: tj-actions/branch-names@v7 + uses: tj-actions/branch-names@v8 with: strip_tag_prefix: v # Optionally strip the leading `v` from the tag. @@ -263,7 +263,7 @@ on: steps: - name: Get branch names. id: branch-names - uses: tj-actions/branch-names@v7 + uses: tj-actions/branch-names@v8 - uses: actions/checkout@v3 with: ref: ${{ steps.branch-names.outputs.head_ref_branch }}