We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The workflow doesn't enforce anything about the user doing the workflow dispatch
we could enforce some things using $ curl -s -H "Authorization: Bearer XXX" https://api.github.com/repos/OWNER/REPO/collaborators/USER/permission | jq ". | {permission: .permission, role_name: .role_name}" { "permission": "admin", "role_name": "admin" }
or { "permission": "write", "role_name": "write" }
Can be one of: pull, triage, push, maintain, admin https://docs.github.com/en/rest/collaborators/collaborators#get-repository-permissions-for-a-user
more control over who releases, not anyone with push access to the repository
No response
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Describe the current behavior
The workflow doesn't enforce anything about the user doing the workflow dispatch
Describe the expected behavior
we could enforce some things using
$ curl -s -H "Authorization: Bearer XXX" https://api.github.com/repos/OWNER/REPO/collaborators/USER/permission | jq ". | {permission: .permission, role_name: .role_name}"
{
"permission": "admin",
"role_name": "admin"
}
or
{
"permission": "write",
"role_name": "write"
}
Can be one of: pull, triage, push, maintain, admin
https://docs.github.com/en/rest/collaborators/collaborators#get-repository-permissions-for-a-user
Describe the motivation
more control over who releases, not anyone with push access to the repository
Extra Information
No response
The text was updated successfully, but these errors were encountered: