From b421ba71da8689a3eaf1fe856947e44e9bd920e6 Mon Sep 17 00:00:00 2001 From: Steve Axthelm Date: Wed, 10 Apr 2024 11:33:30 -0700 Subject: [PATCH] (maint) remove changelog check from release action The changelog checking in the release action didn't handle multiple streams (ie: mergeups) correctly and insisted upon incorrect versions in the changelog when mergeups were present. This commit removes those checks. --- .github/workflows/release.yml | 21 --------------------- 1 file changed, 21 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index a073df7..a7ee5f6 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -36,27 +36,6 @@ jobs: return response.tag_name result-encoding: string - - name: Generate Changelog - uses: docker://githubchangeloggenerator/github-changelog-generator:1.16.2 - with: - args: >- - --future-release ${{ steps.nv.outputs.version }} - env: - CHANGELOG_GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - - - name: Validate Changelog - run : | - set -e - if output=$(git status --porcelain) && [ ! -z "$output" ]; then - echo "Here is the current git status:" - git status - echo - echo "The following changes were detected:" - git --no-pager diff - echo "Uncommitted PRs found in the changelog. Please submit a release prep PR of changes after running './release-prep'" - exit 1 - fi - - name: Generate Release Notes uses: docker://githubchangeloggenerator/github-changelog-generator:1.16.2 with: