Copilot commented on code in PR #39: URL: https://github.com/apache/grails-github-actions/pull/39#discussion_r2317646760
########## post-release/action.yml: ########## @@ -24,4 +24,5 @@ runs: using: 'docker' image: 'Dockerfile' env: - GITHUB_API_URL: 'https://api.github.com' \ No newline at end of file + GITHUB_API_URL: 'https://api.github.com' + GITHUB_TOKEN: ${{ inputs.token }} Review Comment: The `inputs.token` reference will fail because no `token` input is defined in this action. Add an `inputs` section with a `token` parameter similar to the other actions, or remove this environment variable assignment. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
