From 25c5318ca05e8392609907215ee8a242c0dfa506 Mon Sep 17 00:00:00 2001 From: Paolo Insogna Date: Fri, 11 Sep 2026 14:42:05 +0200 Subject: [PATCH] chore: Use default token for release notes. Signed-off-by: Paolo Insogna --- .github/workflows/publish_release.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/publish_release.yml b/.github/workflows/publish_release.yml index 6a946f2..32b5ace 100644 --- a/.github/workflows/publish_release.yml +++ b/.github/workflows/publish_release.yml @@ -43,5 +43,7 @@ jobs: - name: Push release commit if publish succeeded run: git push origin HEAD:${{ github.ref }} - name: Create release notes + env: + GITHUB_TOKEN: ${{ github.token }} run: | - npx @matteo.collina/release-notes -a ${{ secrets.GITHUB_TOKEN }} -t v${{ inputs.version }} -r ${{ github.repository }} ${{ github.event.inputs.prerelease == 'true' && '-p' || '' }} -c ${{ github.ref }} + npx @matteo.collina/release-notes -t v${{ inputs.version }} -r ${{ github.repository }} ${{ github.event.inputs.prerelease == 'true' && '-p' || '' }} -c ${{ github.ref }}