diff --git a/.github/release.yml b/.github/release.yml new file mode 100644 index 0000000..8dc79cd --- /dev/null +++ b/.github/release.yml @@ -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: + - "*" diff --git a/.github/workflows/push-to-master.yml b/.github/workflows/push-to-master.yml index 65a546e..e935369 100644 --- a/.github/workflows/push-to-master.yml +++ b/.github/workflows/push-to-master.yml @@ -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 @@ -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