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
The idea is to add the new columns (as NOT NULLABLE) (github_actions_enabled_repositories and github_actions_allowed_actions) to the github_organizations table. Possible values can be found in the docs.
Ideally we can fetch this information from the endpoint GET https://api.github.com/orgs/{org}/actions/permissionsdocs.
As expected we will need to include Json schema valdiation, seeds, fixtures and add it to the current workflow update-github-orgs
The text was updated successfully, but these errors were encountered:
We want to include GET https://api.github.com/orgs/{org}/actions/permissions/workflow too as it will provide key information (default_workflow_permissions and can_approve_pull_request_reviews) for other checks (see).
This info should be mapped as github_actions_default_workflow_permissions and github_actions_can_approve_pull_request_reviews.
Similar to #147 and a requirement for #100.
The idea is to add the new columns (as NOT NULLABLE) (
github_actions_enabled_repositories
andgithub_actions_allowed_actions
) to thegithub_organizations
table. Possible values can be found in the docs.Ideally we can fetch this information from the endpoint
GET https://api.github.com/orgs/{org}/actions/permissions
docs.As expected we will need to include Json schema valdiation, seeds, fixtures and add it to the current workflow
update-github-orgs
The text was updated successfully, but these errors were encountered: