softprops / action-gh-release

📦 :octocat: GitHub Action for creating GitHub Releases
MIT License
4.1k stars 450 forks source link

Release notes not generated. #387

Open iZakirSheikh opened 1 year ago

iZakirSheikh commented 1 year ago

Hi thanks for the great GitHub action.

I am creating release using

name: Create Github Release using tag name v${{ env.GIT_TAG }} and uploading signed APK and AAB files
        uses: softprops/action-gh-release@v1
        with:
          tag_name: v${{ env.GIT_TAG }}
          generate_release_notes: true
          prerelease: false
          files: |
            ${{steps.signed_aab.outputs.signedReleaseFile}}
            ${{steps.signed_apk.outputs.signedReleaseFile}}

Everything is functioning correctly; however, the release notes are not being generated. Instead, it displays "Changelog from version 2.1...2.2."

hivenet-sathishgadde-osi commented 1 year ago

Am also facing the same issue!

kitschpatrol commented 9 months ago

This is probably because it's using GitHub's auto-generated release notes for this feature, which only generate notes for PRs. In the absence of PRs, it just creates the changelog link.