GitHub Actions not generating release notes for newly tagged releases despite using 'release' action
I'm optimizing some code but Can someone help me understand I keep running into I'm using GitHub Actions to automate my release process and I want to generate release notes automatically when I create a new tag. I've set up a workflow that triggers on `push` events to `tags`, but for some reason, the release notes are not being generated, and the action completes without any errors. Hereโs a snippet of my workflow YAML file: ```yaml name: Generate Release Notes on: push: tags: - 'v*.*.*' jobs: release: runs-on: ubuntu-latest steps: - name: Checkout code uses: actions/checkout@v2 - name: Generate Release Notes id: release_notes uses: softprops/action-gh-release@v1 with: tag_name: ${{ github.ref }} release_name: 'Release ${{ github.ref }}' draft: false prerelease: false env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} ``` The action seems to run successfully but doesnโt actually create any release notes in GitHub. Iโve confirmed that the tag format is correct (e.g., `v1.0.0`). Iโve also checked the logs for the action run and there are no indications of a failure or warning. To troubleshoot this, I tried adding additional logging to see if the `github.ref` variable is being set properly, and it outputs the correct tag reference. I also experimented with different versions of the `softprops/action-gh-release` action but still no luck. Could there be something I'm missing in the permissions or configuration? Any suggestions on how to ensure that release notes are generated correctly? I'm working with Yaml in a Docker container on Debian. I'd love to hear your thoughts on this. I'd love to hear your thoughts on this. Am I missing something obvious?