Skip to content

Commit

Permalink
change strategy to generate release notes
Browse files Browse the repository at this point in the history
  • Loading branch information
ryuzakyl committed Aug 19, 2023
1 parent 064b1ee commit b763f06
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 8 deletions.
18 changes: 18 additions & 0 deletions .github/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
changelog:
exclude:
labels:
- ignore-for-release
authors:
- octocat
categories:
- title: Breaking Changes 🛠
labels:
- Semver-Major
- breaking-change
- title: Exciting New Features 🎉
labels:
- Semver-Minor
- enhancement
- title: Other Changes
labels:
- "*"
8 changes: 0 additions & 8 deletions .github/workflows/push-to-master.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,13 +48,6 @@ jobs:
esac
echo "date=$(date +'%B') $DAY, $(date +%Y)" >> $GITHUB_ENV
- name: Conventional Changelog Action
id: changelog
uses: TriPSs/conventional-changelog-action@v3
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
output-file: "false"

- name: Create Release
id: create_release
uses: actions/create-release@v1
Expand All @@ -63,7 +56,6 @@ jobs:
with:
tag_name: ${{ steps.semvers.outputs.patch }}
release_name: Software Industry CV versions. ${{ env.date }}
body: ${{ steps.changelog.outputs.clean_changelog }}
draft: false
prerelease: false

Expand Down

0 comments on commit b763f06

Please sign in to comment.