GitHub connector
Back to the connector overview, authentication methods, and actions.
22 Jul 2026
bug-fix improvementRemoved legacy requiredScopes comments. Added missing filter/sort params across list actions. Fixed update_issue labels type (object to array). Updated descriptions with enum values, provider limitations, and error behaviour documentation. Marked upload_release_asset as preview (requires uploads.github.com host).Changed · 98 actions updated
Changed · 98 actions updated
github_add_collaborator, github_add_team_member, github_add_team_repository, github_cancel_workflow_run, github_check_organization_membership, github_create_deployment, github_create_deployment_status, github_create_issue, github_create_issue_comment, github_create_or_update_file, github_create_organization_repository, github_create_pull_request, github_create_pull_request_review, github_create_pull_request_review_comment, github_create_ref, github_create_release, github_create_team, github_create_user_repository, github_create_workflow_dispatch, github_delete_deployment, github_delete_file, github_delete_ref, github_delete_release, github_delete_repository, github_delete_team, github_download_artifact, github_fork_repository, github_get_authenticated_user, github_get_branch, github_get_commit, github_get_issue, github_get_latest_release, github_get_organization, github_get_organization_membership, github_get_pull_request, github_get_ref, github_get_repository, github_get_repository_content, github_get_team, github_get_user, github_get_workflow_run, github_invite_organization_member, github_list_artifacts, github_list_authenticated_user_organization_memberships, github_list_authenticated_user_organizations, github_list_authenticated_user_repositories, github_list_branches, github_list_code_scanning_alerts, github_list_collaborators, github_list_commits, github_list_dependabot_alerts, github_list_deployments, github_list_forks, github_list_issue_comments, github_list_issues, github_list_matching_refs, github_list_organization_members, github_list_organization_repositories, github_list_pull_requests, github_list_releases, github_list_secret_scanning_alerts, github_list_teams, github_list_user_organizations, github_list_user_repositories, github_list_users, github_list_workflow_jobs, github_list_workflow_runs, github_merge_pull_request, github_re_run_workflow, github_remove_collaborator, github_remove_organization_member, github_remove_team_member, github_search_code, github_search_issues, github_search_repositories, github_star_repository, github_unified_get_group, github_unified_get_me, github_unified_get_organization, github_unified_get_role, github_unified_get_user, github_unified_list_groups, github_unified_list_organizations, github_unified_list_roles, github_unified_list_users, github_unstar_repository, github_update_code_scanning_alert, github_update_dependabot_alert, github_update_issue, github_update_organization, github_update_pull_request, github_update_ref, github_update_release, github_update_repository, github_update_secret_scanning_alert, github_update_team, github_update_user, github_upload_release_asset22 Jul 2026
bug-fixFixed IAM list pagination past page 1 on unified_list_users, unified_list_groups, and unified_list_organizations — the raw page-number result.next overrode StackOne’s virtual-pagination cursor and could not survive a round-trip, causing 400 Invalid cursor past the first page. Replaced with a fixed page fan-out that lets virtual pagination own the cursor end-to-end. Re-sourced unified_list_groups from GET /user/teams (which returns only the connected user’s own teams) to a per-organization fan-out over GET /orgs/{org}/teams, so the action returns every team visible across the connection’s organizations rather than just the caller’s memberships.Changed · 3 actions updated
Changed · 3 actions updated
github_unified_list_groups, github_unified_list_organizations, github_unified_list_users13 Jul 2026
bug-fixFixed unified_get_me returning an empty body, broken pagination termination on the users/groups/organizations IAM lists, and unified_list_groups requiring an organization filter the platform never delivers.