You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
No clear way to identify required permissions for GITHUB_TOKEN when org level permissions are set to readonly by default.
Please add documentation for required permissions.
Specifying required permissions for github action should be standard.
By default, github sets GITHUB_TOKEN's permissions to all writes. For security purposes companies change these permissions to readonly and override to write where needed in github action workflows.
The action must read the issues and pull requests. It must also be able to write to a pull request or issue. This means you have to specify the following permissions:
permissions:
issues: writepull-requests: write
I want to create a pull request to add this information to the README.
No clear way to identify required permissions for GITHUB_TOKEN when org level permissions are set to readonly by default.
Please add documentation for required permissions.
Specifying required permissions for github action should be standard.
By default, github sets GITHUB_TOKEN's permissions to all writes. For security purposes companies change these permissions to readonly and override to write where needed in github action workflows.
https://docs.github.com/en/actions/reference/workflow-syntax-for-github-actions#permissions
The text was updated successfully, but these errors were encountered: