Skip to content

Commit

Permalink
Fix GitHub actions annotations (#281)
Browse files Browse the repository at this point in the history
Use a non-deprecated GitHub action for releasing
  • Loading branch information
Wissididom authored Feb 13, 2024
1 parent 78309b2 commit 548b384
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
10 changes: 4 additions & 6 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,12 +37,10 @@ jobs:
- name: create release
if: ${{ steps.check_release.outputs.missing == 'true' }}
id: create_release
uses: actions/[email protected]
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
uses: ncipollo/[email protected]
with:
tag_name: "${{ steps.read-version.outputs.tag }}"
release_name: Changelog Enforcer ${{ steps.read-version.outputs.version }}
tag: "${{ steps.read-version.outputs.tag }}"
name: Changelog Enforcer ${{ steps.read-version.outputs.version }}
body: ${{ steps.changelog_reader.outputs.changes }}
draft: false
prerelease: false
Expand All @@ -53,4 +51,4 @@ jobs:
with:
tag_name: "${{ steps.read-version.outputs.major_tag }}"
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@
Inspired from [Keep a Changelog](https://keepachangelog.com/en/1.0.0/)

## [UNRELEASED]
### Changed
- Fix Github Actions Annotations ([#281](https://github.com/dangoslen/changelog-enforcer/pull/281))

## [v3.6.0]
### Changed
Expand Down

0 comments on commit 548b384

Please sign in to comment.