{
  "info": {
    "name": "GitHub — mcp.ai",
    "description": "REST API for the GitHub MCP. Set {{apiKey}} to a workspace key (sk_live_…) created at https://mcp.ai/settings/api-keys.",
    "schema": "https://schema.getpostman.com/json/collection/v2.1.0/collection.json"
  },
  "auth": {
    "type": "bearer",
    "bearer": [
      {
        "key": "token",
        "value": "{{apiKey}}",
        "type": "string"
      }
    ]
  },
  "variable": [
    {
      "key": "baseUrl",
      "value": "https://api.mcp.ai/api/github",
      "type": "string"
    },
    {
      "key": "apiKey",
      "value": "sk_live_...",
      "type": "string"
    }
  ],
  "item": [
    {
      "name": "github_accept_a_repository_invitation",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/accept/a/repository/invitation",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "accept",
            "a",
            "repository",
            "invitation"
          ]
        },
        "description": "Accepts a pending repository invitation that has been issued to the authenticated user.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"invitation_id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_activity_list_repo_s_starred_by_authenticated_user",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/activity/list/repo/s/starred/by/authenticated/user",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "activity",
            "list",
            "repo",
            "s",
            "starred",
            "by",
            "authenticated",
            "user"
          ]
        },
        "description": "Deprecated: lists repositories starred by the authenticated user, including star creation timestamps; use 'list repositories starred by the authenticated user' instead.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"page\": 0,\n  \"sort\": \"\",\n  \"per_page\": 0,\n  \"direction\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_activity_list_stargazers_for_repo",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/activity/list/stargazers/for/repo",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "activity",
            "list",
            "stargazers",
            "for",
            "repo"
          ]
        },
        "description": "Deprecated: lists users who have starred a repository; use `list stargazers` instead.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"page\": 0,\n  \"repo\": \"\",\n  \"owner\": \"\",\n  \"per_page\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_activity_star_repo_for_authenticated_user",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/activity/star/repo/for/authenticated/user",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "activity",
            "star",
            "repo",
            "for",
            "authenticated",
            "user"
          ]
        },
        "description": "Deprecated: stars a repository for the authenticated user; use `star a repository for the authenticated user` instead.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"repo\": \"\",\n  \"owner\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_add_a_repository_collaborator",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/add/a/repository/collaborator",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "add",
            "a",
            "repository",
            "collaborator"
          ]
        },
        "description": "Adds a github user as a repository collaborator, or updates their permission if already a collaborator; `permission` applies to organization-owned repositories (personal ones default to 'push' and ign",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"repo\": \"\",\n  \"owner\": \"\",\n  \"username\": \"\",\n  \"permission\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_add_a_repository_to_an_app_installation",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/add/a/repository/to/an/app/installation",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "add",
            "a",
            "repository",
            "to",
            "an",
            "app",
            "installation"
          ]
        },
        "description": "Adds a repository to a github app installation, granting the app access; requires authenticated user to have admin rights for the repository and access to the installation.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"repository_id\": 0,\n  \"installation_id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_add_a_selected_repository_to_a_user_secret",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/add/a/selected/repository/to/a/user/secret",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "add",
            "a",
            "selected",
            "repository",
            "to",
            "a",
            "user",
            "secret"
          ]
        },
        "description": "Grants a specified repository access to an authenticated user's existing codespaces secret, enabling codespaces created for that repository to use the secret.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"secret_name\": \"\",\n  \"repository_id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_add_an_email_address_for_the_authenticated_user",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/add/an/email/address/for/the/authenticated/user",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "add",
            "an",
            "email",
            "address",
            "for",
            "the",
            "authenticated",
            "user"
          ]
        },
        "description": "Adds one or more email addresses (which will be initially unverified) to the authenticated user's github account; use this to associate new emails, noting an email verified for another account will er",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"emails\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_add_app_access_restrictions",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/add/app/access/restrictions",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "add",
            "app",
            "access",
            "restrictions"
          ]
        },
        "description": "Replaces github app access restrictions for an existing protected branch; requires a json array of app slugs in the request body, where apps must be installed and have 'contents' write permissions.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"repo\": \"\",\n  \"owner\": \"\",\n  \"branch\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_add_assignees_to_an_issue",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/add/assignees/to/an/issue",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "add",
            "assignees",
            "to",
            "an",
            "issue"
          ]
        },
        "description": "Adds or removes assignees for a github issue; changes are silently ignored if the authenticated user lacks push access to the repository.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"repo\": \"\",\n  \"owner\": \"\",\n  \"assignees\": \"\",\n  \"issue_number\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_add_labels_to_an_issue",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/add/labels/to/an/issue",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "add",
            "labels",
            "to",
            "an",
            "issue"
          ]
        },
        "description": "Adds labels (provided in the request body) to a repository issue; labels that do not already exist are created.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"repo\": \"\",\n  \"owner\": \"\",\n  \"issue_number\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_add_or_update_team_membership_for_a_user",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/add/or/update/team/membership/for/a/user",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "add",
            "or",
            "update",
            "team",
            "membership",
            "for",
            "a",
            "user"
          ]
        },
        "description": "Adds a github user to a team or updates their role (member or maintainer), inviting them to the organization if not already a member; idempotent, returning current details if no change is made.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"org\": \"\",\n  \"role\": \"\",\n  \"username\": \"\",\n  \"team_slug\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_add_or_update_team_project_permissions",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/add/or/update/team/project/permissions",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "add",
            "or",
            "update",
            "team",
            "project",
            "permissions"
          ]
        },
        "description": "Grants or updates a team's permissions ('read', 'write', or 'admin') for a specific project, which must exist within the specified organization and be linked to it.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"org\": \"\",\n  \"team_slug\": \"\",\n  \"permission\": \"\",\n  \"project_id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_add_or_update_team_repository_permissions",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/add/or/update/team/repository/permissions",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "add",
            "or",
            "update",
            "team",
            "repository",
            "permissions"
          ]
        },
        "description": "Sets or updates a team's permission level for a repository within an organization; the team must be a member of the organization.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"org\": \"\",\n  \"repo\": \"\",\n  \"owner\": \"\",\n  \"team_slug\": \"\",\n  \"permission\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_add_org_runner_labels",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/add/org/runner/labels",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "add",
            "org",
            "runner",
            "labels"
          ]
        },
        "description": "Adds new custom labels to an existing self-hosted runner for an organization; existing labels are not removed, and duplicates are not added.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"org\": \"\",\n  \"labels\": \"\",\n  \"runner_id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_add_project_collaborator",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/add/project/collaborator",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "add",
            "project",
            "collaborator"
          ]
        },
        "description": "Adds a specified github user as a collaborator to an existing organization project with a given permission level.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"username\": \"\",\n  \"permission\": \"\",\n  \"project_id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_add_repo_to_org_secret_with_selected_access",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/add/repo/to/org/secret/with/selected/access",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "add",
            "repo",
            "to",
            "org",
            "secret",
            "with",
            "selected",
            "access"
          ]
        },
        "description": "Adds a repository to an existing organization-level github actions secret that is configured for 'selected' repository access.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"org\": \"\",\n  \"secret_name\": \"\",\n  \"repository_id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_add_repo_to_org_secret_with_selected_visibility",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/add/repo/to/org/secret/with/selected/visibility",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "add",
            "repo",
            "to",
            "org",
            "secret",
            "with",
            "selected",
            "visibility"
          ]
        },
        "description": "Grants an existing repository access to an existing organization-level dependabot secret; the repository must belong to the organization, and the call succeeds without change if access already exists.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"org\": \"\",\n  \"secret_name\": \"\",\n  \"repository_id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_add_runner_labels",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/add/runner/labels",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "add",
            "runner",
            "labels"
          ]
        },
        "description": "Adds and appends custom labels to a self-hosted repository runner, which must be registered and active.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"repo\": \"\",\n  \"owner\": \"\",\n  \"labels\": \"\",\n  \"runner_id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_add_selected_repository_to_an_organization_secret",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/add/selected/repository/to/an/organization/secret",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "add",
            "selected",
            "repository",
            "to",
            "an",
            "organization",
            "secret"
          ]
        },
        "description": "Adds a repository to an organization secret's access list when the secret's visibility is 'selected'; this operation is idempotent.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"org\": \"\",\n  \"secret_name\": \"\",\n  \"repository_id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_add_selected_repository_to_an_organization_variable",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/add/selected/repository/to/an/organization/variable",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "add",
            "selected",
            "repository",
            "to",
            "an",
            "organization",
            "variable"
          ]
        },
        "description": "Grants a repository access to an organization-level github actions variable, if that variable's visibility is set to 'selected repositories'.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"org\": \"\",\n  \"name\": \"\",\n  \"repository_id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_add_social_accounts_for_the_authenticated_user",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/add/social/accounts/for/the/authenticated/user",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "add",
            "social",
            "accounts",
            "for",
            "the",
            "authenticated",
            "user"
          ]
        },
        "description": "Adds one or more social media links (which must be valid, full urls for platforms supported by github) to the authenticated user's public github profile.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"account_urls\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_add_status_check_contexts",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/add/status/check/contexts",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "add",
            "status",
            "check",
            "contexts"
          ]
        },
        "description": "Adds status check contexts (provided in the request body, e.g., `{\"contexts\": [\"new-context\"]}`) to a protected branch, requiring these contexts to have been previously reported.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"repo\": \"\",\n  \"owner\": \"\",\n  \"branch\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_add_team_access_restrictions",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/add/team/access/restrictions",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "add",
            "team",
            "access",
            "restrictions"
          ]
        },
        "description": "Overwrites the list of teams (and their child teams) granted push access to a protected branch; the list of team slugs must be provided in the http post request body.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"repo\": \"\",\n  \"owner\": \"\",\n  \"branch\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_add_user_access_restrictions",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/add/user/access/restrictions",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "add",
            "user",
            "access",
            "restrictions"
          ]
        },
        "description": "Sets/replaces list of users allowed to push to a protected branch; usernames (e.g., `[\"user1\"]`) must be a json array in request body (not schema parameters), an empty array `[]` removes all restricti",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"repo\": \"\",\n  \"owner\": \"\",\n  \"branch\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_add_users_to_codespaces_access_for_an_organization",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/add/users/to/codespaces/access/for/an/organization",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "add",
            "users",
            "to",
            "codespaces",
            "access",
            "for",
            "an",
            "organization"
          ]
        },
        "description": "Sets or replaces the list of organization members granted codespaces access billed to the organization; ensure the organization's billing settings allow access for selected members.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"org\": \"\",\n  \"selected_usernames\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_approve_a_workflow_run_for_a_fork_pull_request",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/approve/a/workflow/run/for/a/fork/pull/request",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "approve",
            "a",
            "workflow",
            "run",
            "for",
            "a",
            "fork",
            "pull",
            "request"
          ]
        },
        "description": "Approves a workflow run from a forked repository's pull request; call this when such a run requires manual approval due to workflow configuration.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"repo\": \"\",\n  \"owner\": \"\",\n  \"run_id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_assign_an_organization_role_to_a_team",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/assign/an/organization/role/to/a/team",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "assign",
            "an",
            "organization",
            "role",
            "to",
            "a",
            "team"
          ]
        },
        "description": "Assigns an existing organization-level role (identified by `role id`) to a team (identified by `team slug`) within a github organization (`org`), provided the organization, team, and role already exis",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"org\": \"\",\n  \"role_id\": 0,\n  \"team_slug\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_assign_an_organization_role_to_a_user",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/assign/an/organization/role/to/a/user",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "assign",
            "an",
            "organization",
            "role",
            "to",
            "a",
            "user"
          ]
        },
        "description": "Assigns a specific organization role to a user who is a member or an outside collaborator in a github organization, using a valid role id.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"org\": \"\",\n  \"role_id\": 0,\n  \"username\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_auth_user_docker_conflict_packages_list",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/auth/user/docker/conflict/packages/list",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "auth",
            "user",
            "docker",
            "conflict",
            "packages",
            "list"
          ]
        },
        "description": "Lists docker packages for the authenticated user that encountered conflicts during the docker migration process.",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_block_a_user",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/block/a/user",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "block",
            "a",
            "user"
          ]
        },
        "description": "Blocks an existing individual github user (not an organization or your own account), preventing them from interacting with your account and repositories.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"username\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_block_a_user_from_an_organization",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/block/a/user/from/an/organization",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "block",
            "a",
            "user",
            "from",
            "an",
            "organization"
          ]
        },
        "description": "Blocks an existing github user from an existing organization, preventing their contributions, collaboration, and forking of the organization's repositories.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"org\": \"\",\n  \"username\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_cancel_a_github_pages_deployment",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/cancel/a/github/pages/deployment",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "cancel",
            "a",
            "github",
            "pages",
            "deployment"
          ]
        },
        "description": "Cancels an existing, ongoing or queued github pages deployment for a repository using its `pages deployment id`.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"repo\": \"\",\n  \"owner\": \"\",\n  \"pages_deployment_id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_cancel_a_workflow_run",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/cancel/a/workflow/run",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "cancel",
            "a",
            "workflow",
            "run"
          ]
        },
        "description": "Cancels a workflow run in a github repository if it is in a cancellable state (e.g., 'in progress' or 'queued').",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"repo\": \"\",\n  \"owner\": \"\",\n  \"run_id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_check_a_token",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/check/a/token",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "check",
            "a",
            "token"
          ]
        },
        "description": "Checks if a github app or oauth access token is valid for the specified client id and retrieves its details, typically to verify its active status and grants.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"client_id\": \"\",\n  \"access_token\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_check_if_a_gist_is_starred",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/check/if/a/gist/is/starred",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "check",
            "if",
            "a",
            "gist",
            "is",
            "starred"
          ]
        },
        "description": "Checks if a gist, identified by `gist id`, is starred by the authenticated user, returning an empty response (204) if starred, or a 404 error if not starred or not found.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"gist_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_check_if_a_person_is_followed_by_the_authenticated_user",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/check/if/a/person/is/followed/by/the/authenticated/user",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "check",
            "if",
            "a",
            "person",
            "is",
            "followed",
            "by",
            "the",
            "authenticated",
            "user"
          ]
        },
        "description": "Checks if the authenticated github user follows a target github user; an http 204 status indicates the user is followed, while an http 404 status indicates the user is not followed or the target user ",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"username\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_check_if_a_pull_request_has_been_merged",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/check/if/a/pull/request/has/been/merged",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "check",
            "if",
            "a",
            "pull",
            "request",
            "has",
            "been",
            "merged"
          ]
        },
        "description": "Checks if a specified github pull request has been merged, indicated by a 204 http status (merged) or 404 (not merged/found).",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"repo\": \"\",\n  \"owner\": \"\",\n  \"pull_number\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_check_if_a_repository_is_starred_by_the_authenticated_user",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/check/if/a/repository/is/starred/by/the/authenticated/user",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "check",
            "if",
            "a",
            "repository",
            "is",
            "starred",
            "by",
            "the",
            "authenticated",
            "user"
          ]
        },
        "description": "Use to determine if the authenticated user has starred a specific github repository, which is confirmed by an http 204 status (resulting in an empty dictionary in the response data); the action fails ",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"repo\": \"\",\n  \"owner\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_check_if_a_user_can_be_assigned",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/check/if/a/user/can/be/assigned",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "check",
            "if",
            "a",
            "user",
            "can",
            "be",
            "assigned"
          ]
        },
        "description": "Verifies if a github user can be assigned to issues in a repository; assignability is confirmed by an http 204 (no content) response, resulting in an empty 'data' field in the response.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"repo\": \"\",\n  \"owner\": \"\",\n  \"assignee\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_check_if_a_user_can_be_assigned_to_a_issue",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/check/if/a/user/can/be/assigned/to/a/issue",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "check",
            "if",
            "a",
            "user",
            "can",
            "be",
            "assigned",
            "to",
            "a",
            "issue"
          ]
        },
        "description": "Checks if a specified github user can be assigned to a given issue within a repository.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"repo\": \"\",\n  \"owner\": \"\",\n  \"assignee\": \"\",\n  \"issue_number\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_check_if_a_user_follows_another_user",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/check/if/a/user/follows/another/user",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "check",
            "if",
            "a",
            "user",
            "follows",
            "another",
            "user"
          ]
        },
        "description": "Checks if a github user `username` follows `target user`; returns a 204 http status if true, 404 if not or if users are invalid.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"username\": \"\",\n  \"target_user\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_check_if_a_user_is_a_repository_collaborator",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/check/if/a/user/is/a/repository/collaborator",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "check",
            "if",
            "a",
            "user",
            "is",
            "a",
            "repository",
            "collaborator"
          ]
        },
        "description": "Checks if a user is a collaborator on a specified github repository, returning a 204 status if they are, or a 404 status if they are not or if the repository/user does not exist.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"repo\": \"\",\n  \"owner\": \"\",\n  \"username\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_check_if_a_user_is_blocked_by_an_organization",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/check/if/a/user/is/blocked/by/an/organization",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "check",
            "if",
            "a",
            "user",
            "is",
            "blocked",
            "by",
            "an",
            "organization"
          ]
        },
        "description": "Checks if a github user is blocked by an organization; a successful response (204 no content) indicates the user is blocked, while a 404 not found error indicates the user is not blocked.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"org\": \"\",\n  \"username\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_check_if_a_user_is_blocked_by_the_authenticated_user",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/check/if/a/user/is/blocked/by/the/authenticated/user",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "check",
            "if",
            "a",
            "user",
            "is",
            "blocked",
            "by",
            "the",
            "authenticated",
            "user"
          ]
        },
        "description": "Checks if the specified github user is blocked by the authenticated user; a 204 no content response indicates the user is blocked, while a 404 not found indicates they are not.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"username\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_check_private_vulnerability_reporting_status",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/check/private/vulnerability/reporting/status",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "check",
            "private",
            "vulnerability",
            "reporting",
            "status"
          ]
        },
        "description": "Checks if private vulnerability reporting is enabled for the specified repository.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"repo\": \"\",\n  \"owner\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_check_team_permissions_for_a_project",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/check/team/permissions/for/a/project",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "check",
            "team",
            "permissions",
            "for",
            "a",
            "project"
          ]
        },
        "description": "Checks if a team has 'read', 'write', or 'admin' permissions for an organization's specific classic project, returning the project's details if access is confirmed.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"org\": \"\",\n  \"team_slug\": \"\",\n  \"project_id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_check_team_permissions_for_a_repository",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/check/team/permissions/for/a/repository",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "check",
            "team",
            "permissions",
            "for",
            "a",
            "repository"
          ]
        },
        "description": "Checks a team's permissions for a specific repository within an organization, including permissions inherited from parent teams.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"org\": \"\",\n  \"repo\": \"\",\n  \"owner\": \"\",\n  \"team_slug\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_clear_repository_cache_by_key",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/clear/repository/cache/by/key",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "clear",
            "repository",
            "cache",
            "by",
            "key"
          ]
        },
        "description": "Deletes github actions caches from a repository matching a specific `key` and an optional git `ref`, used to manage storage or clear outdated/corrupted caches; the action succeeds even if no matching ",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"key\": \"\",\n  \"ref\": \"\",\n  \"repo\": \"\",\n  \"owner\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_clear_self_hosted_runner_org_labels",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/clear/self/hosted/runner/org/labels",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "clear",
            "self",
            "hosted",
            "runner",
            "org",
            "labels"
          ]
        },
        "description": "Removes all custom labels from a self-hosted runner for an organization; default labels (e.g., 'self-hosted', 'linux', 'x64') will remain.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"org\": \"\",\n  \"runner_id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_compare_two_commits",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/compare/two/commits",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "compare",
            "two",
            "commits"
          ]
        },
        "description": "Compares two commit points (commits, branches, tags, or shas) within a repository or across forks, using `base...head` or `owner:ref...owner:ref` format for the `basehead` parameter.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"page\": 0,\n  \"repo\": \"\",\n  \"owner\": \"\",\n  \"basehead\": \"\",\n  \"per_page\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_configure_jitrunner_for_org",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/configure/jitrunner/for/org",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "configure",
            "jitrunner",
            "for",
            "org"
          ]
        },
        "description": "Generates a jit configuration for a github organization's new self-hosted runner to run a single job then unregister; the runner group id must exist.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"org\": \"\",\n  \"name\": \"\",\n  \"labels\": \"\",\n  \"work_folder\": \"\",\n  \"runner_group_id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_configure_oidcsubject_claim_template",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/configure/oidcsubject/claim/template",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "configure",
            "oidcsubject",
            "claim",
            "template"
          ]
        },
        "description": "Sets or updates the oidc subject claim customization template for an existing github organization by specifying which claims (e.g., 'repo', 'actor') form the oidc token's subject (`sub`).",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"org\": \"\",\n  \"include_claim_keys\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_convert_an_organization_member_to_outside_collaborator",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/convert/an/organization/member/to/outside/collaborator",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "convert",
            "an",
            "organization",
            "member",
            "to",
            "outside",
            "collaborator"
          ]
        },
        "description": "Converts an existing organization member, who is not an owner, to an outside collaborator, restricting their access to explicitly granted repositories.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"org\": \"\",\n  \"async\": false,\n  \"username\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_create_a_blob",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/a/blob",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "a",
            "blob"
          ]
        },
        "description": "Creates a git blob in a repository, requiring content and encoding ('utf-8' or 'base64').",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"repo\": \"\",\n  \"owner\": \"\",\n  \"content\": \"\",\n  \"encoding\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_create_a_check_run",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/a/check/run",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "a",
            "check",
            "run"
          ]
        },
        "description": "Creates a new check run for a specific commit in a repository, used by external services to report status, detailed feedback, annotations, and images directly within the github ui.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"name\": \"\",\n  \"repo\": \"\",\n  \"owner\": \"\",\n  \"status\": \"\",\n  \"actions\": \"\",\n  \"head_sha\": \"\",\n  \"conclusion\": \"\",\n  \"started_at\": \"\",\n  \"details_url\": \"\",\n  \"external_id\": \"\",\n  \"completed_at\": \"\",\n  \"output__text\": \"\",\n  \"output__title\": \"\",\n  \"output__images\": \"\",\n  \"output__summary\": \"\",\n  \"output__annotations\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_create_a_check_suite",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/a/check/suite",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "a",
            "check",
            "suite"
          ]
        },
        "description": "Creates a new check suite for a specific commit (`head sha`) in an original repository (not a fork); github dispatches a `check suite` webhook event with the `requested` action upon success.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"repo\": \"\",\n  \"owner\": \"\",\n  \"head_sha\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_create_a_codespace_for_the_authenticated_user",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/a/codespace/for/the/authenticated/user",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "a",
            "codespace",
            "for",
            "the",
            "authenticated",
            "user"
          ]
        },
        "description": "Creates a github codespace for the authenticated user, requiring a json request body with either `repository id` (integer) or a `pull request` object (containing `pull request number` (integer) and `r",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"ref\": \"\",\n  \"pull_request\": {},\n  \"repository_id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_create_a_codespace_from_a_pull_request",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/a/codespace/from/a/pull/request",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "a",
            "codespace",
            "from",
            "a",
            "pull",
            "request"
          ]
        },
        "description": "Creates a github codespace for an open pull request in a codespaces-enabled repository, with options to customize its configuration.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"geo\": \"\",\n  \"repo\": \"\",\n  \"owner\": \"\",\n  \"machine\": \"\",\n  \"location\": \"\",\n  \"client_ip\": \"\",\n  \"pull_number\": 0,\n  \"display_name\": \"\",\n  \"devcontainer_path\": \"\",\n  \"working_directory\": \"\",\n  \"idle_timeout_minutes\": 0,\n  \"retention_period_minutes\": 0,\n  \"multi_repo_permissions_opt_out\": false\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_create_a_codespace_in_a_repository",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/a/codespace/in/a/repository",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "a",
            "codespace",
            "in",
            "a",
            "repository"
          ]
        },
        "description": "Creates a github codespace for the authenticated user in a specified repository, which must be accessible and use a valid `devcontainer.json` if `devcontainer path` is specified.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"geo\": \"\",\n  \"ref\": \"\",\n  \"repo\": \"\",\n  \"owner\": \"\",\n  \"machine\": \"\",\n  \"location\": \"\",\n  \"client_ip\": \"\",\n  \"display_name\": \"\",\n  \"devcontainer_path\": \"\",\n  \"working_directory\": \"\",\n  \"idle_timeout_minutes\": 0,\n  \"retention_period_minutes\": 0,\n  \"multi_repo_permissions_opt_out\": false\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_create_a_commit",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/a/commit",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "a",
            "commit"
          ]
        },
        "description": "Creates a new commit in a github repository; the `tree` sha and any `parents` shas must already exist in the repository.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"repo\": \"\",\n  \"tree\": \"\",\n  \"owner\": \"\",\n  \"message\": \"\",\n  \"parents\": \"\",\n  \"signature\": \"\",\n  \"author__date\": \"\",\n  \"author__name\": \"\",\n  \"author__email\": \"\",\n  \"committer__date\": \"\",\n  \"committer__name\": \"\",\n  \"committer__email\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_create_a_commit_comment",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/a/commit/comment",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "a",
            "commit",
            "comment"
          ]
        },
        "description": "Creates a comment on a specific commit, or on a specific line if `path` and `position` are provided.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"body\": \"\",\n  \"line\": 0,\n  \"path\": \"\",\n  \"repo\": \"\",\n  \"owner\": \"\",\n  \"position\": 0,\n  \"commit_sha\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_create_a_commit_status",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/a/commit/status",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "a",
            "commit",
            "status"
          ]
        },
        "description": "Sets a commit's status (e.g., error, failure, pending, success from ci/cd) for a given sha; max 1000 statuses per sha/context.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"sha\": \"\",\n  \"repo\": \"\",\n  \"owner\": \"\",\n  \"state\": \"\",\n  \"context\": \"\",\n  \"target_url\": \"\",\n  \"description\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_create_a_custom_organization_role",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/a/custom/organization/role",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "a",
            "custom",
            "organization",
            "role"
          ]
        },
        "description": "Creates a custom role with defined permissions within a github organization.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"org\": \"\",\n  \"name\": \"\",\n  \"description\": \"\",\n  \"permissions\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_create_a_deploy_key",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/a/deploy/key",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "a",
            "deploy",
            "key"
          ]
        },
        "description": "Creates a deploy key for a repository; the repository must exist and be accessible, and the provided key must be a valid public ssh key.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"key\": \"\",\n  \"repo\": \"\",\n  \"owner\": \"\",\n  \"title\": \"\",\n  \"read_only\": false\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_create_a_deployment",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/a/deployment",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "a",
            "deployment"
          ]
        },
        "description": "Creates a github deployment for an existing repository, targeting a specific ref (branch, tag, or sha) that must also exist within the repository.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"ref\": \"\",\n  \"repo\": \"\",\n  \"task\": \"\",\n  \"owner\": \"\",\n  \"payload\": \"\",\n  \"auto_merge\": false,\n  \"description\": \"\",\n  \"environment\": \"\",\n  \"required_contexts\": \"\",\n  \"transient_environment\": false,\n  \"production_environment\": false\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_create_a_deployment_branch_policy",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/a/deployment/branch/policy",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "a",
            "deployment",
            "branch",
            "policy"
          ]
        },
        "description": "Creates a deployment branch or tag policy for an existing environment in a github repository, using a ruby file.fnmatch pattern (where `*` doesn't match `/`) to specify which branches or tags are depl",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"name\": \"\",\n  \"repo\": \"\",\n  \"type\": \"\",\n  \"owner\": \"\",\n  \"environment_name\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_create_a_deployment_status",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/a/deployment/status",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "a",
            "deployment",
            "status"
          ]
        },
        "description": "Creates a status for an existing deployment, updating its operational state, associated urls, and description.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"repo\": \"\",\n  \"owner\": \"\",\n  \"state\": \"\",\n  \"log_url\": \"\",\n  \"target_url\": \"\",\n  \"description\": \"\",\n  \"environment\": \"\",\n  \"auto_inactive\": false,\n  \"deployment_id\": 0,\n  \"environment_url\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_create_a_discussion",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/a/discussion",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "a",
            "discussion"
          ]
        },
        "description": "Creates a new discussion post on a specific team's page within an organization.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"org\": \"\",\n  \"body\": \"\",\n  \"title\": \"\",\n  \"private\": false,\n  \"team_slug\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_create_a_discussion_comment",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/a/discussion/comment",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "a",
            "discussion",
            "comment"
          ]
        },
        "description": "Creates a new comment on an existing team discussion within a github organization.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"org\": \"\",\n  \"body\": \"\",\n  \"team_slug\": \"\",\n  \"discussion_number\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_create_a_fork",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/a/fork",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "a",
            "fork"
          ]
        },
        "description": "Creates a fork of an accessible repository, optionally into a specific organization, with a new name, or copying only the default branch.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"name\": \"\",\n  \"repo\": \"\",\n  \"owner\": \"\",\n  \"organization\": \"\",\n  \"default_branch_only\": false\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_create_a_gist",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/a/gist",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "a",
            "gist"
          ]
        },
        "description": "Creates a new gist on github with provided files, an optional description, and public/secret visibility.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"files\": {},\n  \"public\": false,\n  \"description\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_create_a_gist_comment",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/a/gist/comment",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "a",
            "gist",
            "comment"
          ]
        },
        "description": "Creates a new comment on a specified github gist.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"body\": \"\",\n  \"gist_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_create_a_github_app_from_a_manifest",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/a/github/app/from/a/manifest",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "a",
            "github",
            "app",
            "from",
            "a",
            "manifest"
          ]
        },
        "description": "Use this action to finalize a github app's creation by exchanging the temporary `code` (received as a url parameter during the app manifest setup redirection) for the app's full configuration details.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"code\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_create_a_github_pages_deployment",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/a/github/pages/deployment",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "a",
            "github",
            "pages",
            "deployment"
          ]
        },
        "description": "Creates a github pages deployment for a repository using a specified artifact and oidc token, provided github pages is enabled and the artifact (containing static assets) is accessible.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"repo\": \"\",\n  \"owner\": \"\",\n  \"oidc_token\": \"\",\n  \"artifact_id\": 0,\n  \"environment\": \"\",\n  \"artifact_url\": \"\",\n  \"pages_build_version\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_create_a_github_pages_site",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/a/github/pages/site",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "a",
            "github",
            "pages",
            "site"
          ]
        },
        "description": "Configures or updates github pages for a repository, setting build type and source; ensure a pages workflow exists for 'workflow' `build type`, or `source branch` exists for 'legacy' or unspecified `b",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"repo\": \"\",\n  \"owner\": \"\",\n  \"build_type\": \"\",\n  \"source__path\": \"\",\n  \"source__branch\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_create_a_label",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/a/label",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "a",
            "label"
          ]
        },
        "description": "Creates a new label in a specified github repository, provided the repository exists and the user has write permissions.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"name\": \"\",\n  \"repo\": \"\",\n  \"color\": \"\",\n  \"owner\": \"\",\n  \"description\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_create_a_milestone",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/a/milestone",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "a",
            "milestone"
          ]
        },
        "description": "Creates a milestone in a github repository for tracking progress on issues or pull requests; requires repository existence and user write permissions.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"repo\": \"\",\n  \"owner\": \"\",\n  \"state\": \"\",\n  \"title\": \"\",\n  \"due_on\": \"\",\n  \"description\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_create_a_project_card",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/a/project/card",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "a",
            "project",
            "card"
          ]
        },
        "description": "Creates a project card in a github project column; the request body must contain either a `note` for a note-only card, or both `content id` (id of an issue or pull request) and `content type` (e.g., '",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"column_id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_create_a_project_column",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/a/project/column",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "a",
            "project",
            "column"
          ]
        },
        "description": "Creates a new column in a github project (classic).",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"name\": \"\",\n  \"project_id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_create_a_pull_request",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/a/pull/request",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "a",
            "pull",
            "request"
          ]
        },
        "description": "Creates a pull request in a github repository, requiring existing `base` and `head` branches; `title` or `issue` must be provided.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"base\": \"\",\n  \"body\": \"\",\n  \"head\": \"\",\n  \"repo\": \"\",\n  \"draft\": false,\n  \"issue\": 0,\n  \"owner\": \"\",\n  \"title\": \"\",\n  \"head_repo\": \"\",\n  \"maintainer_can_modify\": false\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_create_a_reference",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/a/reference",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "a",
            "reference"
          ]
        },
        "description": "Creates a git reference (e.g., a branch or tag) in a repository; the repository must not be empty prior to this operation.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"ref\": \"\",\n  \"sha\": \"\",\n  \"repo\": \"\",\n  \"owner\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_create_a_registration_token_for_a_repository",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/a/registration/token/for/a/repository",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "a",
            "registration",
            "token",
            "for",
            "a",
            "repository"
          ]
        },
        "description": "Generates a time-limited token required to register a new self-hosted runner with a specific repository.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"repo\": \"\",\n  \"owner\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_create_a_registration_token_for_an_organization",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/a/registration/token/for/an/organization",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "a",
            "registration",
            "token",
            "for",
            "an",
            "organization"
          ]
        },
        "description": "Generates a temporary (one-hour) registration token to add a new self-hosted runner to an organization for github actions.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"org\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_create_a_release",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/a/release",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "a",
            "release"
          ]
        },
        "description": "Creates a release in a github repository for a specified tag; the tag must be unique for published releases, and if a `discussion category name` is given, it must already exist.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"body\": \"\",\n  \"name\": \"\",\n  \"repo\": \"\",\n  \"draft\": false,\n  \"owner\": \"\",\n  \"tag_name\": \"\",\n  \"prerelease\": false,\n  \"make_latest\": \"\",\n  \"target_commitish\": \"\",\n  \"generate_release_notes\": false,\n  \"discussion_category_name\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_create_a_remove_token_for_a_repository",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/a/remove/token/for/a/repository",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "a",
            "remove",
            "token",
            "for",
            "a",
            "repository"
          ]
        },
        "description": "Generates a temporary (one-hour validity) token required to unregister and remove a self-hosted runner from a repository.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"repo\": \"\",\n  \"owner\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_create_a_remove_token_for_an_organization",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/a/remove/token/for/an/organization",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "a",
            "remove",
            "token",
            "for",
            "an",
            "organization"
          ]
        },
        "description": "Generates a token, valid for one hour, to authenticate removing a self-hosted runner from an organization.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"org\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_create_a_reply_for_a_review_comment",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/a/reply/for/a/review/comment",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "a",
            "reply",
            "for",
            "a",
            "review",
            "comment"
          ]
        },
        "description": "Posts a reply to a specific review comment on a github pull request, requiring the repository, pull request, and original comment to exist, and a non-empty reply body.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"body\": \"\",\n  \"repo\": \"\",\n  \"owner\": \"\",\n  \"comment_id\": 0,\n  \"pull_number\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_create_a_repository_dispatch_event",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/a/repository/dispatch/event",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "a",
            "repository",
            "dispatch",
            "event"
          ]
        },
        "description": "Triggers a github actions workflow or a webhook on a repository by creating a repository dispatch event, allowing programmatic triggering of workflows based on events outside of github.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"repo\": \"\",\n  \"owner\": \"\",\n  \"event_type\": \"\",\n  \"client_payload\": {}\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_create_a_repository_for_the_authenticated_user",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/a/repository/for/the/authenticated/user",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "a",
            "repository",
            "for",
            "the",
            "authenticated",
            "user"
          ]
        },
        "description": "Creates a new repository for the authenticated user, optionally within an organization if `team id` is specified.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"name\": \"\",\n  \"private\": false,\n  \"team_id\": 0,\n  \"has_wiki\": false,\n  \"homepage\": \"\",\n  \"auto_init\": false,\n  \"has_issues\": false,\n  \"description\": \"\",\n  \"is_template\": false,\n  \"has_projects\": false,\n  \"has_downloads\": false,\n  \"has_discussions\": false,\n  \"allow_auto_merge\": false,\n  \"license_template\": \"\",\n  \"allow_merge_commit\": false,\n  \"allow_rebase_merge\": false,\n  \"allow_squash_merge\": false,\n  \"gitignore_template\": \"\",\n  \"merge_commit_title\": \"\",\n  \"merge_commit_message\": \"\",\n  \"delete_branch_on_merge\": false,\n  \"squash_merge_commit_title\": \"\",\n  \"squash_merge_commit_message\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_create_a_repository_from_an_unpublished_codespace",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/a/repository/from/an/unpublished/codespace",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "a",
            "repository",
            "from",
            "an",
            "unpublished",
            "codespace"
          ]
        },
        "description": "Publishes the specified codespace to a new repository, using the codespace's current state as the initial commit.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"name\": \"\",\n  \"private\": false,\n  \"codespace_name\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_create_a_repository_project",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/a/repository/project",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "a",
            "repository",
            "project"
          ]
        },
        "description": "Creates a new classic project board within a specified repository; classic projects must be enabled for the target repository.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"body\": \"\",\n  \"name\": \"\",\n  \"repo\": \"\",\n  \"owner\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_create_a_repository_ruleset",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/a/repository/ruleset",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "a",
            "repository",
            "ruleset"
          ]
        },
        "description": "Creates a uniquely named ruleset for a repository, defining rules for branches or tags with specified enforcement, conditions, and bypass actors.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"name\": \"\",\n  \"repo\": \"\",\n  \"owner\": \"\",\n  \"rules\": \"\",\n  \"target\": \"\",\n  \"enforcement\": \"\",\n  \"bypass_actors\": \"\",\n  \"conditions__ref__name__exclude\": \"\",\n  \"conditions__ref__name__include\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_create_a_repository_using_a_template",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/a/repository/using/a/template",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "a",
            "repository",
            "using",
            "a",
            "template"
          ]
        },
        "description": "Creates a new repository from an existing template repository; the authenticated user must have access to the template and, if creating in an organization, repository creation permissions within it.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"name\": \"\",\n  \"owner\": \"\",\n  \"private\": false,\n  \"description\": \"\",\n  \"template_repo\": \"\",\n  \"template_owner\": \"\",\n  \"include_all_branches\": false\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_create_a_repository_variable",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/a/repository/variable",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "a",
            "repository",
            "variable"
          ]
        },
        "description": "Creates a new, unencrypted variable in a repository for github actions workflows; fails if a variable with the same name already exists.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"name\": \"\",\n  \"repo\": \"\",\n  \"owner\": \"\",\n  \"value\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_create_a_repository_webhook",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/a/repository/webhook",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "a",
            "repository",
            "webhook"
          ]
        },
        "description": "Creates a webhook for a specified repository; requires admin permissions on the repository.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"name\": \"\",\n  \"repo\": \"\",\n  \"owner\": \"\",\n  \"active\": false,\n  \"events\": \"\",\n  \"config__url\": \"\",\n  \"config__secret\": \"\",\n  \"config__content__type\": \"\",\n  \"config__insecure__ssl\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_create_a_review_comment_for_a_pull_request",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/a/review/comment/for/a/pull/request",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "a",
            "review",
            "comment",
            "for",
            "a",
            "pull",
            "request"
          ]
        },
        "description": "Creates a review comment on a pull request's diff, targeting a specific line, range of lines, an entire file, or replying to an existing comment.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"body\": \"\",\n  \"line\": 0,\n  \"path\": \"\",\n  \"repo\": \"\",\n  \"side\": \"\",\n  \"owner\": \"\",\n  \"position\": 0,\n  \"commit_id\": \"\",\n  \"start_line\": 0,\n  \"start_side\": \"\",\n  \"in_reply_to\": 0,\n  \"pull_number\": 0,\n  \"subject_type\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_create_a_review_for_a_pull_request",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/a/review/for/a/pull/request",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "a",
            "review",
            "for",
            "a",
            "pull",
            "request"
          ]
        },
        "description": "Creates a pull request review, allowing approval, change requests, or comments; `body` is required if `event` is `request changes` or `comment`, and omitting `event` makes the review `pending`.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"body\": \"\",\n  \"repo\": \"\",\n  \"event\": \"\",\n  \"owner\": \"\",\n  \"comments\": \"\",\n  \"commit_id\": \"\",\n  \"pull_number\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_create_a_scoped_access_token",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/a/scoped/access/token",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "a",
            "scoped",
            "access",
            "token"
          ]
        },
        "description": "Exchanges a user-to-server token for a new, fine-grained scoped access token for a github app, requiring `client id`, `access token`, either `target` or `target id`, and at least one permission; for r",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"target\": \"\",\n  \"client_id\": \"\",\n  \"target_id\": 0,\n  \"access_token\": \"\",\n  \"repositories\": \"\",\n  \"repository_ids\": \"\",\n  \"permissions__pages\": \"\",\n  \"permissions__checks\": \"\",\n  \"permissions__issues\": \"\",\n  \"permissions__actions\": \"\",\n  \"permissions__members\": \"\",\n  \"permissions__profile\": \"\",\n  \"permissions__secrets\": \"\",\n  \"permissions__contents\": \"\",\n  \"permissions__metadata\": \"\",\n  \"permissions__packages\": \"\",\n  \"permissions__starring\": \"\",\n  \"permissions__statuses\": \"\",\n  \"permissions__followers\": \"\",\n  \"permissions__gpg__keys\": \"\",\n  \"permissions__workflows\": \"\",\n  \"permissions__codespaces\": \"\",\n  \"permissions__deployments\": \"\",\n  \"permissions__environments\": \"\",\n  \"permissions__single__file\": \"\",\n  \"permissions__administration\": \"\",\n  \"permissions__git__ssh__keys\": \"\",\n  \"permissions__pull__requests\": \"\",\n  \"permissions__email__addresses\": \"\",\n  \"permissions__security__events\": \"\",\n  \"permissions__repository__hooks\": \"\",\n  \"permissions__team__discussions\": \"\",\n  \"permissions__organization__plan\": \"\",\n  \"permissions__dependabot__secrets\": \"\",\n  \"permissions__interaction__limits\": \"\",\n  \"permissions__organization__hooks\": \"\",\n  \"permissions__organization__events\": \"\",\n  \"permissions__repository__projects\": \"\",\n  \"permissions__organization__secrets\": \"\",\n  \"permissions__vulnerability__alerts\": \"\",\n  \"permissions__organization__packages\": \"\",\n  \"permissions__organization__projects\": \"\",\n  \"permissions__secret__scanning__alerts\": \"\",\n  \"permissions__organization__custom__roles\": \"\",\n  \"permissions__organization__administration\": \"\",\n  \"permissions__organization__user__blocking\": \"\",\n  \"permissions__repository__custom__properties\": \"\",\n  \"permissions__organization__custom__org__roles\": \"\",\n  \"permissions__organization__custom__properties\": \"\",\n  \"permissions__organization__announcement__banners\": \"\",\n  \"permissions__organization__self__hosted__runners\": \"\",\n  \"permissions__organization__personal__access__tokens\": \"\",\n  \"permissions__organization__copilot__seat__management\": \"\",\n  \"permissions__organization__personal__access__token__requests\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_create_a_snapshot_of_dependencies_for_a_repository",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/a/snapshot/of/dependencies/for/a/repository",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "a",
            "snapshot",
            "of",
            "dependencies",
            "for",
            "a",
            "repository"
          ]
        },
        "description": "Creates a snapshot of a repository's dependencies to populate the github dependency graph and enable security alerts; `sha` must be a 40-character commit id, `ref` a fully qualified git reference (e.g",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"ref\": \"\",\n  \"sha\": \"\",\n  \"repo\": \"\",\n  \"owner\": \"\",\n  \"job__id\": \"\",\n  \"scanned\": \"\",\n  \"version\": 0,\n  \"metadata\": {},\n  \"manifests\": {},\n  \"detector__url\": \"\",\n  \"detector__name\": \"\",\n  \"job__html__url\": \"\",\n  \"job__correlator\": \"\",\n  \"detector__version\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_create_a_tag_object",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/a/tag/object",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "a",
            "tag",
            "object"
          ]
        },
        "description": "Creates an annotated git tag object in a repository, pointing to an existing git object (commit, tree, or blob) defined by its sha and ensuring the `type` field correctly specifies the object's type.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"tag\": \"\",\n  \"repo\": \"\",\n  \"type\": \"\",\n  \"owner\": \"\",\n  \"object\": \"\",\n  \"message\": \"\",\n  \"tagger__date\": \"\",\n  \"tagger__name\": \"\",\n  \"tagger__email\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_create_a_tag_protection_state_for_a_repository",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/a/tag/protection/state/for/a/repository",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "a",
            "tag",
            "protection",
            "state",
            "for",
            "a",
            "repository"
          ]
        },
        "description": "Creates a tag protection rule for a repository using a glob pattern; note: tag protections are deprecated (sunset august 30, 2024), migrate to repository rulesets.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"repo\": \"\",\n  \"owner\": \"\",\n  \"pattern\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_create_a_team",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/a/team",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "a",
            "team"
          ]
        },
        "description": "Creates a new team in an organization, optionally with maintainers, repositories, specific privacy, notification settings, or a parent team; if `parent team id` is given, `privacy` must be 'closed'.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"org\": \"\",\n  \"name\": \"\",\n  \"privacy\": \"\",\n  \"permission\": \"\",\n  \"repo_names\": \"\",\n  \"description\": \"\",\n  \"maintainers\": \"\",\n  \"parent_team_id\": 0,\n  \"notification_setting\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_create_a_temporary_private_fork",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/a/temporary/private/fork",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "a",
            "temporary",
            "private",
            "fork"
          ]
        },
        "description": "Creates a temporary private fork of the specified repository to address a security vulnerability, linking the fork to a ghsa id that must be specifically associated with this repository; the fork may ",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"repo\": \"\",\n  \"owner\": \"\",\n  \"ghsa_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_create_a_tree",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/a/tree",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "a",
            "tree"
          ]
        },
        "description": "Creates a new git tree object in a repository, defining file/directory structure by specifying tree entries, optionally building on a `base tree` sha; all provided shas must be valid.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"repo\": \"\",\n  \"tree\": \"\",\n  \"owner\": \"\",\n  \"base_tree\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_create_a_user_project",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/a/user/project",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "a",
            "user",
            "project"
          ]
        },
        "description": "Creates a new github project board for the authenticated user to organize and track issues, pull requests, and notes.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"body\": \"\",\n  \"name\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_create_a_workflow_dispatch_event",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/a/workflow/dispatch/event",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "a",
            "workflow",
            "dispatch",
            "event"
          ]
        },
        "description": "Manually triggers a github actions workflow identified by `workflow id` at a given `ref`, if the workflow is configured to accept `workflow dispatch` events.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"ref\": \"\",\n  \"repo\": \"\",\n  \"owner\": \"\",\n  \"inputs\": {},\n  \"workflow_id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_create_an_autolink_reference_for_a_repository",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/an/autolink/reference/for/a/repository",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "an",
            "autolink",
            "reference",
            "for",
            "a",
            "repository"
          ]
        },
        "description": "Creates a repository autolink to automatically convert text references (e.g., 'ticket-123') into hyperlinks, using a unique `key prefix` and a `url template` that includes `<num>`.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"repo\": \"\",\n  \"owner\": \"\",\n  \"key_prefix\": \"\",\n  \"url_template\": \"\",\n  \"is_alphanumeric\": false\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_create_an_environment_variable",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/an/environment/variable",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "an",
            "environment",
            "variable"
          ]
        },
        "description": "Creates an encrypted environment variable for a pre-existing environment within a github repository; will fail if the variable name already exists.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"name\": \"\",\n  \"repo\": \"\",\n  \"owner\": \"\",\n  \"value\": \"\",\n  \"environment_name\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_create_an_issue",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/an/issue",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "an",
            "issue"
          ]
        },
        "description": "Creates a new issue in a github repository, requiring the repository to exist and have issues enabled; specific fields like assignees, milestone, or labels may require push access.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"body\": \"\",\n  \"repo\": \"\",\n  \"owner\": \"\",\n  \"title\": \"\",\n  \"labels\": \"\",\n  \"assignee\": \"\",\n  \"assignees\": \"\",\n  \"milestone\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_create_an_issue_comment",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/an/issue/comment",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "an",
            "issue",
            "comment"
          ]
        },
        "description": "Creates a new comment on an existing github issue or pull request within the specified repository.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"body\": \"\",\n  \"repo\": \"\",\n  \"owner\": \"\",\n  \"issue_number\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_create_an_organization_project",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/an/organization/project",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "an",
            "organization",
            "project"
          ]
        },
        "description": "Creates a new classic project board within a specified github organization.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"org\": \"\",\n  \"body\": \"\",\n  \"name\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_create_an_organization_repository",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/an/organization/repository",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "an",
            "organization",
            "repository"
          ]
        },
        "description": "Creates a new repository within a specified github organization, with options for detailed configuration including visibility, features, merge strategies, initial commit, and templates.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"org\": \"\",\n  \"name\": \"\",\n  \"private\": false,\n  \"team_id\": 0,\n  \"has_wiki\": false,\n  \"homepage\": \"\",\n  \"auto_init\": false,\n  \"has_issues\": false,\n  \"visibility\": \"\",\n  \"description\": \"\",\n  \"is_template\": false,\n  \"has_projects\": false,\n  \"has_downloads\": false,\n  \"allow_auto_merge\": false,\n  \"license_template\": \"\",\n  \"custom_properties\": {},\n  \"allow_merge_commit\": false,\n  \"allow_rebase_merge\": false,\n  \"allow_squash_merge\": false,\n  \"gitignore_template\": \"\",\n  \"merge_commit_title\": \"\",\n  \"merge_commit_message\": \"\",\n  \"delete_branch_on_merge\": false,\n  \"squash_merge_commit_title\": \"\",\n  \"squash_merge_commit_message\": \"\",\n  \"use_squash_pr_title_as_default\": false\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_create_an_organization_variable",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/an/organization/variable",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "an",
            "organization",
            "variable"
          ]
        },
        "description": "Creates a new, uniquely named github actions variable for an organization, with configurable repository access visibility (all, private, or selected).",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"org\": \"\",\n  \"name\": \"\",\n  \"value\": \"\",\n  \"visibility\": \"\",\n  \"selected_repository_ids\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_create_an_organization_webhook",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/an/organization/webhook",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "an",
            "organization",
            "webhook"
          ]
        },
        "description": "Creates a webhook for a github organization to deliver event notifications to a configured url.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"org\": \"\",\n  \"name\": \"\",\n  \"active\": false,\n  \"events\": \"\",\n  \"config__url\": \"\",\n  \"config__secret\": \"\",\n  \"config__password\": \"\",\n  \"config__username\": \"\",\n  \"config__content__type\": \"\",\n  \"config__insecure__ssl\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_create_commit_signature_protection",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/commit/signature/protection",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "commit",
            "signature",
            "protection"
          ]
        },
        "description": "Enables commit signature protection for a specified branch, requiring all new commits to be signed.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"repo\": \"\",\n  \"owner\": \"\",\n  \"branch\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_create_deployment_protection_rule",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/deployment/protection/rule",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "deployment",
            "protection",
            "rule"
          ]
        },
        "description": "Enables a custom deployment protection rule for an existing environment in a repository by linking a configured github app (via `integration id`) to control deployments.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"repo\": \"\",\n  \"owner\": \"\",\n  \"integration_id\": 0,\n  \"environment_name\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_create_jit_runner_config",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/jit/runner/config",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "jit",
            "runner",
            "config"
          ]
        },
        "description": "Generates a temporary just-in-time (jit) configuration for a new self-hosted github actions runner for a repository; any specified non-default `runner group id` must be an existing runner group access",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"name\": \"\",\n  \"repo\": \"\",\n  \"owner\": \"\",\n  \"labels\": \"\",\n  \"work_folder\": \"\",\n  \"runner_group_id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_create_or_update_a_custom_property_for_an_organization",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/or/update/a/custom/property/for/an/organization",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "or",
            "update",
            "a",
            "custom",
            "property",
            "for",
            "an",
            "organization"
          ]
        },
        "description": "Creates a new custom property (name must be unique for creation) or updates an existing one for an organization to define metadata for its repositories.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"org\": \"\",\n  \"required\": false,\n  \"value_type\": \"\",\n  \"description\": \"\",\n  \"default_value\": \"\",\n  \"allowed_values\": \"\",\n  \"custom_property_name\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_create_or_update_a_repository_secret",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/or/update/a/repository/secret",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "or",
            "update",
            "a",
            "repository",
            "secret"
          ]
        },
        "description": "Creates or updates a github actions secret within a specific repository; use `encrypted value` and `key id` to set or change its value.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"repo\": \"\",\n  \"owner\": \"\",\n  \"key_id\": \"\",\n  \"secret_name\": \"\",\n  \"encrypted_value\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_create_or_update_a_secret_for_the_authenticated_user",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/or/update/a/secret/for/the/authenticated/user",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "or",
            "update",
            "a",
            "secret",
            "for",
            "the",
            "authenticated",
            "user"
          ]
        },
        "description": "Creates or updates a codespaces secret for the authenticated user; `encrypted value` must be encrypted with the public key (id: `key id`) from github's 'get public key for the authenticated user' endp",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"key_id\": \"\",\n  \"secret_name\": \"\",\n  \"encrypted_value\": \"\",\n  \"selected_repository_ids\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_create_or_update_an_environment",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/or/update/an/environment",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "or",
            "update",
            "an",
            "environment"
          ]
        },
        "description": "Creates a new environment or updates an existing one in a github repository, allowing configuration of deployment protection rules such as wait timers and reviewers; ensure `environment name` is url-e",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"repo\": \"\",\n  \"owner\": \"\",\n  \"reviewers\": \"\",\n  \"wait_timer\": 0,\n  \"environment_name\": \"\",\n  \"prevent_self_review\": false,\n  \"deployment__branch__policy__protected__branches\": false,\n  \"deployment__branch__policy__custom__branch__policies\": false\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_create_or_update_an_environment_secret",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/or/update/an/environment/secret",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "or",
            "update",
            "an",
            "environment",
            "secret"
          ]
        },
        "description": "Creates or updates an environment secret with an `encrypted value` that was encrypted using the public key identified by `key id` for the specified environment.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"repo\": \"\",\n  \"owner\": \"\",\n  \"key_id\": \"\",\n  \"secret_name\": \"\",\n  \"encrypted_value\": \"\",\n  \"environment_name\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_create_or_update_an_organization_secret",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/or/update/an/organization/secret",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "or",
            "update",
            "an",
            "organization",
            "secret"
          ]
        },
        "description": "Creates or updates an organization secret for github actions, requiring its value to be pre-encrypted via libsodium using the organization's public key.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"org\": \"\",\n  \"key_id\": \"\",\n  \"visibility\": \"\",\n  \"secret_name\": \"\",\n  \"encrypted_value\": \"\",\n  \"selected_repository_ids\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_create_or_update_custom_properties_for_an_organization",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/or/update/custom/properties/for/an/organization",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "or",
            "update",
            "custom",
            "properties",
            "for",
            "an",
            "organization"
          ]
        },
        "description": "Creates new custom property schemas or updates existing ones in bulk for a specified organization; each property definition must include `property name` and `value type`.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"org\": \"\",\n  \"properties\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_create_or_update_custom_property_values_for_a_repository",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/or/update/custom/property/values/for/a/repository",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "or",
            "update",
            "custom",
            "property",
            "values",
            "for",
            "a",
            "repository"
          ]
        },
        "description": "Creates or updates up to 30 custom property values for a repository; custom properties must be predefined at the organization or repository level, and setting a property's value to `null` removes it.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"repo\": \"\",\n  \"owner\": \"\",\n  \"properties\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_create_or_update_file_contents",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/or/update/file/contents",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "or",
            "update",
            "file",
            "contents"
          ]
        },
        "description": "Creates a new file or updates an existing file in a github repository; provide `sha` to update an existing file, otherwise a new file is created.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"sha\": \"\",\n  \"path\": \"\",\n  \"repo\": \"\",\n  \"owner\": \"\",\n  \"branch\": \"\",\n  \"content\": \"\",\n  \"message\": \"\",\n  \"author__date\": \"\",\n  \"author__name\": \"\",\n  \"author__email\": \"\",\n  \"committer__date\": \"\",\n  \"committer__name\": \"\",\n  \"committer__email\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_create_or_update_repo_secret_with_encrypted_value",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/or/update/repo/secret/with/encrypted/value",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "or",
            "update",
            "repo",
            "secret",
            "with",
            "encrypted",
            "value"
          ]
        },
        "description": "Creates or updates a dependabot secret in a repository using an `encrypted value` (pre-encrypted with libsodium using the repository's dependabot public key) and its corresponding `key id`.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"repo\": \"\",\n  \"owner\": \"\",\n  \"key_id\": \"\",\n  \"secret_name\": \"\",\n  \"encrypted_value\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_create_reaction_for_a_commit_comment",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/reaction/for/a/commit/comment",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "reaction",
            "for",
            "a",
            "commit",
            "comment"
          ]
        },
        "description": "Creates an emoji reaction for a commit comment; if the user has already reacted with the same content, details of the existing reaction are returned.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"repo\": \"\",\n  \"owner\": \"\",\n  \"content\": \"\",\n  \"comment_id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_create_reaction_for_a_pull_request_review_comment",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/reaction/for/a/pull/request/review/comment",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "reaction",
            "for",
            "a",
            "pull",
            "request",
            "review",
            "comment"
          ]
        },
        "description": "Adds a specified reaction to a pull request review comment within a github repository.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"repo\": \"\",\n  \"owner\": \"\",\n  \"content\": \"\",\n  \"comment_id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_create_reaction_for_a_release",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/reaction/for/a/release",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "reaction",
            "for",
            "a",
            "release"
          ]
        },
        "description": "Creates an emoji reaction for a specific, existing release in a github repository.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"repo\": \"\",\n  \"owner\": \"\",\n  \"content\": \"\",\n  \"release_id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_create_reaction_for_a_team_discussion",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/reaction/for/a/team/discussion",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "reaction",
            "for",
            "a",
            "team",
            "discussion"
          ]
        },
        "description": "Creates a reaction for a team discussion within a github organization.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"org\": \"\",\n  \"content\": \"\",\n  \"team_slug\": \"\",\n  \"discussion_number\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_create_reaction_for_a_team_discussion_comment",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/reaction/for/a/team/discussion/comment",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "reaction",
            "for",
            "a",
            "team",
            "discussion",
            "comment"
          ]
        },
        "description": "Adds a reaction to a team discussion comment, requiring the specified organization, team, discussion, and comment to exist.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"org\": \"\",\n  \"content\": \"\",\n  \"team_slug\": \"\",\n  \"comment_number\": 0,\n  \"discussion_number\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_create_reaction_for_an_issue",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/reaction/for/an/issue",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "reaction",
            "for",
            "an",
            "issue"
          ]
        },
        "description": "Creates a reaction for a specified issue within a github repository.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"repo\": \"\",\n  \"owner\": \"\",\n  \"content\": \"\",\n  \"issue_number\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_create_reaction_for_an_issue_comment",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/reaction/for/an/issue/comment",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "reaction",
            "for",
            "an",
            "issue",
            "comment"
          ]
        },
        "description": "Creates a reaction for a specific comment on an issue within a github repository.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"repo\": \"\",\n  \"owner\": \"\",\n  \"content\": \"\",\n  \"comment_id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_create_update_org_secret_with_lib_sodium",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/update/org/secret/with/lib/sodium",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "update",
            "org",
            "secret",
            "with",
            "lib",
            "sodium"
          ]
        },
        "description": "Creates or updates a dependabot organization secret, requiring the secret value to be pre-encrypted with libsodium using the organization's public key obtained from the 'get an organization public key",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"org\": \"\",\n  \"key_id\": \"\",\n  \"visibility\": \"\",\n  \"secret_name\": \"\",\n  \"encrypted_value\": \"\",\n  \"selected_repository_ids\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_custom_oidcsubject_claim_template",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/custom/oidcsubject/claim/template",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "custom",
            "oidcsubject",
            "claim",
            "template"
          ]
        },
        "description": "Retrieves the openid connect (oidc) subject claim customization template for a github organization, which defines how the `sub` claim in oidc tokens for workflows is constructed.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"org\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_custom_oidcsubject_claim_template_setter",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/custom/oidcsubject/claim/template/setter",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "custom",
            "oidcsubject",
            "claim",
            "template",
            "setter"
          ]
        },
        "description": "Sets the openid connect (oidc) subject claim template for a github repository, allowing use of the default template or a custom one defined by `include claim keys` if `use default` is `false`.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"repo\": \"\",\n  \"owner\": \"\",\n  \"use_default\": false,\n  \"include_claim_keys\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_customize_oidc_subject_claim_template",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/customize/oidc/subject/claim/template",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "customize",
            "oidc",
            "subject",
            "claim",
            "template"
          ]
        },
        "description": "Retrieves the openid connect (oidc) subject claim customization template for a repository, which defines the `sub` claim structure in oidc tokens for github actions workflows; returns the default conf",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"repo\": \"\",\n  \"owner\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_decline_a_repository_invitation",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/decline/a/repository/invitation",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "decline",
            "a",
            "repository",
            "invitation"
          ]
        },
        "description": "Declines a specific, pending repository invitation for the authenticated user, identified by its `invitation id`.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"invitation_id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_delete_a_code_scanning_analysis_from_a_repository",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/a/code/scanning/analysis/from/a/repository",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "a",
            "code",
            "scanning",
            "analysis",
            "from",
            "a",
            "repository"
          ]
        },
        "description": "Deletes a specific code scanning analysis by its id from a repository; `confirm delete` must be `true` if it's the last analysis of its type for a given tool and reference to prevent data loss.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"repo\": \"\",\n  \"owner\": \"\",\n  \"analysis_id\": 0,\n  \"confirm_delete\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_delete_a_codespace_for_the_authenticated_user",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/a/codespace/for/the/authenticated/user",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "a",
            "codespace",
            "for",
            "the",
            "authenticated",
            "user"
          ]
        },
        "description": "Deletes a specific codespace owned by the authenticated user; this is a destructive action and the codespace must exist.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"codespace_name\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_delete_a_codespace_from_the_organization",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/a/codespace/from/the/organization",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "a",
            "codespace",
            "from",
            "the",
            "organization"
          ]
        },
        "description": "Permanently deletes a specific codespace belonging to a member of the specified organization.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"org\": \"\",\n  \"username\": \"\",\n  \"codespace_name\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_delete_a_commit_comment",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/a/commit/comment",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "a",
            "commit",
            "comment"
          ]
        },
        "description": "Deletes a specific commit comment, identified by its `comment id`, from the specified repository; the comment must exist.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"repo\": \"\",\n  \"owner\": \"\",\n  \"comment_id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_delete_a_commit_comment_reaction",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/a/commit/comment/reaction",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "a",
            "commit",
            "comment",
            "reaction"
          ]
        },
        "description": "Deletes a reaction from a commit comment in a github repository.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"repo\": \"\",\n  \"owner\": \"\",\n  \"comment_id\": 0,\n  \"reaction_id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_delete_a_custom_organization_role",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/a/custom/organization/role",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "a",
            "custom",
            "organization",
            "role"
          ]
        },
        "description": "Deletes a custom organization role (which should not be actively assigned) by its id; a 204 no content response indicates success.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"org\": \"\",\n  \"role_id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_delete_a_deploy_key",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/a/deploy/key",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "a",
            "deploy",
            "key"
          ]
        },
        "description": "Deletes a specific deploy key from a repository; to change a key's properties or access scope, the existing key must be deleted and a new one created.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"repo\": \"\",\n  \"owner\": \"\",\n  \"key_id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_delete_a_deployment",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/a/deployment",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "a",
            "deployment"
          ]
        },
        "description": "Permanently deletes a specified *inactive* deployment from a repository.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"repo\": \"\",\n  \"owner\": \"\",\n  \"deployment_id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_delete_a_deployment_branch_policy",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/a/deployment/branch/policy",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "a",
            "deployment",
            "branch",
            "policy"
          ]
        },
        "description": "Deletes a specific deployment branch or tag policy, identified by its id, from a given environment within a repository.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"repo\": \"\",\n  \"owner\": \"\",\n  \"branch_policy_id\": 0,\n  \"environment_name\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_delete_a_discussion",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/a/discussion",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "a",
            "discussion"
          ]
        },
        "description": "Deletes a specific team discussion, identified by its number, from an organization's team.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"org\": \"\",\n  \"team_slug\": \"\",\n  \"discussion_number\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_delete_a_discussion_comment",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/a/discussion/comment",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "a",
            "discussion",
            "comment"
          ]
        },
        "description": "Deletes a specific comment from an existing team discussion within an organization, provided the specified organization, team, discussion, and comment all exist.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"org\": \"\",\n  \"team_slug\": \"\",\n  \"comment_number\": 0,\n  \"discussion_number\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_delete_a_file",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/a/file",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "a",
            "file"
          ]
        },
        "description": "Deletes a file by path from a github repository, requiring a commit message and the file's current blob sha to confirm the deletion.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"sha\": \"\",\n  \"path\": \"\",\n  \"repo\": \"\",\n  \"owner\": \"\",\n  \"branch\": \"\",\n  \"message\": \"\",\n  \"author__name\": \"\",\n  \"author__email\": \"\",\n  \"committer__name\": \"\",\n  \"committer__email\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_delete_a_gist",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/a/gist",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "a",
            "gist"
          ]
        },
        "description": "Permanently deletes an existing github gist, specified by its `gist id`; this action is destructive and cannot be undone.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"gist_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_delete_a_gist_comment",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/a/gist/comment",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "a",
            "gist",
            "comment"
          ]
        },
        "description": "Deletes a specific comment from a github gist using its `gist id` and `comment id`.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"gist_id\": \"\",\n  \"comment_id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_delete_a_github_pages_site",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/a/github/pages/site",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "a",
            "github",
            "pages",
            "site"
          ]
        },
        "description": "Deletes the github pages site for the specified repository; completes without error if no site is currently enabled.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"repo\": \"\",\n  \"owner\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_delete_a_label",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/a/label",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "a",
            "label"
          ]
        },
        "description": "Permanently removes an existing label from a repository.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"name\": \"\",\n  \"repo\": \"\",\n  \"owner\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_delete_a_milestone",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/a/milestone",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "a",
            "milestone"
          ]
        },
        "description": "Deletes the specified milestone if it exists; this operation is idempotent, typically returning a 404 if the milestone is not found or already deleted.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"repo\": \"\",\n  \"owner\": \"\",\n  \"milestone_number\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_delete_a_package_for_a_user",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/a/package/for/a/user",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "a",
            "package",
            "for",
            "a",
            "user"
          ]
        },
        "description": "Deletes a package owned by the specified user, requiring admin permissions for the authenticated user; deletion of public packages with over 5,000 downloads may require github support.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"username\": \"\",\n  \"package_name\": \"\",\n  \"package_type\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_delete_a_package_for_an_organization",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/a/package/for/an/organization",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "a",
            "package",
            "for",
            "an",
            "organization"
          ]
        },
        "description": "Deletes a specific package in an organization; cannot delete public packages with over 5,000 downloads.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"org\": \"\",\n  \"package_name\": \"\",\n  \"package_type\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_delete_a_package_for_the_authenticated_user",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/a/package/for/the/authenticated/user",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "a",
            "package",
            "for",
            "the",
            "authenticated",
            "user"
          ]
        },
        "description": "Permanently deletes a specific package owned by the authenticated user; public packages downloaded over 5,000 times cannot be deleted via this api.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"package_name\": \"\",\n  \"package_type\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_delete_a_package_version_for_the_authenticated_user",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/a/package/version/for/the/authenticated/user",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "a",
            "package",
            "version",
            "for",
            "the",
            "authenticated",
            "user"
          ]
        },
        "description": "Deletes an existing package version associated with the authenticated user.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"package_name\": \"\",\n  \"package_type\": \"\",\n  \"package_version_id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_delete_a_pending_review_for_a_pull_request",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/a/pending/review/for/a/pull/request",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "a",
            "pending",
            "review",
            "for",
            "a",
            "pull",
            "request"
          ]
        },
        "description": "Deletes a pending (unsubmitted) review from a pull request; this is only possible if the review has not yet been submitted.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"repo\": \"\",\n  \"owner\": \"\",\n  \"review_id\": 0,\n  \"pull_number\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_delete_a_project",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/a/project",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "a",
            "project"
          ]
        },
        "description": "Deletes the github project specified by `project id` if the project exists and the projects feature is enabled for its repository or organization; a successful deletion results in a 204 no content res",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"project_id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_delete_a_project_card",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/a/project/card",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "a",
            "project",
            "card"
          ]
        },
        "description": "Deletes a project card from a github 'project (classic)'; this operation is idempotent.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"card_id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_delete_a_project_column",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/a/project/column",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "a",
            "project",
            "column"
          ]
        },
        "description": "Deletes a project column by its id from a github project (classic); this is a destructive operation.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"column_id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_delete_a_pull_request_comment_reaction",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/a/pull/request/comment/reaction",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "a",
            "pull",
            "request",
            "comment",
            "reaction"
          ]
        },
        "description": "Deletes a specific reaction from a pull request review comment, provided the comment and reaction exist on that comment within the specified repository.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"repo\": \"\",\n  \"owner\": \"\",\n  \"comment_id\": 0,\n  \"reaction_id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_delete_a_reference",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/a/reference",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "a",
            "reference"
          ]
        },
        "description": "Deletes a git reference from a repository; 'ref' must be fully qualified (e.g., 'refs/heads/branch' or 'refs/tags/tag').",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"ref\": \"\",\n  \"repo\": \"\",\n  \"owner\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_delete_a_release",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/a/release",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "a",
            "release"
          ]
        },
        "description": "Permanently deletes a specific release, its assets, and potentially its associated git tag from a repository.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"repo\": \"\",\n  \"owner\": \"\",\n  \"release_id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_delete_a_release_asset",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/a/release/asset",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "a",
            "release",
            "asset"
          ]
        },
        "description": "Deletes a specific release asset from a github repository; this action is idempotent.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"repo\": \"\",\n  \"owner\": \"\",\n  \"asset_id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_delete_a_release_reaction",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/a/release/reaction",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "a",
            "release",
            "reaction"
          ]
        },
        "description": "Deletes a reaction from a github release, provided the repository, release, and reaction exist.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"repo\": \"\",\n  \"owner\": \"\",\n  \"release_id\": 0,\n  \"reaction_id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_delete_a_repository",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/a/repository",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "a",
            "repository"
          ]
        },
        "description": "Permanently deletes the specified repository; this is a destructive, irreversible action that requires admin privileges for the repository.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"repo\": \"\",\n  \"owner\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_delete_a_repository_invitation",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/a/repository/invitation",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "a",
            "repository",
            "invitation"
          ]
        },
        "description": "Deletes an active repository invitation, permanently revoking a user's access to collaborate on the specified repository.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"repo\": \"\",\n  \"owner\": \"\",\n  \"invitation_id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_delete_a_repository_ruleset",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/a/repository/ruleset",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "a",
            "repository",
            "ruleset"
          ]
        },
        "description": "Permanently deletes a repository ruleset.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"repo\": \"\",\n  \"owner\": \"\",\n  \"ruleset_id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_delete_a_repository_secret",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/a/repository/secret",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "a",
            "repository",
            "secret"
          ]
        },
        "description": "Deletes a named github actions secret from a specified repository; this operation is destructive and idempotent, and requires the repository to exist.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"repo\": \"\",\n  \"owner\": \"\",\n  \"secret_name\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_delete_a_repository_subscription",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/a/repository/subscription",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "a",
            "repository",
            "subscription"
          ]
        },
        "description": "Deletes the authenticated user's subscription to a specified repository if it exists, effectively 'unwatching' it.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"repo\": \"\",\n  \"owner\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_delete_a_repository_variable",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/a/repository/variable",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "a",
            "repository",
            "variable"
          ]
        },
        "description": "Deletes a named variable (e.g., for github actions workflows) from a repository; the repository and the variable must already exist.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"name\": \"\",\n  \"repo\": \"\",\n  \"owner\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_delete_a_repository_webhook",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/a/repository/webhook",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "a",
            "repository",
            "webhook"
          ]
        },
        "description": "Deletes a specific webhook from a repository.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"repo\": \"\",\n  \"owner\": \"\",\n  \"hook_id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_delete_a_review_comment_for_a_pull_request",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/a/review/comment/for/a/pull/request",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "a",
            "review",
            "comment",
            "for",
            "a",
            "pull",
            "request"
          ]
        },
        "description": "Deletes a specific pull request review comment.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"repo\": \"\",\n  \"owner\": \"\",\n  \"comment_id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_delete_a_secret_for_the_authenticated_user",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/a/secret/for/the/authenticated/user",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "a",
            "secret",
            "for",
            "the",
            "authenticated",
            "user"
          ]
        },
        "description": "Deletes an existing codespaces secret for the authenticated user by `secret name`; this is a destructive, irreversible, and idempotent operation.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"secret_name\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_delete_a_self_hosted_runner_from_a_repository",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/a/self/hosted/runner/from/a/repository",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "a",
            "self",
            "hosted",
            "runner",
            "from",
            "a",
            "repository"
          ]
        },
        "description": "Removes a specific self-hosted runner (by `runner id`) from a repository, if registered there; this is idempotent.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"repo\": \"\",\n  \"owner\": \"\",\n  \"runner_id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_delete_a_self_hosted_runner_from_an_organization",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/a/self/hosted/runner/from/an/organization",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "a",
            "self",
            "hosted",
            "runner",
            "from",
            "an",
            "organization"
          ]
        },
        "description": "Deletes an existing and registered self-hosted runner from an organization, typically returning 204 no content on success.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"org\": \"\",\n  \"runner_id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_delete_a_tag_protection_state_for_a_repository",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/a/tag/protection/state/for/a/repository",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "a",
            "tag",
            "protection",
            "state",
            "for",
            "a",
            "repository"
          ]
        },
        "description": "Permanently deletes a specific tag protection rule, identified by its id, from the given repository.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"repo\": \"\",\n  \"owner\": \"\",\n  \"tag_protection_id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_delete_a_team",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/a/team",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "a",
            "team"
          ]
        },
        "description": "Deletes a team (and any child teams) from an organization.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"org\": \"\",\n  \"team_slug\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_delete_a_thread_subscription",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/a/thread/subscription",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "a",
            "thread",
            "subscription"
          ]
        },
        "description": "Call this to mute a specific notification thread by deleting the user's subscription; notifications may still occur if the user is @mentioned, comments, or due to repository watch settings.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"thread_id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_delete_a_workflow_run",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/a/workflow/run",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "a",
            "workflow",
            "run"
          ]
        },
        "description": "Deletes a specific workflow run from a repository.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"repo\": \"\",\n  \"owner\": \"\",\n  \"run_id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_delete_access_restrictions",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/access/restrictions",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "access",
            "restrictions"
          ]
        },
        "description": "Removes all user, team, and app-based access restrictions from a protected branch.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"repo\": \"\",\n  \"owner\": \"\",\n  \"branch\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_delete_admin_branch_protection",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/admin/branch/protection",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "admin",
            "branch",
            "protection"
          ]
        },
        "description": "Removes admin enforcement from a protected branch (branch name cannot contain wildcard characters) in a repository.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"repo\": \"\",\n  \"owner\": \"\",\n  \"branch\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_delete_an_app_authorization",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/an/app/authorization",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "an",
            "app",
            "authorization"
          ]
        },
        "description": "Revokes a single, specific oauth access token for an oauth app, not all authorizations for the app.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"client_id\": \"\",\n  \"access_token\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_delete_an_app_token",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/an/app/token",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "an",
            "app",
            "token"
          ]
        },
        "description": "Revokes an oauth access token for a github app, if the app exists and the token was issued to it.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"client_id\": \"\",\n  \"access_token\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_delete_an_artifact",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/an/artifact",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "an",
            "artifact"
          ]
        },
        "description": "Deletes a github artifact by its id within a repository, typically resulting in an empty response (http 204 no content) on success.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"repo\": \"\",\n  \"owner\": \"\",\n  \"artifact_id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_delete_an_autolink_reference_from_a_repository",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/an/autolink/reference/from/a/repository",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "an",
            "autolink",
            "reference",
            "from",
            "a",
            "repository"
          ]
        },
        "description": "Deletes a specific autolink reference (which automatically links external resource ids like jira-123 to urls) from the specified repository.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"repo\": \"\",\n  \"owner\": \"\",\n  \"autolink_id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_delete_an_email_address_for_the_authenticated_user",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/an/email/address/for/the/authenticated/user",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "an",
            "email",
            "address",
            "for",
            "the",
            "authenticated",
            "user"
          ]
        },
        "description": "Sends an empty request body to `delete /user/emails` to attempt deletion of user email addresses; the api typically requires specific emails, so outcome may vary.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"emails\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_delete_an_environment",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/an/environment",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "an",
            "environment"
          ]
        },
        "description": "Deletes an existing deployment environment from an existing repository.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"repo\": \"\",\n  \"owner\": \"\",\n  \"environment_name\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_delete_an_environment_secret",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/an/environment/secret",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "an",
            "environment",
            "secret"
          ]
        },
        "description": "Deletes an existing and accessible secret from a specified environment within a github repository, returning an empty dictionary on success or error details otherwise.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"repo\": \"\",\n  \"owner\": \"\",\n  \"secret_name\": \"\",\n  \"environment_name\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_delete_an_environment_variable",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/an/environment/variable",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "an",
            "environment",
            "variable"
          ]
        },
        "description": "Deletes a named environment variable from a specified, existing environment within a github repository.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"name\": \"\",\n  \"repo\": \"\",\n  \"owner\": \"\",\n  \"environment_name\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_delete_an_issue_comment",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/an/issue/comment",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "an",
            "issue",
            "comment"
          ]
        },
        "description": "Permanently deletes a specific comment by its id from an issue or pull request, if the repository exists and the comment id is valid.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"repo\": \"\",\n  \"owner\": \"\",\n  \"comment_id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_delete_an_issue_comment_reaction",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/an/issue/comment/reaction",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "an",
            "issue",
            "comment",
            "reaction"
          ]
        },
        "description": "Deletes a reaction from an issue comment in a repository; the repository, comment, and reaction must exist.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"repo\": \"\",\n  \"owner\": \"\",\n  \"comment_id\": 0,\n  \"reaction_id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_delete_an_issue_reaction",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/an/issue/reaction",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "an",
            "issue",
            "reaction"
          ]
        },
        "description": "Permanently removes a specific reaction from an issue in a github repository.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"repo\": \"\",\n  \"owner\": \"\",\n  \"reaction_id\": 0,\n  \"issue_number\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_delete_an_organization",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/an/organization",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "an",
            "organization"
          ]
        },
        "description": "Deletes a github organization and its repositories; this is a destructive action and the organization name will be unavailable for reuse for approximately 90 days.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"org\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_delete_an_organization_secret",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/an/organization/secret",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "an",
            "organization",
            "secret"
          ]
        },
        "description": "Permanently deletes a secret from a github organization, making it inaccessible to github actions workflows or other tools.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"org\": \"\",\n  \"secret_name\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_delete_an_organization_variable",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/an/organization/variable",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "an",
            "organization",
            "variable"
          ]
        },
        "description": "Deletes a named github actions variable from a specified organization.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"org\": \"\",\n  \"name\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_delete_an_organization_webhook",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/an/organization/webhook",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "an",
            "organization",
            "webhook"
          ]
        },
        "description": "Deletes a specific webhook, identified by `hook id`, from an existing organization.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"org\": \"\",\n  \"hook_id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_delete_branch_protection",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/branch/protection",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "branch",
            "protection"
          ]
        },
        "description": "Removes all protection rules from a specific branch in a github repository; the branch must currently have protection rules enabled.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"repo\": \"\",\n  \"owner\": \"\",\n  \"branch\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_delete_commit_signature_protection",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/commit/signature/protection",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "commit",
            "signature",
            "protection"
          ]
        },
        "description": "Disables gpg commit signature protection for a specific branch in a github repository, meaning commits pushed to this branch no longer require gpg signing.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"repo\": \"\",\n  \"owner\": \"\",\n  \"branch\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_delete_dependebot_secret_by_name",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/dependebot/secret/by/name",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "dependebot",
            "secret",
            "by",
            "name"
          ]
        },
        "description": "Deletes a specific dependabot secret, identified by its name, from a given repository if both the repository and secret exist.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"repo\": \"\",\n  \"owner\": \"\",\n  \"secret_name\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_delete_github_actions_cache_by_id",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/github/actions/cache/by/id",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "github",
            "actions",
            "cache",
            "by",
            "id"
          ]
        },
        "description": "Deletes a specific github actions cache from a repository using its unique `cache id`.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"repo\": \"\",\n  \"owner\": \"\",\n  \"cache_id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_delete_package_version_for_a_user",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/package/version/for/a/user",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "package",
            "version",
            "for",
            "a",
            "user"
          ]
        },
        "description": "Permanently and irreversibly deletes a specific version of a package owned by the specified user.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"username\": \"\",\n  \"package_name\": \"\",\n  \"package_type\": \"\",\n  \"package_version_id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_delete_package_version_for_an_organization",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/package/version/for/an/organization",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "package",
            "version",
            "for",
            "an",
            "organization"
          ]
        },
        "description": "Deletes a specific package version within an organization; requires admin permissions for packages with over 5,000 downloads.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"org\": \"\",\n  \"package_name\": \"\",\n  \"package_type\": \"\",\n  \"package_version_id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_delete_pull_request_review_protection",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/pull/request/review/protection",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "pull",
            "request",
            "review",
            "protection"
          ]
        },
        "description": "Disables the requirement for pull request reviews before merging for a specific, existing branch in an existing repository; this action is idempotent and will succeed even if the protection is not cur",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"repo\": \"\",\n  \"owner\": \"\",\n  \"branch\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_delete_repo_codespace_secret_by_name",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/repo/codespace/secret/by/name",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "repo",
            "codespace",
            "secret",
            "by",
            "name"
          ]
        },
        "description": "Deletes a specific codespace secret from a repository by its name; this action is idempotent and will succeed even if the secret doesn't exist.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"repo\": \"\",\n  \"owner\": \"\",\n  \"secret_name\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_delete_social_accounts_for_the_authenticated_user",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/social/accounts/for/the/authenticated/user",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "social",
            "accounts",
            "for",
            "the",
            "authenticated",
            "user"
          ]
        },
        "description": "Deletes currently linked social media account urls from the authenticated user's github profile.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"account_urls\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_delete_team_discussion_comment_reaction",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/team/discussion/comment/reaction",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "team",
            "discussion",
            "comment",
            "reaction"
          ]
        },
        "description": "Deletes a reaction from a team discussion comment, given the organization name, team slug, discussion number, comment number, and reaction id.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"org\": \"\",\n  \"team_slug\": \"\",\n  \"reaction_id\": 0,\n  \"comment_number\": 0,\n  \"discussion_number\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_delete_team_discussion_reaction",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/team/discussion/reaction",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "team",
            "discussion",
            "reaction"
          ]
        },
        "description": "Permanently deletes a specific reaction from a team discussion within an organization.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"org\": \"\",\n  \"team_slug\": \"\",\n  \"reaction_id\": 0,\n  \"discussion_number\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_delete_workflow_run_logs",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/workflow/run/logs",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "workflow",
            "run",
            "logs"
          ]
        },
        "description": "Deletes all logs for a specific workflow run in a github repository, provided the repository and run exist.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"repo\": \"\",\n  \"owner\": \"\",\n  \"run_id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_disable_a_custom_protection_rule_for_an_environment",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/disable/a/custom/protection/rule/for/an/environment",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "disable",
            "a",
            "custom",
            "protection",
            "rule",
            "for",
            "an",
            "environment"
          ]
        },
        "description": "Disables a specific, currently active custom deployment protection rule for an existing environment within a github repository.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"repo\": \"\",\n  \"owner\": \"\",\n  \"environment_name\": \"\",\n  \"protection_rule_id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_disable_a_workflow",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/disable/a/workflow",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "disable",
            "a",
            "workflow"
          ]
        },
        "description": "Disables a specified workflow (by id or filename) in a given github repository, preventing new automatic triggers; any in-progress runs will continue.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"repo\": \"\",\n  \"owner\": \"\",\n  \"workflow_id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_disable_private_vulnerability_reporting_for_a_repository",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/disable/private/vulnerability/reporting/for/a/repository",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "disable",
            "private",
            "vulnerability",
            "reporting",
            "for",
            "a",
            "repository"
          ]
        },
        "description": "Disables private vulnerability reporting for an existing github repository, preventing direct private vulnerability reports to maintainers via github's interface for this repository.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"repo\": \"\",\n  \"owner\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_disable_repository_actions_in_org",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/disable/repository/actions/in/org",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "disable",
            "repository",
            "actions",
            "in",
            "org"
          ]
        },
        "description": "Disables github actions for a specific repository within an organization; this action is only effective if the organization's github actions `enabled repositories` setting is configured to `selected`.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"org\": \"\",\n  \"repository_id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_dismiss_a_review_for_a_pull_request",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/dismiss/a/review/for/a/pull/request",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "dismiss",
            "a",
            "review",
            "for",
            "a",
            "pull",
            "request"
          ]
        },
        "description": "Dismisses a review on a pull request with a mandatory explanatory message.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"repo\": \"\",\n  \"event\": \"\",\n  \"owner\": \"\",\n  \"message\": \"\",\n  \"review_id\": 0,\n  \"pull_number\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_download_a_repository_archive_tar",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/download/a/repository/archive/tar",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "download",
            "a",
            "repository",
            "archive",
            "tar"
          ]
        },
        "description": "Downloads a repository's source code as a tarball (.tar.gz) archive for a specific git reference, if the repository is accessible.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"ref\": \"\",\n  \"repo\": \"\",\n  \"owner\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_download_a_repository_archive_zip",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/download/a/repository/archive/zip",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "download",
            "a",
            "repository",
            "archive",
            "zip"
          ]
        },
        "description": "Downloads a repository's source code as a zip archive for a specific git reference (branch, tag, or commit sha).",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"ref\": \"\",\n  \"repo\": \"\",\n  \"owner\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_download_an_artifact",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/download/an/artifact",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "download",
            "an",
            "artifact"
          ]
        },
        "description": "Downloads a specific github repository artifact, returning a temporary url to its 'zip' archive, valid for one minute.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"repo\": \"\",\n  \"owner\": \"\",\n  \"artifact_id\": 0,\n  \"archive_format\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_download_job_logs_for_a_workflow_run",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/download/job/logs/for/a/workflow/run",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "download",
            "job",
            "logs",
            "for",
            "a",
            "workflow",
            "run"
          ]
        },
        "description": "Downloads logs for a specific job in a github actions workflow run, contingent on the repository's existence and the job id being valid and having produced logs.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"repo\": \"\",\n  \"owner\": \"\",\n  \"job_id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_download_workflow_run_attempt_logs",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/download/workflow/run/attempt/logs",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "download",
            "workflow",
            "run",
            "attempt",
            "logs"
          ]
        },
        "description": "Downloads a zip archive of logs for a specific workflow run attempt.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"repo\": \"\",\n  \"owner\": \"\",\n  \"run_id\": 0,\n  \"attempt_number\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_download_workflow_run_logs",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/download/workflow/run/logs",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "download",
            "workflow",
            "run",
            "logs"
          ]
        },
        "description": "Downloads logs for a specific github actions workflow run, typically archived as a zip file, if logs are available (e.g., not expired and the workflow has produced output).",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"repo\": \"\",\n  \"owner\": \"\",\n  \"run_id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_emo_j_is_get",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/emo/j/is/get",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "emo",
            "j",
            "is",
            "get"
          ]
        },
        "description": "Lists all emojis available for use on github; deprecated, use `get emojis` instead.",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_enable_a_workflow",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/enable/a/workflow",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "enable",
            "a",
            "workflow"
          ]
        },
        "description": "Reactivates a currently disabled github actions workflow within a repository using its numerical id.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"repo\": \"\",\n  \"owner\": \"\",\n  \"workflow_id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_enable_github_actions_in_selected_repositories",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/enable/github/actions/in/selected/repositories",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "enable",
            "github",
            "actions",
            "in",
            "selected",
            "repositories"
          ]
        },
        "description": "Sets the specific repositories that can use github actions within an organization by replacing the current list; only applies if the organization's actions policy is 'selected repositories'.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"org\": \"\",\n  \"selected_repository_ids\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_enable_private_vulnerability_reporting_for_a_repository",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/enable/private/vulnerability/reporting/for/a/repository",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "enable",
            "private",
            "vulnerability",
            "reporting",
            "for",
            "a",
            "repository"
          ]
        },
        "description": "Enables private vulnerability reporting for a repository, allowing security researchers to privately submit vulnerability reports to maintainers.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"repo\": \"\",\n  \"owner\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_enable_repo_forgithub_actions",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/enable/repo/forgithub/actions",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "enable",
            "repo",
            "forgithub",
            "actions"
          ]
        },
        "description": "Enables github actions for a repository if the organization's actions permissions are set to allow for 'selected repositories'.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"org\": \"\",\n  \"repository_id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_encrypt_and_update_dev_secret",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/encrypt/and/update/dev/secret",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "encrypt",
            "and",
            "update",
            "dev",
            "secret"
          ]
        },
        "description": "Creates or updates a repository's development environment secret using an `encrypted value` and its corresponding `key id`; the secret must be pre-encrypted with the repository's codespaces public key",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"repo\": \"\",\n  \"owner\": \"\",\n  \"key_id\": \"\",\n  \"secret_name\": \"\",\n  \"encrypted_value\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_encrypt_org_dev_env_secret",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/encrypt/org/dev/env/secret",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "encrypt",
            "org",
            "dev",
            "env",
            "secret"
          ]
        },
        "description": "Creates or updates an organization's github codespaces secret using an encrypted value and its corresponding public key id.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"org\": \"\",\n  \"key_id\": \"\",\n  \"visibility\": \"\",\n  \"secret_name\": \"\",\n  \"encrypted_value\": \"\",\n  \"selected_repository_ids\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_encrypt_org_secrets_using_public_key",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/encrypt/org/secrets/using/public/key",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "encrypt",
            "org",
            "secrets",
            "using",
            "public",
            "key"
          ]
        },
        "description": "Retrieves an organization's public key, which must be used to encrypt secret values before they are configured for codespaces.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"org\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_export_a_codespace_for_the_authenticated_user",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/export/a/codespace/for/the/authenticated/user",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "export",
            "a",
            "codespace",
            "for",
            "the",
            "authenticated",
            "user"
          ]
        },
        "description": "Triggers an export of a user's specified codespace, automatically stopping it if active, and returns its export status and download url.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"codespace_name\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_export_a_software_bill_of_materials_sbom_for_a_repository",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/export/a/software/bill/of/materials/sbom/for/a/repository",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "export",
            "a",
            "software",
            "bill",
            "of",
            "materials",
            "sbom",
            "for",
            "a",
            "repository"
          ]
        },
        "description": "Exports the software bill of materials (sbom) in spdx json format for a repository, if its dependency graph is enabled and it has at least one commit.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"repo\": \"\",\n  \"owner\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_fetch_public_key_for_secret_encryption",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/fetch/public/key/for/secret/encryption",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "fetch",
            "public",
            "key",
            "for",
            "secret",
            "encryption"
          ]
        },
        "description": "Retrieves the public key for an existing github organization, required for encrypting dependabot secrets.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"org\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_find_pull_requests",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/find/pull/requests",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "find",
            "pull",
            "requests"
          ]
        },
        "description": "Ai-optimized pull request search with smart filtering by repo, author, state, labels, and merge status. builds intelligent search queries and returns clean, actionable pr data.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"page\": 0,\n  \"repo\": \"\",\n  \"sort\": \"\",\n  \"label\": \"\",\n  \"order\": \"\",\n  \"owner\": \"\",\n  \"query\": \"\",\n  \"state\": \"\",\n  \"author\": \"\",\n  \"assignee\": \"\",\n  \"language\": \"\",\n  \"mentions\": \"\",\n  \"per_page\": 0,\n  \"is_merged\": false,\n  \"base_branch\": \"\",\n  \"head_branch\": \"\",\n  \"raw_response\": false,\n  \"created_since\": \"\",\n  \"updated_since\": \"\",\n  \"for_authenticated_user\": false\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_find_repositories",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/find/repositories",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "find",
            "repositories"
          ]
        },
        "description": "Ai-optimized repository search with smart filtering by language, stars, topics, and ownership. builds intelligent search queries and returns clean, actionable repository data.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"page\": 0,\n  \"sort\": \"\",\n  \"order\": \"\",\n  \"owner\": \"\",\n  \"query\": \"\",\n  \"topic\": \"\",\n  \"archived\": false,\n  \"language\": \"\",\n  \"per_page\": 0,\n  \"max_stars\": 0,\n  \"min_forks\": 0,\n  \"min_stars\": 0,\n  \"fork_filter\": \"\",\n  \"raw_response\": false,\n  \"for_authenticated_user\": false\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_follow_a_user",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/follow/a/user",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "follow",
            "a",
            "user"
          ]
        },
        "description": "Allows the authenticated user to follow the github user specified by `username`; this action is idempotent and the user cannot follow themselves.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"username\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_force_cancel_a_workflow_run",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/force/cancel/a/workflow/run",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "force",
            "cancel",
            "a",
            "workflow",
            "run"
          ]
        },
        "description": "Forcefully cancels an existing github actions workflow run, bypassing normal cancellation conditions; requires write permissions to the repository.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"repo\": \"\",\n  \"owner\": \"\",\n  \"run_id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_fork_a_gist",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/fork/a/gist",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "fork",
            "a",
            "gist"
          ]
        },
        "description": "Forks a specified public gist, creating a copy under the authenticated user's account.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"gist_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_generate_release_notes_content_for_a_release",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/generate/release/notes/content/for/a/release",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "generate",
            "release",
            "notes",
            "content",
            "for",
            "a",
            "release"
          ]
        },
        "description": "Generates markdown release notes content (listing changes, pull requests, and contributors) for a github repository release, customizable via tags and a configuration file.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"repo\": \"\",\n  \"owner\": \"\",\n  \"tag_name\": \"\",\n  \"target_commitish\": \"\",\n  \"previous_tag_name\": \"\",\n  \"configuration_file_path\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_get_a_blob",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/a/blob",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "a",
            "blob"
          ]
        },
        "description": "Retrieves the raw, typically base64-encoded, content of a file (blob) from a github repository using its sha hash, if the repository and blob sha exist.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"repo\": \"\",\n  \"owner\": \"\",\n  \"file_sha\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_get_a_branch",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/a/branch",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "a",
            "branch"
          ]
        },
        "description": "Retrieves detailed information for a specified branch within a github repository.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"repo\": \"\",\n  \"owner\": \"\",\n  \"branch\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_get_a_check_run",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/a/check/run",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "a",
            "check",
            "run"
          ]
        },
        "description": "Retrieves detailed information for a specific check run within a github repository.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"repo\": \"\",\n  \"owner\": \"\",\n  \"check_run_id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_get_a_check_suite",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/a/check/suite",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "a",
            "check",
            "suite"
          ]
        },
        "description": "Retrieves a specific check suite (a collection of check runs) by its id from a repository accessible to the authenticated user.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"repo\": \"\",\n  \"owner\": \"\",\n  \"check_suite_id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_get_a_classroom",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/a/classroom",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "a",
            "classroom"
          ]
        },
        "description": "Retrieves details for a specific github classroom; the classroom id must correspond to an existing classroom.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"classroom_id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_get_a_code_of_conduct",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/a/code/of/conduct",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "a",
            "code",
            "of",
            "conduct"
          ]
        },
        "description": "Retrieves the full details of a specific github code of conduct using its unique key.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"key\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_get_a_code_ql_database_for_a_repository",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/a/code/ql/database/for/a/repository",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "a",
            "code",
            "ql",
            "database",
            "for",
            "a",
            "repository"
          ]
        },
        "description": "Gets an existing codeql database (including a download url) for a specified language in an accessible repository, if one has been successfully built for that language.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"repo\": \"\",\n  \"owner\": \"\",\n  \"language\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_get_a_code_scanning_alert",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/a/code/scanning/alert",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "a",
            "code",
            "scanning",
            "alert"
          ]
        },
        "description": "Retrieves a specific code scanning alert, which identifies potential code vulnerabilities or errors, by its number from the specified github repository.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"repo\": \"\",\n  \"owner\": \"\",\n  \"alert_number\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_get_a_code_scanning_analysis_for_a_repository",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/a/code/scanning/analysis/for/a/repository",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "a",
            "code",
            "scanning",
            "analysis",
            "for",
            "a",
            "repository"
          ]
        },
        "description": "Retrieves detailed information for a specific code scanning analysis on an accessible repository, identified by its `analysis id`.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"repo\": \"\",\n  \"owner\": \"\",\n  \"analysis_id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_get_a_code_scanning_default_setup_configuration",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/a/code/scanning/default/setup/configuration",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "a",
            "code",
            "scanning",
            "default",
            "setup",
            "configuration"
          ]
        },
        "description": "Gets the default setup configuration for code scanning in a repository, including state, languages, query suite, and schedule for a repository if it exists.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"repo\": \"\",\n  \"owner\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_get_a_codespace_for_the_authenticated_user",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/a/codespace/for/the/authenticated/user",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "a",
            "codespace",
            "for",
            "the",
            "authenticated",
            "user"
          ]
        },
        "description": "Call to retrieve detailed information for a `codespace name` belonging to the authenticated user, ensuring the codespace exists and is accessible.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"codespace_name\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_get_a_commit",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/a/commit",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "a",
            "commit"
          ]
        },
        "description": "Retrieves a specific commit from a repository by its owner, name, and a valid commit reference (sha, branch, or tag), supporting pagination for large diffs.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"ref\": \"\",\n  \"page\": 0,\n  \"repo\": \"\",\n  \"owner\": \"\",\n  \"per_page\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_get_a_commit_comment",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/a/commit/comment",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "a",
            "commit",
            "comment"
          ]
        },
        "description": "Retrieves the full details of a specific commit comment in a github repository, using its unique identifier.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"repo\": \"\",\n  \"owner\": \"\",\n  \"comment_id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_get_a_commit_object",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/a/commit/object",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "a",
            "commit",
            "object"
          ]
        },
        "description": "Retrieves detailed information (including author, committer, message, tree, parents, verification) for a specific commit in a github repository, identified by its sha.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"repo\": \"\",\n  \"owner\": \"\",\n  \"commit_sha\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_get_a_custom_deployment_protection_rule",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/a/custom/deployment/protection/rule",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "a",
            "custom",
            "deployment",
            "protection",
            "rule"
          ]
        },
        "description": "Retrieves a specific custom deployment protection rule (used by github apps for external validation or manual approval of deployments) for a given environment in a repository.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"repo\": \"\",\n  \"owner\": \"\",\n  \"environment_name\": \"\",\n  \"protection_rule_id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_get_a_custom_property_for_an_organization",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/a/custom/property/for/an/organization",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "a",
            "custom",
            "property",
            "for",
            "an",
            "organization"
          ]
        },
        "description": "Retrieves the definition (schema) of a specific, existing custom property for an organization.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"org\": \"\",\n  \"custom_property_name\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_get_a_delivery_for_a_repository_webhook",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/a/delivery/for/a/repository/webhook",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "a",
            "delivery",
            "for",
            "a",
            "repository",
            "webhook"
          ]
        },
        "description": "Retrieves a specific delivery for a repository webhook, identified by its `hook id` and `delivery id`.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"repo\": \"\",\n  \"owner\": \"\",\n  \"hook_id\": 0,\n  \"delivery_id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_get_a_deploy_key",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/a/deploy/key",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "a",
            "deploy",
            "key"
          ]
        },
        "description": "Gets a specific deploy key, identified by its `key id`, for the github repository specified by `owner` and `repo`.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"repo\": \"\",\n  \"owner\": \"\",\n  \"key_id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_get_a_deployment",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/a/deployment",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "a",
            "deployment"
          ]
        },
        "description": "Gets a specific deployment by id from a repository, provided the repository and deployment id exist.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"repo\": \"\",\n  \"owner\": \"\",\n  \"deployment_id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_get_a_deployment_branch_policy",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/a/deployment/branch/policy",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "a",
            "deployment",
            "branch",
            "policy"
          ]
        },
        "description": "Retrieves a specific deployment branch policy for an environment in a repository, identified by its unique id.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"repo\": \"\",\n  \"owner\": \"\",\n  \"branch_policy_id\": 0,\n  \"environment_name\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_get_a_deployment_status",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/a/deployment/status",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "a",
            "deployment",
            "status"
          ]
        },
        "description": "Retrieves a specific deployment status by its id for a given deployment within a github repository.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"repo\": \"\",\n  \"owner\": \"\",\n  \"status_id\": 0,\n  \"deployment_id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_get_a_diff_of_the_dependencies_between_commits",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/a/diff/of/the/dependencies/between/commits",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "a",
            "diff",
            "of",
            "the",
            "dependencies",
            "between",
            "commits"
          ]
        },
        "description": "Gets the dependency diff between two git revisions in a repository, where 'basehead' specifies the revisions and 'name' can optionally scope to a specific manifest file.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"name\": \"\",\n  \"repo\": \"\",\n  \"owner\": \"\",\n  \"basehead\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_get_a_discussion",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/a/discussion",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "a",
            "discussion"
          ]
        },
        "description": "Fetches a specific discussion by its number from a team within an organization.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"org\": \"\",\n  \"team_slug\": \"\",\n  \"discussion_number\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_get_a_discussion_comment",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/a/discussion/comment",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "a",
            "discussion",
            "comment"
          ]
        },
        "description": "Fetches a specific comment from a team discussion within a specific organization.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"org\": \"\",\n  \"team_slug\": \"\",\n  \"comment_number\": 0,\n  \"discussion_number\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_get_a_dns_health_check_for_github_pages",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/a/dns/health/check/for/github/pages",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "a",
            "dns",
            "health",
            "check",
            "for",
            "github",
            "pages"
          ]
        },
        "description": "Retrieves the dns health check status (e.g., cname/a records, https) for a github pages site; the check may be pending (http 202) on initial calls or after site changes.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"repo\": \"\",\n  \"owner\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_get_a_gist",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/a/gist",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "a",
            "gist"
          ]
        },
        "description": "Fetches a specific github gist by its `gist id`, returning comprehensive details if the gist exists.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"gist_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_get_a_gist_comment",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/a/gist/comment",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "a",
            "gist",
            "comment"
          ]
        },
        "description": "Retrieves a specific gist comment by its id and the gist's id.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"gist_id\": \"\",\n  \"comment_id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_get_a_gist_revision",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/a/gist/revision",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "a",
            "gist",
            "revision"
          ]
        },
        "description": "Retrieves a specific revision of a gist.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"sha\": \"\",\n  \"gist_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_get_a_github_pages_site",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/a/github/pages/site",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "a",
            "github",
            "pages",
            "site"
          ]
        },
        "description": "Retrieves information for a github pages site, which must be enabled for the repository.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"repo\": \"\",\n  \"owner\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_get_a_gitignore_template",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/a/gitignore/template",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "a",
            "gitignore",
            "template"
          ]
        },
        "description": "Retrieves a specific .gitignore template from github by its name, which must be an existing template in github's collection.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"name\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_get_a_job_for_a_workflow_run",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/a/job/for/a/workflow/run",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "a",
            "job",
            "for",
            "a",
            "workflow",
            "run"
          ]
        },
        "description": "Retrieves detailed information for a specific job within a github actions workflow run, given its `job id` which must be valid for the specified repository's workflow.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"repo\": \"\",\n  \"owner\": \"\",\n  \"job_id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_get_a_label",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/a/label",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "a",
            "label"
          ]
        },
        "description": "Retrieves a specific label by its name from a specified github repository.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"name\": \"\",\n  \"repo\": \"\",\n  \"owner\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_get_a_license",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/a/license",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "a",
            "license"
          ]
        },
        "description": "Call this action to retrieve comprehensive details for a specific software license recognized by github, using its unique license key.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"license\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_get_a_milestone",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/a/milestone",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "a",
            "milestone"
          ]
        },
        "description": "Retrieves detailed information for a specific milestone within a github repository by its number.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"repo\": \"\",\n  \"owner\": \"\",\n  \"milestone_number\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_get_a_package_for_a_user",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/a/package/for/a/user",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "a",
            "package",
            "for",
            "a",
            "user"
          ]
        },
        "description": "Retrieves metadata for a specific package owned by a github user, using package type, name, and username as identifiers.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"username\": \"\",\n  \"package_name\": \"\",\n  \"package_type\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_get_a_package_for_an_organization",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/a/package/for/an/organization",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "a",
            "package",
            "for",
            "an",
            "organization"
          ]
        },
        "description": "Retrieves a specific package (by type and name) from an organization, if both the package and organization exist.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"org\": \"\",\n  \"package_name\": \"\",\n  \"package_type\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_get_a_package_for_the_authenticated_user",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/a/package/for/the/authenticated/user",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "a",
            "package",
            "for",
            "the",
            "authenticated",
            "user"
          ]
        },
        "description": "Retrieves detailed information for a specific package owned by the authenticated user.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"package_name\": \"\",\n  \"package_type\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_get_a_package_version_for_a_user",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/a/package/version/for/a/user",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "a",
            "package",
            "version",
            "for",
            "a",
            "user"
          ]
        },
        "description": "Retrieves a specific public package version associated with a github user.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"username\": \"\",\n  \"package_name\": \"\",\n  \"package_type\": \"\",\n  \"package_version_id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_get_a_package_version_for_an_organization",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/a/package/version/for/an/organization",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "a",
            "package",
            "version",
            "for",
            "an",
            "organization"
          ]
        },
        "description": "Retrieves detailed information for a specific version of a package within an organization.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"org\": \"\",\n  \"package_name\": \"\",\n  \"package_type\": \"\",\n  \"package_version_id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_get_a_package_version_for_the_authenticated_user",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/a/package/version/for/the/authenticated/user",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "a",
            "package",
            "version",
            "for",
            "the",
            "authenticated",
            "user"
          ]
        },
        "description": "Retrieves detailed information for an existing specific package version associated with the authenticated user, identified by its type, name, and version id.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"package_name\": \"\",\n  \"package_type\": \"\",\n  \"package_version_id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_get_a_project",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/a/project",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "a",
            "project"
          ]
        },
        "description": "Retrieves detailed information for a specific github project using its unique `project id`.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"project_id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_get_a_project_card",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/a/project/card",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "a",
            "project",
            "card"
          ]
        },
        "description": "Retrieves all details of a specific project card, given its unique `card id`.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"card_id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_get_a_project_column",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/a/project/column",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "a",
            "project",
            "column"
          ]
        },
        "description": "Retrieves detailed information for a specific project column; the column must exist.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"column_id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_get_a_pull_request",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/a/pull/request",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "a",
            "pull",
            "request"
          ]
        },
        "description": "Retrieves a specific pull request from a github repository using its owner, repository name, and pull request number.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"repo\": \"\",\n  \"owner\": \"\",\n  \"pull_number\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_get_a_reference",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/a/reference",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "a",
            "reference"
          ]
        },
        "description": "Retrieves a specific git reference (e.g., a branch, tag, or fully qualified like 'heads/main') from a github repository.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"ref\": \"\",\n  \"repo\": \"\",\n  \"owner\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_get_a_release",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/a/release",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "a",
            "release"
          ]
        },
        "description": "Gets a specific release from a github repository, provided the repository is accessible and the release exists.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"repo\": \"\",\n  \"owner\": \"\",\n  \"release_id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_get_a_release_asset",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/a/release/asset",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "a",
            "release",
            "asset"
          ]
        },
        "description": "Gets metadata for a specific release asset in a github repository, including a `browser download url` for downloading the asset.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"repo\": \"\",\n  \"owner\": \"\",\n  \"asset_id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_get_a_release_by_tag_name",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/a/release/by/tag/name",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "a",
            "release",
            "by",
            "tag",
            "name"
          ]
        },
        "description": "Gets a release from a github repository by its tag name; the repository and a release with this tag must already exist.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"tag\": \"\",\n  \"repo\": \"\",\n  \"owner\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_get_a_repository",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/a/repository",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "a",
            "repository"
          ]
        },
        "description": "Retrieves detailed information about an existing and accessible github repository.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"repo\": \"\",\n  \"owner\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_get_a_repository_public_key",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/a/repository/public/key",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "a",
            "repository",
            "public",
            "key"
          ]
        },
        "description": "Gets a repository's public key for encrypting secrets to be used in github actions, if the repository exists and is accessible.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"repo\": \"\",\n  \"owner\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_get_a_repository_readme",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/a/repository/readme",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "a",
            "repository",
            "readme"
          ]
        },
        "description": "Fetches the readme file (if it exists and is accessible) from a specified github repository, returning its base64-encoded content and metadata.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"ref\": \"\",\n  \"repo\": \"\",\n  \"owner\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_get_a_repository_readme_for_a_directory",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/a/repository/readme/for/a/directory",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "a",
            "repository",
            "readme",
            "for",
            "a",
            "directory"
          ]
        },
        "description": "Retrieves the readme file from a specified directory within a github repository, optionally at a given commit, branch, or tag.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"dir\": \"\",\n  \"ref\": \"\",\n  \"repo\": \"\",\n  \"owner\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_get_a_repository_rule_suite",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/a/repository/rule/suite",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "a",
            "repository",
            "rule",
            "suite"
          ]
        },
        "description": "Gets detailed information for a specific repository rule suite by its id, including its evaluation status and the results of its individual rules.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"repo\": \"\",\n  \"owner\": \"\",\n  \"rule_suite_id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_get_a_repository_ruleset",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/a/repository/ruleset",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "a",
            "repository",
            "ruleset"
          ]
        },
        "description": "Retrieves a specific repository ruleset by its id; if `includes parents` is true, the search for this `ruleset id` also extends to rulesets from parent organizations.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"repo\": \"\",\n  \"owner\": \"\",\n  \"ruleset_id\": 0,\n  \"includes_parents\": false\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_get_a_repository_secret",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/a/repository/secret",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "a",
            "repository",
            "secret"
          ]
        },
        "description": "Gets metadata (name, creation/update timestamps) for an existing repository secret, excluding its encrypted value.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"repo\": \"\",\n  \"owner\": \"\",\n  \"secret_name\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_get_a_repository_subscription",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/a/repository/subscription",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "a",
            "repository",
            "subscription"
          ]
        },
        "description": "Gets the authenticated user's subscription details for a repository, indicating if they receive notifications.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"repo\": \"\",\n  \"owner\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_get_a_repository_variable",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/a/repository/variable",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "a",
            "repository",
            "variable"
          ]
        },
        "description": "Gets a specific github actions variable by name from an accessible repository.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"name\": \"\",\n  \"repo\": \"\",\n  \"owner\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_get_a_repository_webhook",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/a/repository/webhook",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "a",
            "repository",
            "webhook"
          ]
        },
        "description": "Returns the configuration of an existing webhook for a given repository.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"repo\": \"\",\n  \"owner\": \"\",\n  \"hook_id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_get_a_review_comment_for_a_pull_request",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/a/review/comment/for/a/pull/request",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "a",
            "review",
            "comment",
            "for",
            "a",
            "pull",
            "request"
          ]
        },
        "description": "Retrieves a specific pull request review comment by its id, provided the repository exists, is accessible, and the comment id is valid.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"repo\": \"\",\n  \"owner\": \"\",\n  \"comment_id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_get_a_review_for_a_pull_request",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/a/review/for/a/pull/request",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "a",
            "review",
            "for",
            "a",
            "pull",
            "request"
          ]
        },
        "description": "Retrieves a specific review for a pull request using its owner, repository, pull request number, and review id.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"repo\": \"\",\n  \"owner\": \"\",\n  \"review_id\": 0,\n  \"pull_number\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_get_a_secret_for_the_authenticated_user",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/a/secret/for/the/authenticated/user",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "a",
            "secret",
            "for",
            "the",
            "authenticated",
            "user"
          ]
        },
        "description": "Retrieves metadata (name, timestamps, visibility; not the value) for a specific, existing development environment secret associated with the authenticated user's github codespaces.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"secret_name\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_get_a_self_hosted_runner_for_a_repository",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/a/self/hosted/runner/for/a/repository",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "a",
            "self",
            "hosted",
            "runner",
            "for",
            "a",
            "repository"
          ]
        },
        "description": "Gets a specific self-hosted runner for a repository by its unique id.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"repo\": \"\",\n  \"owner\": \"\",\n  \"runner_id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_get_a_self_hosted_runner_for_an_organization",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/a/self/hosted/runner/for/an/organization",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "a",
            "self",
            "hosted",
            "runner",
            "for",
            "an",
            "organization"
          ]
        },
        "description": "Retrieves detailed information about a specific self-hosted runner registered within a github organization.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"org\": \"\",\n  \"runner_id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_get_a_tag",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/a/tag",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "a",
            "tag"
          ]
        },
        "description": "Retrieves detailed information for a specific git tag object from a github repository, using the sha of the tag object itself.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"repo\": \"\",\n  \"owner\": \"\",\n  \"tag_sha\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_get_a_team_by_name",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/a/team/by/name",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "a",
            "team",
            "by",
            "name"
          ]
        },
        "description": "Retrieves a github team by its slug from a specific organization.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"org\": \"\",\n  \"team_slug\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_get_a_thread",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/a/thread",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "a",
            "thread"
          ]
        },
        "description": "Retrieves a specific github notification thread using its unique `thread id`.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"thread_id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_get_a_thread_subscription_for_the_authenticated_user",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/a/thread/subscription/for/the/authenticated/user",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "a",
            "thread",
            "subscription",
            "for",
            "the",
            "authenticated",
            "user"
          ]
        },
        "description": "Retrieves the authenticated user's subscription details for a specific notification thread, identified by `thread id`.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"thread_id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_get_a_tree",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/a/tree",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "a",
            "tree"
          ]
        },
        "description": "Retrieves a git tree (directory listing) from a github repository using its sha, branch name, or tag name, optionally fetching all nested items recursively.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"repo\": \"\",\n  \"owner\": \"\",\n  \"tree_sha\": \"\",\n  \"recursive\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_get_a_user",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/a/user",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "a",
            "user"
          ]
        },
        "description": "Retrieves the public profile information for an existing github user, specified by their username.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"username\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_get_a_webhook_configuration_for_a_repository",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/a/webhook/configuration/for/a/repository",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "a",
            "webhook",
            "configuration",
            "for",
            "a",
            "repository"
          ]
        },
        "description": "Returns the configuration for an existing webhook on the specified repository.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"repo\": \"\",\n  \"owner\": \"\",\n  \"hook_id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_get_a_webhook_configuration_for_an_organization",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/a/webhook/configuration/for/an/organization",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "a",
            "webhook",
            "configuration",
            "for",
            "an",
            "organization"
          ]
        },
        "description": "Retrieves the configuration for a specific webhook associated with a github organization.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"org\": \"\",\n  \"hook_id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_get_a_webhook_delivery_for_an_organization_webhook",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/a/webhook/delivery/for/an/organization/webhook",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "a",
            "webhook",
            "delivery",
            "for",
            "an",
            "organization",
            "webhook"
          ]
        },
        "description": "Returns detailed information for a specific delivery attempt of a webhook configured for the specified github organization.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"org\": \"\",\n  \"hook_id\": 0,\n  \"delivery_id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_get_a_workflow",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/a/workflow",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "a",
            "workflow"
          ]
        },
        "description": "Retrieves detailed information for a specific github actions workflow in a repository, identified by either its numeric id or its filename.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"repo\": \"\",\n  \"owner\": \"\",\n  \"workflow_id\": 0,\n  \"workflow_name\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_get_a_workflow_run",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/a/workflow/run",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "a",
            "workflow",
            "run"
          ]
        },
        "description": "Gets a specific workflow run by its id from a github repository.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"repo\": \"\",\n  \"owner\": \"\",\n  \"run_id\": 0,\n  \"exclude_pull_requests\": false\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_get_a_workflow_run_attempt",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/a/workflow/run/attempt",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "a",
            "workflow",
            "run",
            "attempt"
          ]
        },
        "description": "Retrieves detailed information for a specific attempt of a workflow run in a github repository, including its status, conclusion, and timings.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"repo\": \"\",\n  \"owner\": \"\",\n  \"run_id\": 0,\n  \"attempt_number\": 0,\n  \"exclude_pull_requests\": false\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_get_access_restrictions",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/access/restrictions",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "access",
            "restrictions"
          ]
        },
        "description": "Lists users, teams, and github apps with push access to a branch; this branch must be protected in repository settings for detailed restrictions, otherwise expect a 404 or empty response.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"repo\": \"\",\n  \"owner\": \"\",\n  \"branch\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_get_admin_branch_protection",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/admin/branch/protection",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "admin",
            "branch",
            "protection"
          ]
        },
        "description": "Checks if repository administrators are subject to the branch protection rules on a specific branch.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"repo\": \"\",\n  \"owner\": \"\",\n  \"branch\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_get_all_api_versions",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/all/api/versions",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "all",
            "api",
            "versions"
          ]
        },
        "description": "Retrieves all officially supported, date-based (e.g., \"2022-11-28\") versions of the github rest api from the /versions endpoint.",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_get_all_autolinks_of_a_repository",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/all/autolinks/of/a/repository",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "all",
            "autolinks",
            "of",
            "a",
            "repository"
          ]
        },
        "description": "Retrieves all autolinks (e.g., for jira issues) configured for a repository; requires admin permissions on the repository.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"repo\": \"\",\n  \"owner\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_get_all_codes_of_conduct",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/all/codes/of/conduct",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "all",
            "codes",
            "of",
            "conduct"
          ]
        },
        "description": "Retrieves all available codes of conduct from github, often used to select one for a repository.",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_get_all_commonly_used_licenses",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/all/commonly/used/licenses",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "all",
            "commonly",
            "used",
            "licenses"
          ]
        },
        "description": "Retrieves a list of commonly used software licenses from github, optionally filtering for 'featured' licenses whose specific selection criteria by github may vary.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"page\": 0,\n  \"featured\": false,\n  \"per_page\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_get_all_contributor_commit_activity",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/all/contributor/commit/activity",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "all",
            "contributor",
            "commit",
            "activity"
          ]
        },
        "description": "Retrieves commit activity (total commits, weekly additions/deletions/commits) for all contributors to a repository; may require a retry if github returns 202 while preparing data.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"repo\": \"\",\n  \"owner\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_get_all_custom_properties_for_an_organization",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/all/custom/properties/for/an/organization",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "all",
            "custom",
            "properties",
            "for",
            "an",
            "organization"
          ]
        },
        "description": "Gets the schema definitions for all custom properties configured for an organization, not the specific values assigned to repositories.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"org\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_get_all_custom_property_values_for_a_repository",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/all/custom/property/values/for/a/repository",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "all",
            "custom",
            "property",
            "values",
            "for",
            "a",
            "repository"
          ]
        },
        "description": "Gets all custom property values for a repository, which may include default values or be empty if no properties are explicitly set.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"repo\": \"\",\n  \"owner\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_get_all_deployment_protection_rules_for_an_environment",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/all/deployment/protection/rules/for/an/environment",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "all",
            "deployment",
            "protection",
            "rules",
            "for",
            "an",
            "environment"
          ]
        },
        "description": "Lists all enabled custom deployment protection rules for a specific environment in a repository; the environment must exist and be configured for deployments.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"repo\": \"\",\n  \"owner\": \"\",\n  \"environment_name\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_get_all_gitignore_templates",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/all/gitignore/templates",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "all",
            "gitignore",
            "templates"
          ]
        },
        "description": "Retrieves all available .gitignore template names from github (e.g., 'python', 'node', 'java'), used for generating .gitignore files.",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_get_all_organization_roles_for_an_organization",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/all/organization/roles/for/an/organization",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "all",
            "organization",
            "roles",
            "for",
            "an",
            "organization"
          ]
        },
        "description": "Lists all custom organization roles for an existing github organization.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"org\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_get_all_repository_rulesets",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/all/repository/rulesets",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "all",
            "repository",
            "rulesets"
          ]
        },
        "description": "Retrieves all rulesets for a github repository, which define conditions and actions for repository interactions (e.g., branch protections).",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"page\": 0,\n  \"repo\": \"\",\n  \"owner\": \"\",\n  \"per_page\": 0,\n  \"includes_parents\": false\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_get_all_repository_topics",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/all/repository/topics",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "all",
            "repository",
            "topics"
          ]
        },
        "description": "Retrieves all topics for a specified, existing, and accessible repository.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"page\": 0,\n  \"repo\": \"\",\n  \"owner\": \"\",\n  \"per_page\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_get_all_requested_reviewers_for_a_pull_request",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/all/requested/reviewers/for/a/pull/request",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "all",
            "requested",
            "reviewers",
            "for",
            "a",
            "pull",
            "request"
          ]
        },
        "description": "Gets all users and teams requested to review a specific pull request in a repository.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"repo\": \"\",\n  \"owner\": \"\",\n  \"pull_number\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_get_all_status_check_contexts",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/all/status/check/contexts",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "all",
            "status",
            "check",
            "contexts"
          ]
        },
        "description": "Fetches all required status check contexts for a protected branch; returns an empty list if the branch isn't protected or has no required checks.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"repo\": \"\",\n  \"owner\": \"\",\n  \"branch\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_get_an_app",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/an/app",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "an",
            "app"
          ]
        },
        "description": "Retrieves publicly available information for an existing github app, identified by its unique url-friendly `app slug`.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"app_slug\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_get_an_artifact",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/an/artifact",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "an",
            "artifact"
          ]
        },
        "description": "Gets a specific artifact for a repository by `artifact id`.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"repo\": \"\",\n  \"owner\": \"\",\n  \"artifact_id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_get_an_assignment",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/an/assignment",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "an",
            "assignment"
          ]
        },
        "description": "Retrieves detailed information for a specific github classroom assignment if the authenticated user is an administrator of the classroom.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"assignment_id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_get_an_autolink_reference_of_a_repository",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/an/autolink/reference/of/a/repository",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "an",
            "autolink",
            "reference",
            "of",
            "a",
            "repository"
          ]
        },
        "description": "Retrieves a specific autolink reference (which automatically hyperlinks text like 'jira-123' to an external system) for a repository using its unique id; requires administrator access to the repositor",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"repo\": \"\",\n  \"owner\": \"\",\n  \"autolink_id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_get_an_environment",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/an/environment",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "an",
            "environment"
          ]
        },
        "description": "Get an environment",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"repo\": \"\",\n  \"owner\": \"\",\n  \"environment_name\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_get_an_environment_public_key",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/an/environment/public/key",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "an",
            "environment",
            "public",
            "key"
          ]
        },
        "description": "Retrieves the public key for a specified github repository environment, used to encrypt secrets for github actions.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"repo\": \"\",\n  \"owner\": \"\",\n  \"environment_name\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_get_an_environment_secret",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/an/environment/secret",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "an",
            "environment",
            "secret"
          ]
        },
        "description": "Get an environment secret",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"repo\": \"\",\n  \"owner\": \"\",\n  \"secret_name\": \"\",\n  \"environment_name\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_get_an_environment_variable",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/an/environment/variable",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "an",
            "environment",
            "variable"
          ]
        },
        "description": "Get an environment variable",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"name\": \"\",\n  \"repo\": \"\",\n  \"owner\": \"\",\n  \"environment_name\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_get_an_issue",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/an/issue",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "an",
            "issue"
          ]
        },
        "description": "Get an issue",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"repo\": \"\",\n  \"owner\": \"\",\n  \"issue_number\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_get_an_issue_comment",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/an/issue/comment",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "an",
            "issue",
            "comment"
          ]
        },
        "description": "Get an issue comment",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"repo\": \"\",\n  \"owner\": \"\",\n  \"comment_id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_get_an_issue_event",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/an/issue/event",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "an",
            "issue",
            "event"
          ]
        },
        "description": "Get an issue event",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"repo\": \"\",\n  \"owner\": \"\",\n  \"event_id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_get_an_organization",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/an/organization",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "an",
            "organization"
          ]
        },
        "description": "Get an organization",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"org\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_get_an_organization_public_key",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/an/organization/public/key",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "an",
            "organization",
            "public",
            "key"
          ]
        },
        "description": "Get an organization public key",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"org\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_get_an_organization_role",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/an/organization/role",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "an",
            "organization",
            "role"
          ]
        },
        "description": "Retrieves a specific github organization role by its id.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"org\": \"\",\n  \"role_id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_get_an_organization_secret",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/an/organization/secret",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "an",
            "organization",
            "secret"
          ]
        },
        "description": "Gets an organization secret's metadata (e.g., name, creation/update dates, visibility), but not its encrypted value.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"org\": \"\",\n  \"secret_name\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_get_an_organization_variable",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/an/organization/variable",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "an",
            "organization",
            "variable"
          ]
        },
        "description": "Retrieves details (name, value, visibility, timestamps) of a specific, existing variable for an existing github organization.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"org\": \"\",\n  \"name\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_get_an_organization_webhook",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/an/organization/webhook",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "an",
            "organization",
            "webhook"
          ]
        },
        "description": "Retrieves the full configuration, including subscribed events and delivery settings, for an existing organization webhook.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"org\": \"\",\n  \"hook_id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_get_apps_with_access_to_the_protected_branch",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/apps/with/access/to/the/protected/branch",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "apps",
            "with",
            "access",
            "to",
            "the",
            "protected",
            "branch"
          ]
        },
        "description": "Lists github apps with push access to a repository's protected branch.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"repo\": \"\",\n  \"owner\": \"\",\n  \"branch\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_get_assignment_grades",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/assignment/grades",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "assignment",
            "grades"
          ]
        },
        "description": "Retrieves all grades for an existing github classroom assignment.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"assignment_id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_get_branch_protection",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/branch/protection",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "branch",
            "protection"
          ]
        },
        "description": "Retrieves branch protection settings for a specific, existing, and accessible branch in a github repository; protection feature availability varies by github product plan.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"repo\": \"\",\n  \"owner\": \"\",\n  \"branch\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_get_commit_authors",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/commit/authors",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "commit",
            "authors"
          ]
        },
        "description": "Fetches commit authors identified during a repository import, used to map authors from an external vcs to github accounts.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"repo\": \"\",\n  \"owner\": \"\",\n  \"since\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_get_commit_signature_protection",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/commit/signature/protection",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "commit",
            "signature",
            "protection"
          ]
        },
        "description": "Gets the commit signature protection status for a branch in a repository.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"repo\": \"\",\n  \"owner\": \"\",\n  \"branch\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_get_community_profile_metrics",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/community/profile/metrics",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "community",
            "profile",
            "metrics"
          ]
        },
        "description": "Retrieves a repository's community profile metrics, including health percentage and the presence of key community files (e.g., readme, license).",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"repo\": \"\",\n  \"owner\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_get_contextual_information_for_a_user",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/contextual/information/for/a/user",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "contextual",
            "information",
            "for",
            "a",
            "user"
          ]
        },
        "description": "Gets contextual hovercard information for a github user; `subject type` and `subject id` can be jointly provided for more specific details.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"username\": \"\",\n  \"subject_id\": \"\",\n  \"subject_type\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_get_default_attributes_for_a_codespace",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/default/attributes/for/a/codespace",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "default",
            "attributes",
            "for",
            "a",
            "codespace"
          ]
        },
        "description": "Get pre-flight data (e.g., default location, devcontainer path) for creating a codespace in a given repository (must exist and be accessible), optionally for a specific git ref.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"ref\": \"\",\n  \"repo\": \"\",\n  \"owner\": \"\",\n  \"client_ip\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_get_default_workflow_permissions_for_a_repository",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/default/workflow/permissions/for/a/repository",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "default",
            "workflow",
            "permissions",
            "for",
            "a",
            "repository"
          ]
        },
        "description": "Gets the default workflow permissions (`read` or `write`) for the github token and whether it can approve pull request reviews in an existing and accessible repository.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"repo\": \"\",\n  \"owner\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_get_default_workflow_permissions_for_an_organization",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/default/workflow/permissions/for/an/organization",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "default",
            "workflow",
            "permissions",
            "for",
            "an",
            "organization"
          ]
        },
        "description": "Gets the default github token workflow permissions and settings for a github organization.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"org\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_get_details_about_a_codespace_export",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/details/about/a/codespace/export",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "details",
            "about",
            "a",
            "codespace",
            "export"
          ]
        },
        "description": "Retrieves detailed information about a specific export of a codespace.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"export_id\": \"\",\n  \"codespace_name\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_get_emojis",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/emojis",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "emojis"
          ]
        },
        "description": "Lists all emojis available for use on github, including custom and unicode emojis.",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_get_feeds",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/feeds",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "feeds"
          ]
        },
        "description": "Fetches a list of available github feed urls for the authenticated user.",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_get_github_actions_cache_usage_for_a_repository",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/github/actions/cache/usage/for/a/repository",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "github",
            "actions",
            "cache",
            "usage",
            "for",
            "a",
            "repository"
          ]
        },
        "description": "Retrieves the total count of active github actions caches and their combined size in bytes for a specified repository.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"repo\": \"\",\n  \"owner\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_get_github_actions_cache_usage_for_an_organization",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/github/actions/cache/usage/for/an/organization",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "github",
            "actions",
            "cache",
            "usage",
            "for",
            "an",
            "organization"
          ]
        },
        "description": "Retrieves total github actions cache usage statistics for an organization, including active cache count and size across all repositories.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"org\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_get_github_actions_permissions_for_a_repository",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/github/actions/permissions/for/a/repository",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "github",
            "actions",
            "permissions",
            "for",
            "a",
            "repository"
          ]
        },
        "description": "Gets the github actions permissions policy for a repository, including its enabled status and the scope of allowed actions.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"repo\": \"\",\n  \"owner\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_get_github_actions_permissions_for_an_organization",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/github/actions/permissions/for/an/organization",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "github",
            "actions",
            "permissions",
            "for",
            "an",
            "organization"
          ]
        },
        "description": "Gets the github actions permissions for a specified organization, detailing repository enablement and allowed actions policies.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"org\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_get_github_meta_information",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/github/meta/information",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "github",
            "meta",
            "information"
          ]
        },
        "description": "Fetches github's publicly available metadata, useful for configuring network security policies or ip allow-listing.",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_get_github_pages_build",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/github/pages/build",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "github",
            "pages",
            "build"
          ]
        },
        "description": "Retrieves detailed information about a specific github pages build for a repository, which must have github pages enabled.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"repo\": \"\",\n  \"owner\": \"\",\n  \"build_id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_get_information_about_a_sarif_upload",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/information/about/a/sarif/upload",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "information",
            "about",
            "a",
            "sarif",
            "upload"
          ]
        },
        "description": "Retrieves detailed information, including processing status and results url, about a specific sarif (static analysis results interchange format) upload for a repository, uniquely identified by its sar",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"repo\": \"\",\n  \"owner\": \"\",\n  \"sarif_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_get_interaction_restrictions_for_a_repository",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/interaction/restrictions/for/a/repository",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "interaction",
            "restrictions",
            "for",
            "a",
            "repository"
          ]
        },
        "description": "Retrieves active interaction restrictions for a repository, detailing which user groups are limited from activities like commenting or creating pull requests, and when these restrictions expire.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"repo\": \"\",\n  \"owner\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_get_interaction_restrictions_for_an_organization",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/interaction/restrictions/for/an/organization",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "interaction",
            "restrictions",
            "for",
            "an",
            "organization"
          ]
        },
        "description": "Retrieves interaction restrictions for an organization, showing which github user types can interact with its public repositories and when restrictions expire; returns an empty response if no restrict",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"org\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_get_interaction_restrictions_for_your_public_repositories",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/interaction/restrictions/for/your/public/repositories",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "interaction",
            "restrictions",
            "for",
            "your",
            "public",
            "repositories"
          ]
        },
        "description": "Retrieves currently active interaction restrictions for the authenticated user's public repositories.",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_get_large_files",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/large/files",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "large",
            "files"
          ]
        },
        "description": "Lists files larger than 100mb identified during a previous source import for the specified repository; this endpoint is deprecated and will be removed on april 12, 2024.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"repo\": \"\",\n  \"owner\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_get_latest_pages_build",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/latest/pages/build",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "latest",
            "pages",
            "build"
          ]
        },
        "description": "Retrieves information about the most recent github pages build for a repository, which must exist, be accessible, have github pages enabled, and have at least one prior build.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"repo\": \"\",\n  \"owner\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_get_octocat",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/octocat",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "octocat"
          ]
        },
        "description": "Fetches an ascii art representation of github's octocat, suitable for text-based displays.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"s\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_get_org_allowed_actions",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/org/allowed/actions",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "org",
            "allowed",
            "actions"
          ]
        },
        "description": "Retrieves the github actions permissions policy, including allowed actions and reusable workflows, for a specified organization.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"org\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_get_org_dev_environment_secret_safely",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/org/dev/environment/secret/safely",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "org",
            "dev",
            "environment",
            "secret",
            "safely"
          ]
        },
        "description": "Retrieves metadata for a specific secret available to an organization's github codespaces without exposing its encrypted value.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"org\": \"\",\n  \"secret_name\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_get_page_views",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/page/views",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "page",
            "views"
          ]
        },
        "description": "Retrieves page view statistics for a repository over the last 14 days, including total views, unique visitors, and a daily or weekly breakdown.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"per\": \"\",\n  \"repo\": \"\",\n  \"owner\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_get_pending_deployments_for_a_workflow_run",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/pending/deployments/for/a/workflow/run",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "pending",
            "deployments",
            "for",
            "a",
            "workflow",
            "run"
          ]
        },
        "description": "Retrieves pending deployment environments for a specific workflow run that are awaiting approval due to protection rules.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"repo\": \"\",\n  \"owner\": \"\",\n  \"run_id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_get_project_permission_for_a_user",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/project/permission/for/a/user",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "project",
            "permission",
            "for",
            "a",
            "user"
          ]
        },
        "description": "Retrieves a collaborator's permission level (admin, write, read, or none) for an existing github project.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"username\": \"\",\n  \"project_id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_get_public_key_for_secret_encryption",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/public/key/for/secret/encryption",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "public",
            "key",
            "for",
            "secret",
            "encryption"
          ]
        },
        "description": "Retrieves a repository's public key for encrypting github codespaces secrets; requires `repo` scope or equivalent read access to codespaces secrets for private repositories.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"repo\": \"\",\n  \"owner\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_get_public_key_for_the_authenticated_user",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/public/key/for/the/authenticated/user",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "public",
            "key",
            "for",
            "the",
            "authenticated",
            "user"
          ]
        },
        "description": "Retrieves the authenticated user's public github key, used to encrypt secrets for github codespaces.",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_get_pull_request_review_protection",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/pull/request/review/protection",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "pull",
            "request",
            "review",
            "protection"
          ]
        },
        "description": "Retrieves the pull request review protection settings for a specific branch in a github repository, if such protection is configured.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"repo\": \"\",\n  \"owner\": \"\",\n  \"branch\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_get_rate_limit_status_for_the_authenticated_user",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/rate/limit/status/for/the/authenticated/user",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "rate",
            "limit",
            "status",
            "for",
            "the",
            "authenticated",
            "user"
          ]
        },
        "description": "Retrieves the authenticated user's current github api rate limit status, including usage and limits across different resource categories.",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_get_repo_dev_env_secret",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/repo/dev/env/secret",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "repo",
            "dev",
            "env",
            "secret"
          ]
        },
        "description": "Gets metadata (name, creation/update timestamps) for a specific, existing development environment secret (codespaces secret) in a repository, without exposing its value.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"repo\": \"\",\n  \"owner\": \"\",\n  \"secret_name\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_get_repository_clones",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/repository/clones",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "repository",
            "clones"
          ]
        },
        "description": "Retrieves the total number of clones and a breakdown of clone activity (daily or weekly) for a specified repository over the preceding 14 days.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"per\": \"\",\n  \"repo\": \"\",\n  \"owner\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_get_repository_content",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/repository/content",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "repository",
            "content"
          ]
        },
        "description": "Retrieves a file's base64 encoded content or a directory's metadata (but not a listing of its contents) from a github repository path.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"ref\": \"\",\n  \"path\": \"\",\n  \"repo\": \"\",\n  \"owner\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_get_repository_permissions_for_a_user",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/repository/permissions/for/a/user",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "repository",
            "permissions",
            "for",
            "a",
            "user"
          ]
        },
        "description": "Retrieves a specific user's permission level ('admin', 'write', 'read', or 'none') for a given repository, where 'maintain' role is reported as 'write' and 'triage' as 'read'.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"repo\": \"\",\n  \"owner\": \"\",\n  \"username\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_get_repository_secret_securely",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/repository/secret/securely",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "repository",
            "secret",
            "securely"
          ]
        },
        "description": "Retrieves metadata for an existing dependabot secret in a repository, without exposing its encrypted value.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"repo\": \"\",\n  \"owner\": \"\",\n  \"secret_name\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_get_rules_for_a_branch",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/rules/for/a/branch",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "rules",
            "for",
            "a",
            "branch"
          ]
        },
        "description": "Retrieves all active rules for a specific branch in a github repository, excluding rules in 'evaluate' or 'disabled' status.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"page\": 0,\n  \"repo\": \"\",\n  \"owner\": \"\",\n  \"branch\": \"\",\n  \"per_page\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_get_single_org_secret_without_decryption",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/single/org/secret/without/decryption",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "single",
            "org",
            "secret",
            "without",
            "decryption"
          ]
        },
        "description": "Retrieves metadata (e.g., name, creation/update timestamps, visibility) for an organization's dependabot secret, without its encrypted value.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"org\": \"\",\n  \"secret_name\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_get_status_checks_protection",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/status/checks/protection",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "status",
            "checks",
            "protection"
          ]
        },
        "description": "Retrieves the status check protection settings for a specific branch in a github repository, if status check protection is enabled for it.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"repo\": \"\",\n  \"owner\": \"\",\n  \"branch\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_get_team_membership_for_a_user",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/team/membership/for/a/user",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "team",
            "membership",
            "for",
            "a",
            "user"
          ]
        },
        "description": "Retrieves a user's role and membership status within a specific team in an organization.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"org\": \"\",\n  \"username\": \"\",\n  \"team_slug\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_get_teams_with_access_to_the_protected_branch",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/teams/with/access/to/the/protected/branch",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "teams",
            "with",
            "access",
            "to",
            "the",
            "protected",
            "branch"
          ]
        },
        "description": "Lists teams with explicit push access to a protected branch, provided team restrictions are configured in the branch's protection settings; returns an empty list otherwise.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"repo\": \"\",\n  \"owner\": \"\",\n  \"branch\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_get_the_authenticated_user",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/the/authenticated/user",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "the",
            "authenticated",
            "user"
          ]
        },
        "description": "Gets the profile information for the currently authenticated github user, including potentially private details based on user settings.",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_get_the_combined_status_for_a_specific_reference",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/the/combined/status/for/a/specific/reference",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "the",
            "combined",
            "status",
            "for",
            "a",
            "specific",
            "reference"
          ]
        },
        "description": "Retrieves the aggregated commit status (e.g., success, failure, pending) from all checks for a specific reference (sha, branch, or tag) in a github repository.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"ref\": \"\",\n  \"page\": 0,\n  \"repo\": \"\",\n  \"owner\": \"\",\n  \"per_page\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_get_the_hourly_commit_count_for_each_day",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/the/hourly/commit/count/for/each/day",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "the",
            "hourly",
            "commit",
            "count",
            "for",
            "each",
            "day"
          ]
        },
        "description": "Retrieves the 'punch card' data, showing hourly commit counts for each day of the week for an existing and accessible repository.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"repo\": \"\",\n  \"owner\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_get_the_last_year_of_commit_activity",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/the/last/year/of/commit/activity",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "the",
            "last",
            "year",
            "of",
            "commit",
            "activity"
          ]
        },
        "description": "Fetches weekly commit totals and daily commit counts for the last 52 weeks for a specified github repository.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"repo\": \"\",\n  \"owner\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_get_the_latest_release",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/the/latest/release",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "the",
            "latest",
            "release"
          ]
        },
        "description": "Fetches the latest official (non-prerelease, non-draft) release for a github repository; requires at least one such published release.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"repo\": \"\",\n  \"owner\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_get_the_license_for_a_repository",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/the/license/for/a/repository",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "the",
            "license",
            "for",
            "a",
            "repository"
          ]
        },
        "description": "Retrieves the license file and its details for a repository, optionally from a specific git reference (branch, tag, or commit sha).",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"ref\": \"\",\n  \"repo\": \"\",\n  \"owner\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_get_the_review_history_for_a_workflow_run",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/the/review/history/for/a/workflow/run",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "the",
            "review",
            "history",
            "for",
            "a",
            "workflow",
            "run"
          ]
        },
        "description": "Retrieves the detailed approval history for a specific workflow run in a github repository, detailing each review's environment, state, reviewer, and comments, to track the approval process for workfl",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"repo\": \"\",\n  \"owner\": \"\",\n  \"run_id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_get_the_status_of_a_github_pages_deployment",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/the/status/of/a/github/pages/deployment",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "the",
            "status",
            "of",
            "a",
            "github",
            "pages",
            "deployment"
          ]
        },
        "description": "Retrieves the status of a specific github pages deployment for a repository, which must have github pages enabled.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"repo\": \"\",\n  \"owner\": \"\",\n  \"pages_deployment_id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_get_the_weekly_commit_activity",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/the/weekly/commit/activity",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "the",
            "weekly",
            "commit",
            "activity"
          ]
        },
        "description": "Fetches the weekly commit activity (additions and deletions per week) for a repository over the past year; best for repositories with under 10,000 commits.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"repo\": \"\",\n  \"owner\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_get_the_weekly_commit_count",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/the/weekly/commit/count",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "the",
            "weekly",
            "commit",
            "count"
          ]
        },
        "description": "Retrieves the weekly commit count for a repository, detailing commits by the owner and all contributors over the last 52 weeks; github may return a 202 status or an empty response if statistics are be",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"repo\": \"\",\n  \"owner\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_get_the_zen_of_github",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/the/zen/of/github",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "the",
            "zen",
            "of",
            "github"
          ]
        },
        "description": "Retrieves a random quote from github's 'zen of github' collection, reflecting github's design philosophies and offering humorous insights, useful for displaying github wisdom or a lighthearted message",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_get_top_referral_paths",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/top/referral/paths",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "top",
            "referral",
            "paths"
          ]
        },
        "description": "Fetches the top 10 most viewed content paths for a repository from the last 14 days.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"repo\": \"\",\n  \"owner\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_get_top_referral_sources",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/top/referral/sources",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "top",
            "referral",
            "sources"
          ]
        },
        "description": "Fetches the top 10 websites that referred traffic to a repository within the last 14 days.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"repo\": \"\",\n  \"owner\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_get_users_with_access_to_the_protected_branch",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/users/with/access/to/the/protected/branch",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "users",
            "with",
            "access",
            "to",
            "the",
            "protected",
            "branch"
          ]
        },
        "description": "Lists users with explicit push access to a protected branch, provided its protection rule restricts pushes to specific users.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"repo\": \"\",\n  \"owner\": \"\",\n  \"branch\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_get_workflow_external_access",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/workflow/external/access",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "workflow",
            "external",
            "access"
          ]
        },
        "description": "Gets the access level settings for a private repository, determining how workflows outside this repository can use its actions and reusable workflows.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"repo\": \"\",\n  \"owner\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_get_workflow_run_usage",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/workflow/run/usage",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "workflow",
            "run",
            "usage"
          ]
        },
        "description": "Gets the billable time, in milliseconds, for a specific workflow run, detailing time spent on various operating systems.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"repo\": \"\",\n  \"owner\": \"\",\n  \"run_id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_get_workflow_usage",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/workflow/usage",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "workflow",
            "usage"
          ]
        },
        "description": "Gets the billable time (in milliseconds, broken down by runner os) for a specific workflow within a repository for the current billing cycle.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"repo\": \"\",\n  \"owner\": \"\",\n  \"workflow_id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_gist_s_create",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/gist/s/create",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "gist",
            "s",
            "create"
          ]
        },
        "description": "Deprecated: use `create a gist` instead. creates a new github gist with specified files, content, an optional description, and public visibility.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"files\": {},\n  \"public\": false,\n  \"description\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_gist_s_list_public",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/gist/s/list/public",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "gist",
            "s",
            "list",
            "public"
          ]
        },
        "description": "(deprecated: use `list public gists` instead) lists public gists from github, optionally filtering by a 'since' timestamp and supporting pagination; results are generally newest first.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"page\": 0,\n  \"since\": \"\",\n  \"per_page\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_github_api_root",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/github/api/root",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "github",
            "api",
            "root"
          ]
        },
        "description": "Retrieves a map of all top-level github rest api resource urls and their templates.",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_github_get_repo_allowed_actions",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/github/get/repo/allowed/actions",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "github",
            "get",
            "repo",
            "allowed",
            "actions"
          ]
        },
        "description": "Gets the settings for allowed actions and reusable workflows that can be run in the specified repository.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"repo\": \"\",\n  \"owner\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_github_set_repo_runner_labels",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/github/set/repo/runner/labels",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "github",
            "set",
            "repo",
            "runner",
            "labels"
          ]
        },
        "description": "Replaces all custom labels for a specific self-hosted runner in a repository; an empty list for `labels` removes all existing custom labels.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"repo\": \"\",\n  \"owner\": \"\",\n  \"labels\": \"\",\n  \"runner_id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_issues_create",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/issues/create",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "issues",
            "create"
          ]
        },
        "description": "(deprecated: use `create an issue` instead) creates a new issue in a github repository, provided issues are enabled and the user has sufficient permissions.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"body\": \"\",\n  \"repo\": \"\",\n  \"owner\": \"\",\n  \"title\": \"\",\n  \"labels\": \"\",\n  \"assignee\": \"\",\n  \"assignees\": \"\",\n  \"milestone\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_issues_create_comment",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/issues/create/comment",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "issues",
            "create",
            "comment"
          ]
        },
        "description": "Deprecated: use `create an issue comment` to create a comment on an existing github issue or pull request.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"body\": \"\",\n  \"repo\": \"\",\n  \"owner\": \"\",\n  \"issue_number\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_issues_get",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/issues/get",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "issues",
            "get"
          ]
        },
        "description": "Deprecated: use the `get an issue` action instead to retrieve details for a specific issue in a repository.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"repo\": \"\",\n  \"owner\": \"\",\n  \"issue_number\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_issues_list_assign_ees",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/issues/list/assign/ees",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "issues",
            "list",
            "assign",
            "ees"
          ]
        },
        "description": "Deprecated: use `list assignees`. lists users who can be assigned to issues in a repository, typically those with push access.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"page\": 0,\n  \"repo\": \"\",\n  \"owner\": \"\",\n  \"per_page\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_issues_list_events_for_repo",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/issues/list/events/for/repo",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "issues",
            "list",
            "events",
            "for",
            "repo"
          ]
        },
        "description": "Lists all issue events for a specified repository. <<deprecated: this action is deprecated. use `list issue events for a repository` instead.>>",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"page\": 0,\n  \"repo\": \"\",\n  \"owner\": \"\",\n  \"per_page\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_issues_list_for_repo",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/issues/list/for/repo",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "issues",
            "list",
            "for",
            "repo"
          ]
        },
        "description": "Lists all issues (including pull requests) in a github repository; deprecated: use list repository issues.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"page\": 0,\n  \"repo\": \"\",\n  \"sort\": \"\",\n  \"owner\": \"\",\n  \"since\": \"\",\n  \"state\": \"\",\n  \"labels\": \"\",\n  \"creator\": \"\",\n  \"assignee\": \"\",\n  \"per_page\": 0,\n  \"direction\": \"\",\n  \"mentioned\": \"\",\n  \"milestone\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_list_accepted_assignments_for_an_assignment",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/accepted/assignments/for/an/assignment",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "accepted",
            "assignments",
            "for",
            "an",
            "assignment"
          ]
        },
        "description": "Lists accepted assignments (student repositories created after acceptance) for an existing github classroom assignment, identified by its unique `assignment id`.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"page\": 0,\n  \"per_page\": 0,\n  \"assignment_id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_list_app_installations_accessible_to_the_user_access_token",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/app/installations/accessible/to/the/user/access/token",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "app",
            "installations",
            "accessible",
            "to",
            "the",
            "user",
            "access",
            "token"
          ]
        },
        "description": "Lists github app installations accessible to the authenticated user via their access token, including installation details, permissions, and repository access.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"page\": 0,\n  \"per_page\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_list_artifacts_for_a_repository",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/artifacts/for/a/repository",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "artifacts",
            "for",
            "a",
            "repository"
          ]
        },
        "description": "Lists github actions workflow artifacts for a specified repository, which must exist.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"name\": \"\",\n  \"page\": 0,\n  \"repo\": \"\",\n  \"owner\": \"\",\n  \"per_page\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_list_assigned_issues",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/assigned/issues",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "assigned",
            "issues"
          ]
        },
        "description": "Lists github issues for the authenticated user, defaulting to 'assigned' but filterable by other interactions, state, labels, and time, with sorting and pagination.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"page\": 0,\n  \"sort\": \"\",\n  \"since\": \"\",\n  \"state\": \"\",\n  \"filter\": \"\",\n  \"labels\": \"\",\n  \"per_page\": 0,\n  \"direction\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_list_assignees",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/assignees",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "assignees"
          ]
        },
        "description": "Lists users who can be assigned to issues in a repository, typically those with push access.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"page\": 0,\n  \"repo\": \"\",\n  \"owner\": \"\",\n  \"per_page\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_list_assignments_for_a_classroom",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/assignments/for/a/classroom",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "assignments",
            "for",
            "a",
            "classroom"
          ]
        },
        "description": "Lists all assignments for a given github classroom `classroom id`; the classroom must exist and be accessible.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"page\": 0,\n  \"per_page\": 0,\n  \"classroom_id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_list_available_machine_types_for_a_repository",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/available/machine/types/for/a/repository",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "available",
            "machine",
            "types",
            "for",
            "a",
            "repository"
          ]
        },
        "description": "Lists machine types available for github codespaces in a repository, optionally using a git ref to check compatibility based on prebuild availability and devcontainer configurations.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"ref\": \"\",\n  \"repo\": \"\",\n  \"owner\": \"\",\n  \"location\": \"\",\n  \"client_ip\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_list_branches",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/branches",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "branches"
          ]
        },
        "description": "Lists branches for an existing github repository, with an option to filter by protection status.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"page\": 0,\n  \"repo\": \"\",\n  \"owner\": \"\",\n  \"per_page\": 0,\n  \"protected\": false\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_list_branches_for_head_commit",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/branches/for/head/commit",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "branches",
            "for",
            "head",
            "commit"
          ]
        },
        "description": "Lists branches in an accessible repository where the provided commit sha is the head, useful for identifying development lines based on that commit.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"repo\": \"\",\n  \"owner\": \"\",\n  \"commit_sha\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_list_check_run_annotations",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/check/run/annotations",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "check",
            "run",
            "annotations"
          ]
        },
        "description": "Lists annotations for a specific check run in a github repository, detailing issues like errors or warnings on particular code lines.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"page\": 0,\n  \"repo\": \"\",\n  \"owner\": \"\",\n  \"per_page\": 0,\n  \"check_run_id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_list_check_runs_for_a_git_reference",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/check/runs/for/a/git/reference",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "check",
            "runs",
            "for",
            "a",
            "git",
            "reference"
          ]
        },
        "description": "Lists check runs for a given git reference within a repository; ensure the reference exists and the repository is accessible.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"ref\": \"\",\n  \"page\": 0,\n  \"repo\": \"\",\n  \"owner\": \"\",\n  \"app_id\": 0,\n  \"filter\": \"\",\n  \"status\": \"\",\n  \"per_page\": 0,\n  \"check_name\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_list_check_runs_in_a_check_suite",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/check/runs/in/a/check/suite",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "check",
            "runs",
            "in",
            "a",
            "check",
            "suite"
          ]
        },
        "description": "Lists check runs for a specific check suite in a github repository, optionally filtering by check name or status.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"page\": 0,\n  \"repo\": \"\",\n  \"owner\": \"\",\n  \"filter\": \"\",\n  \"status\": \"\",\n  \"per_page\": 0,\n  \"check_name\": \"\",\n  \"check_suite_id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_list_check_suites_for_a_git_reference",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/check/suites/for/a/git/reference",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "check",
            "suites",
            "for",
            "a",
            "git",
            "reference"
          ]
        },
        "description": "Lists check suites for a git reference (commit sha, branch, or tag) in a repository, optionally filtering by github app id or check run name.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"ref\": \"\",\n  \"page\": 0,\n  \"repo\": \"\",\n  \"owner\": \"\",\n  \"app_id\": 0,\n  \"per_page\": 0,\n  \"check_name\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_list_child_teams",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/child/teams",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "child",
            "teams"
          ]
        },
        "description": "Lists the immediate child teams of a parent team within an organization.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"org\": \"\",\n  \"page\": 0,\n  \"per_page\": 0,\n  \"team_slug\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_list_classrooms",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/classrooms",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "classrooms"
          ]
        },
        "description": "Lists github classrooms to which the authenticated user has administrative access.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"page\": 0,\n  \"per_page\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_list_code_ql_databases_for_a_repository",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/code/ql/databases/for/a/repository",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "code",
            "ql",
            "databases",
            "for",
            "a",
            "repository"
          ]
        },
        "description": "Lists all codeql databases for a repository where codeql analysis has been previously run and completed.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"repo\": \"\",\n  \"owner\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_list_code_scanning_alerts_for_a_repository",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/code/scanning/alerts/for/a/repository",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "code",
            "scanning",
            "alerts",
            "for",
            "a",
            "repository"
          ]
        },
        "description": "Lists code scanning alerts for a repository, optionally filtering by tool (which must have produced scan results for the repository), git reference, state, or severity.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"ref\": \"\",\n  \"page\": 0,\n  \"repo\": \"\",\n  \"sort\": \"\",\n  \"owner\": \"\",\n  \"state\": \"\",\n  \"per_page\": 0,\n  \"severity\": \"\",\n  \"direction\": \"\",\n  \"tool_guid\": \"\",\n  \"tool_name\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_list_code_scanning_alerts_for_an_organization",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/code/scanning/alerts/for/an/organization",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "code",
            "scanning",
            "alerts",
            "for",
            "an",
            "organization"
          ]
        },
        "description": "Lists code scanning alerts for a github organization; use either `tool name` or `tool guid` if filtering by tool, not both.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"org\": \"\",\n  \"page\": 0,\n  \"sort\": \"\",\n  \"after\": \"\",\n  \"state\": \"\",\n  \"before\": \"\",\n  \"per_page\": 0,\n  \"severity\": \"\",\n  \"direction\": \"\",\n  \"tool_guid\": \"\",\n  \"tool_name\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_list_code_scanning_analyses_for_a_repository",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/code/scanning/analyses/for/a/repository",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "code",
            "scanning",
            "analyses",
            "for",
            "a",
            "repository"
          ]
        },
        "description": "Lists code scanning analyses for an existing repository, optionally filtering by tool (name or guid), git reference, or sarif id.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"ref\": \"\",\n  \"page\": 0,\n  \"repo\": \"\",\n  \"sort\": \"\",\n  \"owner\": \"\",\n  \"per_page\": 0,\n  \"sarif_id\": \"\",\n  \"direction\": \"\",\n  \"tool_guid\": \"\",\n  \"tool_name\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_list_codeowners_errors",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/codeowners/errors",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "codeowners",
            "errors"
          ]
        },
        "description": "Lists syntax errors in a repository's codeowners file, which must be located at the root, `.github/`, or `docs/` directory for the specified ref.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"ref\": \"\",\n  \"repo\": \"\",\n  \"owner\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_list_codespaces_for_a_user_in_organization",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/codespaces/for/a/user/in/organization",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "codespaces",
            "for",
            "a",
            "user",
            "in",
            "organization"
          ]
        },
        "description": "Lists all github codespaces owned by a specified member of a given organization.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"org\": \"\",\n  \"page\": 0,\n  \"per_page\": 0,\n  \"username\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_list_codespaces_for_the_authenticated_user",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/codespaces/for/the/authenticated/user",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "codespaces",
            "for",
            "the",
            "authenticated",
            "user"
          ]
        },
        "description": "Lists github codespaces for the authenticated user, optionally filtering by repository id and supporting pagination.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"page\": 0,\n  \"per_page\": 0,\n  \"repository_id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_list_codespaces_for_the_organization",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/codespaces/for/the/organization",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "codespaces",
            "for",
            "the",
            "organization"
          ]
        },
        "description": "Lists active/pending github codespaces for an existing organization; admins list all, members list their own.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"org\": \"\",\n  \"page\": 0,\n  \"per_page\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_list_comments_for_a_pull_request_review",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/comments/for/a/pull/request/review",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "comments",
            "for",
            "a",
            "pull",
            "request",
            "review"
          ]
        },
        "description": "Lists all comments for a specific review on a github pull request.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"page\": 0,\n  \"repo\": \"\",\n  \"owner\": \"\",\n  \"per_page\": 0,\n  \"review_id\": 0,\n  \"pull_number\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_list_commit_comments",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/commit/comments",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "commit",
            "comments"
          ]
        },
        "description": "Retrieves all comments for a specific commit in a github repository, supporting pagination.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"page\": 0,\n  \"repo\": \"\",\n  \"owner\": \"\",\n  \"per_page\": 0,\n  \"commit_sha\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_list_commit_comments_for_a_repository",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/commit/comments/for/a/repository",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "commit",
            "comments",
            "for",
            "a",
            "repository"
          ]
        },
        "description": "Lists all commit comments for a specified repository, which must exist and be accessible.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"page\": 0,\n  \"repo\": \"\",\n  \"owner\": \"\",\n  \"per_page\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_list_commit_statuses_for_a_reference",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/commit/statuses/for/a/reference",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "commit",
            "statuses",
            "for",
            "a",
            "reference"
          ]
        },
        "description": "Lists commit statuses for a specific reference (commit sha, branch, or tag) in a repository, useful for tracking ci/test outcomes.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"ref\": \"\",\n  \"page\": 0,\n  \"repo\": \"\",\n  \"owner\": \"\",\n  \"per_page\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_list_commits",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/commits",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "commits"
          ]
        },
        "description": "Retrieves commits for a repository, optionally filtering by sha (must be valid commit sha or existing branch), path, author, committer, or date range.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"sha\": \"\",\n  \"page\": 0,\n  \"path\": \"\",\n  \"repo\": \"\",\n  \"owner\": \"\",\n  \"since\": \"\",\n  \"until\": \"\",\n  \"author\": \"\",\n  \"per_page\": 0,\n  \"committer\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_list_commits_on_a_pull_request",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/commits/on/a/pull/request",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "commits",
            "on",
            "a",
            "pull",
            "request"
          ]
        },
        "description": "Lists commits for a pull request; requires the repository and pull request to exist and be accessible, and supports pagination.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"page\": 0,\n  \"repo\": \"\",\n  \"owner\": \"\",\n  \"per_page\": 0,\n  \"pull_number\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_list_custom_property_values_for_organization_repositories",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/custom/property/values/for/organization/repositories",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "custom",
            "property",
            "values",
            "for",
            "organization",
            "repositories"
          ]
        },
        "description": "Lists custom property values for repositories in a specified, existing organization, optionally filtered by a repository query.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"org\": \"\",\n  \"page\": 0,\n  \"per_page\": 0,\n  \"repository_query\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_list_deliveries_for_a_repository_webhook",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/deliveries/for/a/repository/webhook",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "deliveries",
            "for",
            "a",
            "repository",
            "webhook"
          ]
        },
        "description": "Retrieves delivery attempts for a specific repository webhook to inspect its history; ensure the webhook id exists.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"repo\": \"\",\n  \"owner\": \"\",\n  \"cursor\": \"\",\n  \"hook_id\": 0,\n  \"per_page\": 0,\n  \"redelivery\": false\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_list_deliveries_for_an_organization_webhook",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/deliveries/for/an/organization/webhook",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "deliveries",
            "for",
            "an",
            "organization",
            "webhook"
          ]
        },
        "description": "Retrieves a list of webhook deliveries for a specific webhook in an organization, allowing inspection of delivery history and details.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"org\": \"\",\n  \"cursor\": \"\",\n  \"hook_id\": 0,\n  \"per_page\": 0,\n  \"redelivery\": false\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_list_deploy_keys",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/deploy/keys",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "deploy",
            "keys"
          ]
        },
        "description": "Lists deploy ssh keys for a specified repository; the repository must exist.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"page\": 0,\n  \"repo\": \"\",\n  \"owner\": \"\",\n  \"per_page\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_list_deployment_branch_policies",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/deployment/branch/policies",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "deployment",
            "branch",
            "policies"
          ]
        },
        "description": "Lists all deployment branch policies for a specified environment in a github repository.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"page\": 0,\n  \"repo\": \"\",\n  \"owner\": \"\",\n  \"per_page\": 0,\n  \"environment_name\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_list_deployment_statuses",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/deployment/statuses",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "deployment",
            "statuses"
          ]
        },
        "description": "Lists all statuses for a given deployment in a repository.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"page\": 0,\n  \"repo\": \"\",\n  \"owner\": \"\",\n  \"per_page\": 0,\n  \"deployment_id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_list_deployments",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/deployments",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "deployments"
          ]
        },
        "description": "Lists deployments for a specified repository; repository must exist.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"ref\": \"\",\n  \"sha\": \"\",\n  \"page\": 0,\n  \"repo\": \"\",\n  \"task\": \"\",\n  \"owner\": \"\",\n  \"per_page\": 0,\n  \"environment\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_list_discussion_comments",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/discussion/comments",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "discussion",
            "comments"
          ]
        },
        "description": "Lists all comments for a specific team discussion within an organization.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"org\": \"\",\n  \"page\": 0,\n  \"per_page\": 0,\n  \"direction\": \"\",\n  \"team_slug\": \"\",\n  \"discussion_number\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_list_discussions",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/discussions",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "discussions"
          ]
        },
        "description": "Lists discussions for a specific team within an organization, with options for sorting, pagination, and filtering by pinned status.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"org\": \"\",\n  \"page\": 0,\n  \"pinned\": \"\",\n  \"per_page\": 0,\n  \"direction\": \"\",\n  \"team_slug\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_list_email_addresses_for_the_authenticated_user",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/email/addresses/for/the/authenticated/user",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "email",
            "addresses",
            "for",
            "the",
            "authenticated",
            "user"
          ]
        },
        "description": "Lists all email addresses for the authenticated user, including their primary status, verification status, and visibility.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"page\": 0,\n  \"per_page\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_list_environment_custom_deployment_rules",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/environment/custom/deployment/rules",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "environment",
            "custom",
            "deployment",
            "rules"
          ]
        },
        "description": "Lists all custom deployment protection rule integrations for a repository environment; the `environment name` must be url-encoded.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"page\": 0,\n  \"repo\": \"\",\n  \"owner\": \"\",\n  \"per_page\": 0,\n  \"environment_name\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_list_environment_secrets",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/environment/secrets",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "environment",
            "secrets"
          ]
        },
        "description": "Lists the names and metadata (not values) of secrets for a specified, existing environment within an existing github repository.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"page\": 0,\n  \"repo\": \"\",\n  \"owner\": \"\",\n  \"per_page\": 0,\n  \"environment_name\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_list_environment_variables",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/environment/variables",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "environment",
            "variables"
          ]
        },
        "description": "Lists all environment variables, which are plaintext key-value pairs for github actions workflows, for a specified environment within a github repository.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"page\": 0,\n  \"repo\": \"\",\n  \"owner\": \"\",\n  \"per_page\": 0,\n  \"environment_name\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_list_environments",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/environments",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "environments"
          ]
        },
        "description": "Retrieves all deployment environments for a specified repository, which are used to configure protection rules and secrets for different software lifecycle stages.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"page\": 0,\n  \"repo\": \"\",\n  \"owner\": \"\",\n  \"per_page\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_list_events_for_the_authenticated_user",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/events/for/the/authenticated/user",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "events",
            "for",
            "the",
            "authenticated",
            "user"
          ]
        },
        "description": "Lists public events for the specified github user, or private events if authenticated as that user, in reverse chronological order.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"page\": 0,\n  \"per_page\": 0,\n  \"username\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_list_events_received_by_the_authenticated_user",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/events/received/by/the/authenticated/user",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "events",
            "received",
            "by",
            "the",
            "authenticated",
            "user"
          ]
        },
        "description": "Lists events a specific github user received from followed users and watched repositories; returns private events if authenticated for `username`, otherwise public.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"page\": 0,\n  \"per_page\": 0,\n  \"username\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_list_followers_of_a_user",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/followers/of/a/user",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "followers",
            "of",
            "a",
            "user"
          ]
        },
        "description": "Lists followers for a specified, existing github user.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"page\": 0,\n  \"per_page\": 0,\n  \"username\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_list_followers_of_the_authenticated_user",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/followers/of/the/authenticated/user",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "followers",
            "of",
            "the",
            "authenticated",
            "user"
          ]
        },
        "description": "Lists users following the authenticated github user, returning an empty list if the user has no followers.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"page\": 0,\n  \"per_page\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_list_forks",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/forks",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "forks"
          ]
        },
        "description": "Lists forks for a specified repository, which must exist, with options for sorting and pagination.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"page\": 0,\n  \"repo\": \"\",\n  \"sort\": \"\",\n  \"owner\": \"\",\n  \"per_page\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_list_gist_comments",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/gist/comments",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "gist",
            "comments"
          ]
        },
        "description": "Lists comments for a specified github gist.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"page\": 0,\n  \"gist_id\": \"\",\n  \"per_page\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_list_gist_commits",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/gist/commits",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "gist",
            "commits"
          ]
        },
        "description": "Lists all commits for a specified gist.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"page\": 0,\n  \"gist_id\": \"\",\n  \"per_page\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_list_gist_forks",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/gist/forks",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "gist",
            "forks"
          ]
        },
        "description": "Lists all forks for a given github gist id.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"page\": 0,\n  \"gist_id\": \"\",\n  \"per_page\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_list_gists_for_a_user",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/gists/for/a/user",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "gists",
            "for",
            "a",
            "user"
          ]
        },
        "description": "Lists public gists for a specified github user.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"page\": 0,\n  \"since\": \"\",\n  \"per_page\": 0,\n  \"username\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_list_gists_for_the_authenticated_user",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/gists/for/the/authenticated/user",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "gists",
            "for",
            "the",
            "authenticated",
            "user"
          ]
        },
        "description": "Lists gists for the authenticated user, with optional filtering by update time and pagination.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"page\": 0,\n  \"since\": \"\",\n  \"per_page\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_list_github_actions_caches_for_a_repository",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/github/actions/caches/for/a/repository",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "github",
            "actions",
            "caches",
            "for",
            "a",
            "repository"
          ]
        },
        "description": "Lists github actions caches for a repository, with options to filter by git reference or cache key, and to sort and paginate results.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"key\": \"\",\n  \"ref\": \"\",\n  \"page\": 0,\n  \"repo\": \"\",\n  \"sort\": \"\",\n  \"owner\": \"\",\n  \"per_page\": 0,\n  \"direction\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_list_github_pages_builds",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/github/pages/builds",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "github",
            "pages",
            "builds"
          ]
        },
        "description": "Lists github pages builds for a repository; github pages must be enabled on the repository for builds to be listed.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"page\": 0,\n  \"repo\": \"\",\n  \"owner\": \"\",\n  \"per_page\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_list_global_security_advisories",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/global/security/advisories",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "global",
            "security",
            "advisories"
          ]
        },
        "description": "Lists github's global security advisories, filterable by various attributes including id, type, ecosystem, severity, and dates.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"cwes\": \"\",\n  \"sort\": \"\",\n  \"type\": \"\",\n  \"after\": \"\",\n  \"before\": \"\",\n  \"cve_id\": \"\",\n  \"affects\": \"\",\n  \"ghsa_id\": \"\",\n  \"updated\": \"\",\n  \"modified\": \"\",\n  \"per_page\": 0,\n  \"severity\": \"\",\n  \"direction\": \"\",\n  \"ecosystem\": \"\",\n  \"published\": \"\",\n  \"is_withdrawn\": false\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_list_installation_requests_for_the_authenticated_app",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/installation/requests/for/the/authenticated/app",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "installation",
            "requests",
            "for",
            "the",
            "authenticated",
            "app"
          ]
        },
        "description": "Lists pending installation requests made by users or organizations for the authenticated github app.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"page\": 0,\n  \"per_page\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_list_instances_of_a_code_scanning_alert",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/instances/of/a/code/scanning/alert",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "instances",
            "of",
            "a",
            "code",
            "scanning",
            "alert"
          ]
        },
        "description": "Lists all instances of a specific code scanning alert, optionally filtered by git ref; requires code scanning to be enabled on the repository.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"ref\": \"\",\n  \"page\": 0,\n  \"repo\": \"\",\n  \"owner\": \"\",\n  \"per_page\": 0,\n  \"alert_number\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_list_issue_comments",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/issue/comments",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "issue",
            "comments"
          ]
        },
        "description": "Lists comments for a specified issue in a github repository.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"page\": 0,\n  \"repo\": \"\",\n  \"owner\": \"\",\n  \"since\": \"\",\n  \"per_page\": 0,\n  \"issue_number\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_list_issue_comments_for_a_repository",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/issue/comments/for/a/repository",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "issue",
            "comments",
            "for",
            "a",
            "repository"
          ]
        },
        "description": "Lists issue comments, including those on pull requests, for an accessible repository.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"page\": 0,\n  \"repo\": \"\",\n  \"sort\": \"\",\n  \"owner\": \"\",\n  \"since\": \"\",\n  \"per_page\": 0,\n  \"direction\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_list_issue_events",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/issue/events",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "issue",
            "events"
          ]
        },
        "description": "Retrieves a list of all events for a specific issue within a github repository.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"page\": 0,\n  \"repo\": \"\",\n  \"owner\": \"\",\n  \"per_page\": 0,\n  \"issue_number\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_list_issue_events_for_a_repository",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/issue/events/for/a/repository",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "issue",
            "events",
            "for",
            "a",
            "repository"
          ]
        },
        "description": "Lists all issue events (e.g., closed, reopened, assigned) for a specified repository.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"page\": 0,\n  \"repo\": \"\",\n  \"owner\": \"\",\n  \"per_page\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_list_issues_assigned_to_the_authenticated_user",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/issues/assigned/to/the/authenticated/user",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "issues",
            "assigned",
            "to",
            "the",
            "authenticated",
            "user"
          ]
        },
        "description": "Lists github issues for the authenticated user across visible repositories, with filtering by user relationship, state, labels, an iso 8601 `since` timestamp (yyyy-mm-ddthh:mm:ssz), and sorting option",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"orgs\": false,\n  \"page\": 0,\n  \"sort\": \"\",\n  \"owned\": false,\n  \"pulls\": false,\n  \"since\": \"\",\n  \"state\": \"\",\n  \"collab\": false,\n  \"filter\": \"\",\n  \"labels\": \"\",\n  \"per_page\": 0,\n  \"direction\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_list_jobs_for_a_workflow_run",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/jobs/for/a/workflow/run",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "jobs",
            "for",
            "a",
            "workflow",
            "run"
          ]
        },
        "description": "Lists jobs for a specific workflow run in a github repository.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"page\": 0,\n  \"repo\": \"\",\n  \"owner\": \"\",\n  \"filter\": \"\",\n  \"run_id\": 0,\n  \"per_page\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_list_jobs_for_a_workflow_run_attempt",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/jobs/for/a/workflow/run/attempt",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "jobs",
            "for",
            "a",
            "workflow",
            "run",
            "attempt"
          ]
        },
        "description": "Lists jobs, including details like id, status, and steps, for a specific attempt of a github actions workflow run.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"page\": 0,\n  \"repo\": \"\",\n  \"owner\": \"\",\n  \"run_id\": 0,\n  \"per_page\": 0,\n  \"attempt_number\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_list_labels_for_a_repository",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/labels/for/a/repository",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "labels",
            "for",
            "a",
            "repository"
          ]
        },
        "description": "Retrieves all labels for a specified, existing github repository.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"page\": 0,\n  \"repo\": \"\",\n  \"owner\": \"\",\n  \"per_page\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_list_labels_for_a_self_hosted_runner_for_a_repository",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/labels/for/a/self/hosted/runner/for/a/repository",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "labels",
            "for",
            "a",
            "self",
            "hosted",
            "runner",
            "for",
            "a",
            "repository"
          ]
        },
        "description": "Lists all labels assigned to a specific self-hosted runner registered with the given repository.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"repo\": \"\",\n  \"owner\": \"\",\n  \"runner_id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_list_labels_for_a_self_hosted_runner_for_an_organization",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/labels/for/a/self/hosted/runner/for/an/organization",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "labels",
            "for",
            "a",
            "self",
            "hosted",
            "runner",
            "for",
            "an",
            "organization"
          ]
        },
        "description": "Lists all labels assigned to a specific self-hosted runner within a github organization, which are used to route workflows.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"org\": \"\",\n  \"runner_id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_list_labels_for_an_issue",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/labels/for/an/issue",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "labels",
            "for",
            "an",
            "issue"
          ]
        },
        "description": "Lists all labels for a specified issue in a github repository.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"page\": 0,\n  \"repo\": \"\",\n  \"owner\": \"\",\n  \"per_page\": 0,\n  \"issue_number\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_list_labels_for_issues_in_a_milestone",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/labels/for/issues/in/a/milestone",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "labels",
            "for",
            "issues",
            "in",
            "a",
            "milestone"
          ]
        },
        "description": "Lists all labels for issues within a specific milestone in a repository.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"page\": 0,\n  \"repo\": \"\",\n  \"owner\": \"\",\n  \"per_page\": 0,\n  \"milestone_number\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_list_machine_types_for_a_codespace",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/machine/types/for/a/codespace",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "machine",
            "types",
            "for",
            "a",
            "codespace"
          ]
        },
        "description": "Lists available machine types for a specific, accessible codespace, enabling it to be transitioned to a new hardware configuration.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"codespace_name\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_list_matching_references",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/matching/references",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "matching",
            "references"
          ]
        },
        "description": "Lists all git references (branches or tags) in a repository that start with the provided partial reference path (e.g., `heads/my-feature` or `tags/v1.2`).",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"ref\": \"\",\n  \"repo\": \"\",\n  \"owner\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_list_milestones",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/milestones",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "milestones"
          ]
        },
        "description": "Lists milestones, which track progress for groups of issues and pull requests, for an existing repository, allowing filtering by state and sorting.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"page\": 0,\n  \"repo\": \"\",\n  \"sort\": \"\",\n  \"owner\": \"\",\n  \"state\": \"\",\n  \"per_page\": 0,\n  \"direction\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_list_notifications_for_the_authenticated_user",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/notifications/for/the/authenticated/user",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "notifications",
            "for",
            "the",
            "authenticated",
            "user"
          ]
        },
        "description": "Lists notifications for the authenticated user, sorted by most recent update, with filtering and pagination options.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"all\": false,\n  \"page\": 0,\n  \"since\": \"\",\n  \"before\": \"\",\n  \"per_page\": 0,\n  \"participating\": false\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_list_org_fine_grained_permissions",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/org/fine/grained/permissions",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "org",
            "fine",
            "grained",
            "permissions"
          ]
        },
        "description": "Retrieves all fine-grained permissions for a specified github organization, essential for creating or updating custom roles.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"org\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_list_org_issues_for_user",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/org/issues/for/user",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "org",
            "issues",
            "for",
            "user"
          ]
        },
        "description": "Lists issues for the authenticated user within a specified github organization, with options to filter by involvement type, state, labels, and to sort results.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"org\": \"\",\n  \"page\": 0,\n  \"sort\": \"\",\n  \"since\": \"\",\n  \"state\": \"\",\n  \"filter\": \"\",\n  \"labels\": \"\",\n  \"per_page\": 0,\n  \"direction\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_list_org_level_codespaces_secrets",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/org/level/codespaces/secrets",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "org",
            "level",
            "codespaces",
            "secrets"
          ]
        },
        "description": "Lists all codespaces secrets available for a specified organization, which must exist.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"org\": \"\",\n  \"page\": 0,\n  \"per_page\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_list_org_package_versions",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/org/package/versions",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "org",
            "package",
            "versions"
          ]
        },
        "description": "Lists all versions for a specified package, if it exists and is owned by the given github organization.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"org\": \"\",\n  \"page\": 0,\n  \"state\": \"\",\n  \"per_page\": 0,\n  \"package_name\": \"\",\n  \"package_type\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_list_org_repos_withgithub_actions_enabled",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/org/repos/withgithub/actions/enabled",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "org",
            "repos",
            "withgithub",
            "actions",
            "enabled"
          ]
        },
        "description": "Lists repositories in an organization with github actions enabled, for use when the organization's policy restricts actions to a specific list of repositories rather than enabling it for all.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"org\": \"\",\n  \"page\": 0,\n  \"per_page\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_list_org_resource_access_tokens",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/org/resource/access/tokens",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "org",
            "resource",
            "access",
            "tokens"
          ]
        },
        "description": "Lists approved fine-grained personal access tokens (pats) with access to resources in a github organization, optionally filtering by owner, repository, permissions, or last usage time.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"org\": \"\",\n  \"page\": 0,\n  \"sort\": \"\",\n  \"owner\": \"\",\n  \"per_page\": 0,\n  \"direction\": \"\",\n  \"permission\": \"\",\n  \"repository\": \"\",\n  \"last_used_after\": \"\",\n  \"last_used_before\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_list_org_resources_with_personal_tokens",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/org/resources/with/personal/tokens",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "org",
            "resources",
            "with",
            "personal",
            "tokens"
          ]
        },
        "description": "Retrieves a list of an organization's fine-grained personal access token requests (pending, approved, or denied), with options for filtering and sorting.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"org\": \"\",\n  \"page\": 0,\n  \"sort\": \"\",\n  \"owner\": \"\",\n  \"per_page\": 0,\n  \"direction\": \"\",\n  \"permission\": \"\",\n  \"repository\": \"\",\n  \"last_used_after\": \"\",\n  \"last_used_before\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_list_org_secrets_without_values",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/org/secrets/without/values",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "org",
            "secrets",
            "without",
            "values"
          ]
        },
        "description": "Lists all dependabot secrets (metadata like names, creation/update timestamps, but not their encrypted values) for a specified organization, which must exist.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"org\": \"\",\n  \"page\": 0,\n  \"per_page\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_list_organization_events_for_the_authenticated_user",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/organization/events/for/the/authenticated/user",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "organization",
            "events",
            "for",
            "the",
            "authenticated",
            "user"
          ]
        },
        "description": "Lists events within a specified organization that were performed by the authenticated user, whose `username` (path parameter) must match the api request credentials.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"org\": \"\",\n  \"page\": 0,\n  \"per_page\": 0,\n  \"username\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_list_organization_members",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/organization/members",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "organization",
            "members"
          ]
        },
        "description": "Lists public and concealed members of a github organization; viewing concealed members requires authenticated user to be an organization member.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"org\": \"\",\n  \"page\": 0,\n  \"role\": \"\",\n  \"filter\": \"\",\n  \"per_page\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_list_organization_projects",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/organization/projects",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "organization",
            "projects"
          ]
        },
        "description": "Lists projects for a specified github organization, optionally filtering by state and supporting pagination.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"org\": \"\",\n  \"page\": 0,\n  \"state\": \"\",\n  \"per_page\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_list_organization_repositories",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/organization/repositories",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "organization",
            "repositories"
          ]
        },
        "description": "Retrieves a list of repositories for a specified github organization, allowing filtering by type and sorting.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"org\": \"\",\n  \"page\": 0,\n  \"sort\": \"\",\n  \"type\": \"\",\n  \"per_page\": 0,\n  \"direction\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_list_organization_secrets",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/organization/secrets",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "organization",
            "secrets"
          ]
        },
        "description": "Lists github actions secrets available for a specified organization.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"org\": \"\",\n  \"page\": 0,\n  \"per_page\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_list_organization_variables",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/organization/variables",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "organization",
            "variables"
          ]
        },
        "description": "Lists all github actions variables for a specified organization.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"org\": \"\",\n  \"page\": 0,\n  \"per_page\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_list_organization_webhooks",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/organization/webhooks",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "organization",
            "webhooks"
          ]
        },
        "description": "Lists all webhooks for a specified github organization; the organization must exist.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"org\": \"\",\n  \"page\": 0,\n  \"per_page\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_list_organizations",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/organizations",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "organizations"
          ]
        },
        "description": "Lists github organizations for the authenticated user, sorted by id in ascending order.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"since\": 0,\n  \"per_page\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_list_organizations_for_a_user",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/organizations/for/a/user",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "organizations",
            "for",
            "a",
            "user"
          ]
        },
        "description": "Lists public organizations for a specified github user; the `username` must be a valid github handle.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"page\": 0,\n  \"per_page\": 0,\n  \"username\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_list_organizations_for_the_authenticated_user",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/organizations/for/the/authenticated/user",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "organizations",
            "for",
            "the",
            "authenticated",
            "user"
          ]
        },
        "description": "Lists organizations the authenticated github user is a member of, returning details for each organization.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"page\": 0,\n  \"per_page\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_list_outside_collaborators_for_an_organization",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/outside/collaborators/for/an/organization",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "outside",
            "collaborators",
            "for",
            "an",
            "organization"
          ]
        },
        "description": "Lists outside collaborators for a github organization, with options to filter (e.g., by 2fa status) and paginate results.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"org\": \"\",\n  \"page\": 0,\n  \"filter\": \"\",\n  \"per_page\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_list_owned_package_versions",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/owned/package/versions",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "owned",
            "package",
            "versions"
          ]
        },
        "description": "Lists all versions for an existing package owned by the authenticated user, identified by its type and name.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"page\": 0,\n  \"state\": \"\",\n  \"per_page\": 0,\n  \"package_name\": \"\",\n  \"package_type\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_list_package_versions_for_a_package_owned_by_a_user",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/package/versions/for/a/package/owned/by/a/user",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "package",
            "versions",
            "for",
            "a",
            "package",
            "owned",
            "by",
            "a",
            "user"
          ]
        },
        "description": "Lists all versions of a public package owned by a specific github user, identified by package type, package name, and username.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"username\": \"\",\n  \"package_name\": \"\",\n  \"package_type\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_list_packages_for_a_user",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/packages/for/a/user",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "packages",
            "for",
            "a",
            "user"
          ]
        },
        "description": "Lists packages for a specified github user, filterable by package type and visibility.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"page\": 0,\n  \"per_page\": 0,\n  \"username\": \"\",\n  \"visibility\": \"\",\n  \"package_type\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_list_packages_for_an_organization",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/packages/for/an/organization",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "packages",
            "for",
            "an",
            "organization"
          ]
        },
        "description": "Lists github packages for an organization, noting specific interpretations for package type and visibility parameters.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"org\": \"\",\n  \"page\": 0,\n  \"per_page\": 0,\n  \"visibility\": \"\",\n  \"package_type\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_list_packages_for_the_authenticated_user_s_namespace",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/packages/for/the/authenticated/user/s/namespace",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "packages",
            "for",
            "the",
            "authenticated",
            "user",
            "s",
            "namespace"
          ]
        },
        "description": "Lists packages of a specific type and visibility within the authenticated user's namespace on github.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"page\": 0,\n  \"per_page\": 0,\n  \"visibility\": \"\",\n  \"package_type\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_list_pending_team_invitations",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/pending/team/invitations",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "pending",
            "team",
            "invitations"
          ]
        },
        "description": "Lists all pending membership invitations for a specified team within an organization.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"org\": \"\",\n  \"page\": 0,\n  \"per_page\": 0,\n  \"team_slug\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_list_project_cards",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/project/cards",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "project",
            "cards"
          ]
        },
        "description": "Lists all project cards for a given `column id`, which must correspond to an existing project column.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"page\": 0,\n  \"per_page\": 0,\n  \"column_id\": 0,\n  \"archived_state\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_list_project_collaborators",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/project/collaborators",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "project",
            "collaborators"
          ]
        },
        "description": "Fetches a list of collaborators for a specified, existing github project.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"page\": 0,\n  \"per_page\": 0,\n  \"project_id\": 0,\n  \"affiliation\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_list_project_columns",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/project/columns",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "project",
            "columns"
          ]
        },
        "description": "Lists all of a github project's columns (e.g., 'to do', 'in progress'); project id must identify a valid, accessible project.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"page\": 0,\n  \"per_page\": 0,\n  \"project_id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_list_public_email_addresses_for_the_authenticated_user",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/public/email/addresses/for/the/authenticated/user",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "public",
            "email",
            "addresses",
            "for",
            "the",
            "authenticated",
            "user"
          ]
        },
        "description": "Lists the public email addresses for the authenticated user.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"page\": 0,\n  \"per_page\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_list_public_events",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/public/events",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "public",
            "events"
          ]
        },
        "description": "Lists public github events, which may be delayed by up to 5 minutes, with support for pagination.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"page\": 0,\n  \"per_page\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_list_public_events_for_a_network_of_repositories",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/public/events/for/a/network/of/repositories",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "public",
            "events",
            "for",
            "a",
            "network",
            "of",
            "repositories"
          ]
        },
        "description": "Retrieves public events (up to 90 days old, newest first) for a github repository network, including the repository and its forks.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"page\": 0,\n  \"repo\": \"\",\n  \"owner\": \"\",\n  \"per_page\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_list_public_events_for_a_user",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/public/events/for/a/user",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "public",
            "events",
            "for",
            "a",
            "user"
          ]
        },
        "description": "Retrieves a list of public events for a specified github user, in reverse chronological order.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"page\": 0,\n  \"per_page\": 0,\n  \"username\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_list_public_events_received_by_a_user",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/public/events/received/by/a/user",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "public",
            "events",
            "received",
            "by",
            "a",
            "user"
          ]
        },
        "description": "Lists public events for a specified github user (e.g., activities in repositories they watch or are involved in); the target user's profile must be public, and if blocked by the authenticated user, a ",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"page\": 0,\n  \"per_page\": 0,\n  \"username\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_list_public_gists",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/public/gists",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "public",
            "gists"
          ]
        },
        "description": "Lists public gists from github, optionally filtering by a 'since' timestamp and supporting pagination; results are generally newest first.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"page\": 0,\n  \"since\": \"\",\n  \"per_page\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_list_public_keys_for_a_user",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/public/keys/for/a/user",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "public",
            "keys",
            "for",
            "a",
            "user"
          ]
        },
        "description": "Lists the verified public ssh keys for a specified github user.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"page\": 0,\n  \"per_page\": 0,\n  \"username\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_list_public_organization_events",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/public/organization/events",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "public",
            "organization",
            "events"
          ]
        },
        "description": "Lists public events for a specified github organization, which must exist.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"org\": \"\",\n  \"page\": 0,\n  \"per_page\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_list_public_organization_members",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/public/organization/members",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "public",
            "organization",
            "members"
          ]
        },
        "description": "Lists users who have publicly declared their membership in a specified, existing github organization.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"org\": \"\",\n  \"page\": 0,\n  \"per_page\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_list_public_repositories",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/public/repositories",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "public",
            "repositories"
          ]
        },
        "description": "Lists all public repositories on github; use the `since` parameter with a repository id from a previous result for pagination.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"since\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_list_pull_requests",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/pull/requests",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "pull",
            "requests"
          ]
        },
        "description": "Lists pull requests for a specified github repository with ai-friendly filtering.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"base\": \"\",\n  \"head\": \"\",\n  \"page\": 0,\n  \"repo\": \"\",\n  \"sort\": \"\",\n  \"owner\": \"\",\n  \"state\": \"\",\n  \"per_page\": 0,\n  \"direction\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_list_pull_requests_associated_with_a_commit",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/pull/requests/associated/with/a/commit",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "pull",
            "requests",
            "associated",
            "with",
            "a",
            "commit"
          ]
        },
        "description": "Lists pull requests for a commit; returns merged prs that introduced the commit if on the default branch, or open prs including the commit if on other branches.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"page\": 0,\n  \"repo\": \"\",\n  \"owner\": \"\",\n  \"per_page\": 0,\n  \"commit_sha\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_list_pull_requests_files",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/pull/requests/files",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "pull",
            "requests",
            "files"
          ]
        },
        "description": "Lists all files (including additions, modifications, and removals) associated with a specific pull request in a github repository.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"page\": 0,\n  \"repo\": \"\",\n  \"owner\": \"\",\n  \"per_page\": 0,\n  \"pull_number\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_list_reactions_for_a_commit_comment",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/reactions/for/a/commit/comment",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "reactions",
            "for",
            "a",
            "commit",
            "comment"
          ]
        },
        "description": "Lists reactions for a specific commit comment; this is a read-only operation.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"page\": 0,\n  \"repo\": \"\",\n  \"owner\": \"\",\n  \"content\": \"\",\n  \"per_page\": 0,\n  \"comment_id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_list_reactions_for_a_pull_request_review_comment",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/reactions/for/a/pull/request/review/comment",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "reactions",
            "for",
            "a",
            "pull",
            "request",
            "review",
            "comment"
          ]
        },
        "description": "Lists reactions for a pull request review comment in a repository, optionally filtering by reaction type.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"page\": 0,\n  \"repo\": \"\",\n  \"owner\": \"\",\n  \"content\": \"\",\n  \"per_page\": 0,\n  \"comment_id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_list_reactions_for_a_release",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/reactions/for/a/release",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "reactions",
            "for",
            "a",
            "release"
          ]
        },
        "description": "Lists all reactions, or optionally filters reactions by a specific content type, for a given github release.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"page\": 0,\n  \"repo\": \"\",\n  \"owner\": \"\",\n  \"content\": \"\",\n  \"per_page\": 0,\n  \"release_id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_list_reactions_for_a_team_discussion",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/reactions/for/a/team/discussion",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "reactions",
            "for",
            "a",
            "team",
            "discussion"
          ]
        },
        "description": "Lists reactions for an existing team discussion within an organization.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"org\": \"\",\n  \"page\": 0,\n  \"content\": \"\",\n  \"per_page\": 0,\n  \"team_slug\": \"\",\n  \"discussion_number\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_list_reactions_for_a_team_discussion_comment",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/reactions/for/a/team/discussion/comment",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "reactions",
            "for",
            "a",
            "team",
            "discussion",
            "comment"
          ]
        },
        "description": "Lists reactions for a specific comment in a team discussion within an organization, optionally filtering by content type.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"org\": \"\",\n  \"page\": 0,\n  \"content\": \"\",\n  \"per_page\": 0,\n  \"team_slug\": \"\",\n  \"comment_number\": 0,\n  \"discussion_number\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_list_reactions_for_an_issue",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/reactions/for/an/issue",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "reactions",
            "for",
            "an",
            "issue"
          ]
        },
        "description": "Lists reactions for a specific, existing issue within an accessible github repository, optionally filtering by content type.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"page\": 0,\n  \"repo\": \"\",\n  \"owner\": \"\",\n  \"content\": \"\",\n  \"per_page\": 0,\n  \"issue_number\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_list_reactions_for_an_issue_comment",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/reactions/for/an/issue/comment",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "reactions",
            "for",
            "an",
            "issue",
            "comment"
          ]
        },
        "description": "Lists reactions for a specific issue comment in a github repository, optionally filtering by content type.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"page\": 0,\n  \"repo\": \"\",\n  \"owner\": \"\",\n  \"content\": \"\",\n  \"per_page\": 0,\n  \"comment_id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_list_release_assets",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/release/assets",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "release",
            "assets"
          ]
        },
        "description": "Lists assets (e.g., compiled binaries, source code archives) for a specific github release, identified by `release id` which must be valid for an existing release in the repository.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"page\": 0,\n  \"repo\": \"\",\n  \"owner\": \"\",\n  \"per_page\": 0,\n  \"release_id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_list_releases",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/releases",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "releases"
          ]
        },
        "description": "Retrieves a list of all releases (published, draft, and prerelease) for a specified repository.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"page\": 0,\n  \"repo\": \"\",\n  \"owner\": \"\",\n  \"per_page\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_list_repo_access_by_token",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/repo/access/by/token",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "repo",
            "access",
            "by",
            "token"
          ]
        },
        "description": "Lists repositories in an organization that a fine-grained personal access token (`pat request id`) has requested access to; must be performed by a github app.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"org\": \"\",\n  \"page\": 0,\n  \"per_page\": 0,\n  \"pat_request_id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_list_repo_codespaces",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/repo/codespaces",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "repo",
            "codespaces"
          ]
        },
        "description": "Lists codespaces the authenticated user can access within a specified, existing repository.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"page\": 0,\n  \"repo\": \"\",\n  \"owner\": \"\",\n  \"per_page\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_list_repo_dev_container_configs_for_user",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/repo/dev/container/configs/for/user",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "repo",
            "dev",
            "container",
            "configs",
            "for",
            "user"
          ]
        },
        "description": "Lists the `devcontainer.json` configurations available in a specified repository for use with github codespaces.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"page\": 0,\n  \"repo\": \"\",\n  \"owner\": \"\",\n  \"per_page\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_list_repo_secrets_without_values",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/repo/secrets/without/values",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "repo",
            "secrets",
            "without",
            "values"
          ]
        },
        "description": "Lists all codespaces secrets available in a specific repository, without their encrypted values.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"page\": 0,\n  \"repo\": \"\",\n  \"owner\": \"\",\n  \"per_page\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_list_repos_with_ghactions_cache_usage",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/repos/with/ghactions/cache/usage",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "repos",
            "with",
            "ghactions",
            "cache",
            "usage"
          ]
        },
        "description": "Retrieves a paginated list of github actions cache usage statistics for repositories within an existing github organization.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"org\": \"\",\n  \"page\": 0,\n  \"per_page\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_list_repositories_accessible_to_the_app_installation",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/repositories/accessible/to/the/app/installation",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "repositories",
            "accessible",
            "to",
            "the",
            "app",
            "installation"
          ]
        },
        "description": "Lists repositories an app installation can access; 'total count' in response is zero if none are accessible.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"page\": 0,\n  \"per_page\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_list_repositories_accessible_to_the_user_access_token",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/repositories/accessible/to/the/user/access/token",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "repositories",
            "accessible",
            "to",
            "the",
            "user",
            "access",
            "token"
          ]
        },
        "description": "Lists repositories accessible to the authenticated user through a specific github app installation (identified by `installation id`).",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"page\": 0,\n  \"per_page\": 0,\n  \"installation_id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_list_repositories_for_a_user",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/repositories/for/a/user",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "repositories",
            "for",
            "a",
            "user"
          ]
        },
        "description": "Lists public repositories for a specified github user, who must have an existing account.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"page\": 0,\n  \"sort\": \"\",\n  \"type\": \"\",\n  \"per_page\": 0,\n  \"username\": \"\",\n  \"direction\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_list_repositories_for_the_authenticated_user",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/repositories/for/the/authenticated/user",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "repositories",
            "for",
            "the",
            "authenticated",
            "user"
          ]
        },
        "description": "Lists repositories for the authenticated user; using 'type' with 'visibility' or 'affiliation' api parameters (not in this model) can cause a 422 error.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"page\": 0,\n  \"sort\": \"\",\n  \"type\": \"\",\n  \"since\": \"\",\n  \"before\": \"\",\n  \"per_page\": 0,\n  \"direction\": \"\",\n  \"raw_response\": false\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_list_repositories_starred_by_a_user",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/repositories/starred/by/a/user",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "repositories",
            "starred",
            "by",
            "a",
            "user"
          ]
        },
        "description": "Lists repositories a valid and existing github user has starred.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"page\": 0,\n  \"sort\": \"\",\n  \"per_page\": 0,\n  \"username\": \"\",\n  \"direction\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_list_repositories_starred_by_the_authenticated_user",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/repositories/starred/by/the/authenticated/user",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "repositories",
            "starred",
            "by",
            "the",
            "authenticated",
            "user"
          ]
        },
        "description": "Lists repositories the authenticated user has starred, optionally sorted and paginated, including star creation timestamps via 'application/vnd.github.star+json' media type.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"page\": 0,\n  \"sort\": \"\",\n  \"per_page\": 0,\n  \"direction\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_list_repositories_watched_by_a_user",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/repositories/watched/by/a/user",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "repositories",
            "watched",
            "by",
            "a",
            "user"
          ]
        },
        "description": "Lists repositories a given github user is watching; the username must be a valid and existing github user handle.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"page\": 0,\n  \"per_page\": 0,\n  \"username\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_list_repositories_watched_by_the_authenticated_user",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/repositories/watched/by/the/authenticated/user",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "repositories",
            "watched",
            "by",
            "the",
            "authenticated",
            "user"
          ]
        },
        "description": "Lists repositories the authenticated user is watching (subscribed to for notifications).",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"page\": 0,\n  \"per_page\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_list_repository_activities",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/repository/activities",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "repository",
            "activities"
          ]
        },
        "description": "Lists activities for a github repository, ensuring the repository exists and is accessible.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"ref\": \"\",\n  \"repo\": \"\",\n  \"actor\": \"\",\n  \"after\": \"\",\n  \"owner\": \"\",\n  \"before\": \"\",\n  \"per_page\": 0,\n  \"direction\": \"\",\n  \"time_period\": \"\",\n  \"activity_type\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_list_repository_collaborators",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/repository/collaborators",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "repository",
            "collaborators"
          ]
        },
        "description": "Lists collaborators for a specified repository, provided it exists and is accessible to the authenticated user.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"page\": 0,\n  \"repo\": \"\",\n  \"owner\": \"\",\n  \"per_page\": 0,\n  \"permission\": \"\",\n  \"affiliation\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_list_repository_contributors",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/repository/contributors",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "repository",
            "contributors"
          ]
        },
        "description": "Lists contributors to a specified repository, sorted by number of contributions in descending order; the repository must exist and be accessible.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"anon\": \"\",\n  \"page\": 0,\n  \"repo\": \"\",\n  \"owner\": \"\",\n  \"per_page\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_list_repository_events",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/repository/events",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "repository",
            "events"
          ]
        },
        "description": "Lists chronological events (e.g., code pushes, issue activities, pr actions, forks) for a specified, existing github repository.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"page\": 0,\n  \"repo\": \"\",\n  \"owner\": \"\",\n  \"per_page\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_list_repository_invitations",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/repository/invitations",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "repository",
            "invitations"
          ]
        },
        "description": "Retrieves all pending (unaccepted or undeclined) collaboration invitations for a specified github repository.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"page\": 0,\n  \"repo\": \"\",\n  \"owner\": \"\",\n  \"per_page\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_list_repository_invitations_for_the_authenticated_user",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/repository/invitations/for/the/authenticated/user",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "repository",
            "invitations",
            "for",
            "the",
            "authenticated",
            "user"
          ]
        },
        "description": "Lists all pending repository invitations for the authenticated user.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"page\": 0,\n  \"per_page\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_list_repository_issues",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/repository/issues",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "repository",
            "issues"
          ]
        },
        "description": "Lists issues (which include pull requests) for a specified, existing github repository, with options for filtering, sorting, and pagination.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"page\": 0,\n  \"repo\": \"\",\n  \"sort\": \"\",\n  \"owner\": \"\",\n  \"since\": \"\",\n  \"state\": \"\",\n  \"labels\": \"\",\n  \"creator\": \"\",\n  \"assignee\": \"\",\n  \"per_page\": 0,\n  \"direction\": \"\",\n  \"mentioned\": \"\",\n  \"milestone\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_list_repository_languages",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/repository/languages",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "repository",
            "languages"
          ]
        },
        "description": "Lists the programming languages used in a github repository, returning a byte count for each language.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"repo\": \"\",\n  \"owner\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_list_repository_notifications_for_the_authenticated_user",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/repository/notifications/for/the/authenticated/user",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "repository",
            "notifications",
            "for",
            "the",
            "authenticated",
            "user"
          ]
        },
        "description": "Retrieves notifications for the authenticated user from a specified repository, to which the user must have access.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"all\": false,\n  \"page\": 0,\n  \"repo\": \"\",\n  \"owner\": \"\",\n  \"since\": \"\",\n  \"before\": \"\",\n  \"per_page\": 0,\n  \"participating\": false\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_list_repository_organization_secrets",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/repository/organization/secrets",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "repository",
            "organization",
            "secrets"
          ]
        },
        "description": "Lists names of organization-level secrets shared with the specified repository; actual secret values are not returned and visibility depends on token access.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"page\": 0,\n  \"repo\": \"\",\n  \"owner\": \"\",\n  \"per_page\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_list_repository_organization_variables",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/repository/organization/variables",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "repository",
            "organization",
            "variables"
          ]
        },
        "description": "Lists organization variables accessible to a specific repository; the repository must exist.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"page\": 0,\n  \"repo\": \"\",\n  \"owner\": \"\",\n  \"per_page\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_list_repository_projects",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/repository/projects",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "repository",
            "projects"
          ]
        },
        "description": "Lists projects associated with a specific repository.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"page\": 0,\n  \"repo\": \"\",\n  \"owner\": \"\",\n  \"state\": \"\",\n  \"per_page\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_list_repository_rule_suites",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/repository/rule/suites",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "repository",
            "rule",
            "suites"
          ]
        },
        "description": "Lists rule suite evaluations for a repository, allowing filtering by ref (non-wildcard), time period, actor, and result.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"ref\": \"\",\n  \"page\": 0,\n  \"repo\": \"\",\n  \"owner\": \"\",\n  \"per_page\": 0,\n  \"actor_name\": \"\",\n  \"time_period\": \"\",\n  \"rule_suite_result\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_list_repository_secrets",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/repository/secrets",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "repository",
            "secrets"
          ]
        },
        "description": "Lists metadata for all secrets in a github repository, excluding their encrypted values.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"page\": 0,\n  \"repo\": \"\",\n  \"owner\": \"\",\n  \"per_page\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_list_repository_secrets_without_decrypting",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/repository/secrets/without/decrypting",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "repository",
            "secrets",
            "without",
            "decrypting"
          ]
        },
        "description": "Lists metadata (e.g., name, creation/update dates) for all dependabot secrets in a repository; secret values are not included.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"page\": 0,\n  \"repo\": \"\",\n  \"owner\": \"\",\n  \"per_page\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_list_repository_tags",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/repository/tags",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "repository",
            "tags"
          ]
        },
        "description": "Lists tags for a specified github repository.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"page\": 0,\n  \"repo\": \"\",\n  \"owner\": \"\",\n  \"per_page\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_list_repository_teams",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/repository/teams",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "repository",
            "teams"
          ]
        },
        "description": "Lists all teams with explicit permission to access the specified repository; the repository must exist.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"page\": 0,\n  \"repo\": \"\",\n  \"owner\": \"\",\n  \"per_page\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_list_repository_variables",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/repository/variables",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "repository",
            "variables"
          ]
        },
        "description": "Lists plain text key-value variables for github actions workflows within a specific, accessible repository.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"page\": 0,\n  \"repo\": \"\",\n  \"owner\": \"\",\n  \"per_page\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_list_repository_webhooks",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/repository/webhooks",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "repository",
            "webhooks"
          ]
        },
        "description": "Retrieves a list of webhooks for a repository, which must exist and be accessible.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"page\": 0,\n  \"repo\": \"\",\n  \"owner\": \"\",\n  \"per_page\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_list_repository_workflows",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/repository/workflows",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "repository",
            "workflows"
          ]
        },
        "description": "Lists all github actions workflows for a specified repository, which must exist and be accessible.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"page\": 0,\n  \"repo\": \"\",\n  \"owner\": \"\",\n  \"per_page\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_list_review_comments_in_a_repository",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/review/comments/in/a/repository",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "review",
            "comments",
            "in",
            "a",
            "repository"
          ]
        },
        "description": "Lists all review comments on all pull requests within a specified repository.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"page\": 0,\n  \"repo\": \"\",\n  \"sort\": \"\",\n  \"owner\": \"\",\n  \"since\": \"\",\n  \"per_page\": 0,\n  \"direction\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_list_review_comments_on_a_pull_request",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/review/comments/on/a/pull/request",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "review",
            "comments",
            "on",
            "a",
            "pull",
            "request"
          ]
        },
        "description": "Lists all review comments on a specific pull request within a github repository.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"page\": 0,\n  \"repo\": \"\",\n  \"sort\": \"\",\n  \"owner\": \"\",\n  \"since\": \"\",\n  \"per_page\": 0,\n  \"direction\": \"\",\n  \"pull_number\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_list_reviews_for_a_pull_request",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/reviews/for/a/pull/request",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "reviews",
            "for",
            "a",
            "pull",
            "request"
          ]
        },
        "description": "Lists submitted reviews chronologically for a specific pull request within a github repository.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"page\": 0,\n  \"repo\": \"\",\n  \"owner\": \"\",\n  \"per_page\": 0,\n  \"pull_number\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_list_runner_applications_for_a_repository",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/runner/applications/for/a/repository",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "runner",
            "applications",
            "for",
            "a",
            "repository"
          ]
        },
        "description": "Lists available self-hosted runner application binaries for a specific repository, including their os, architecture, and download url.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"repo\": \"\",\n  \"owner\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_list_runner_applications_for_an_organization",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/runner/applications/for/an/organization",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "runner",
            "applications",
            "for",
            "an",
            "organization"
          ]
        },
        "description": "Lists downloadable github actions runner application binaries, used for setting up self-hosted runners, for an existing github organization.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"org\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_list_secrets_for_the_authenticated_user",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/secrets/for/the/authenticated/user",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "secrets",
            "for",
            "the",
            "authenticated",
            "user"
          ]
        },
        "description": "Lists all codespaces secrets accessible to the authenticated user for use within github codespaces.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"page\": 0,\n  \"per_page\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_list_selected_repos_for_secret_access",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/selected/repos/for/secret/access",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "selected",
            "repos",
            "for",
            "secret",
            "access"
          ]
        },
        "description": "Lists repositories within a specified organization that have been granted access to a particular dependabot secret.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"org\": \"\",\n  \"page\": 0,\n  \"per_page\": 0,\n  \"secret_name\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_list_selected_repositories_for_a_user_secret",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/selected/repositories/for/a/user/secret",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "selected",
            "repositories",
            "for",
            "a",
            "user",
            "secret"
          ]
        },
        "description": "Lists repositories that have access to the specified user secret for the authenticated user's codespaces, provided the user has codespaces access.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"secret_name\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_list_selected_repositories_for_an_organization_secret",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/selected/repositories/for/an/organization/secret",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "selected",
            "repositories",
            "for",
            "an",
            "organization",
            "secret"
          ]
        },
        "description": "Lists repositories within an organization that have explicit access to a specific organization secret, which must have its visibility set to 'selected'.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"org\": \"\",\n  \"page\": 0,\n  \"per_page\": 0,\n  \"secret_name\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_list_selected_repositories_for_an_organization_variable",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/selected/repositories/for/an/organization/variable",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "selected",
            "repositories",
            "for",
            "an",
            "organization",
            "variable"
          ]
        },
        "description": "Lists repositories in an organization that can access a specific organization variable; supports pagination and returns an empty list if no repositories have been granted access.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"org\": \"\",\n  \"name\": \"\",\n  \"page\": 0,\n  \"per_page\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_list_self_hosted_runners_for_a_repository",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/self/hosted/runners/for/a/repository",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "self",
            "hosted",
            "runners",
            "for",
            "a",
            "repository"
          ]
        },
        "description": "Lists all self-hosted runners configured for a repository.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"name\": \"\",\n  \"page\": 0,\n  \"repo\": \"\",\n  \"owner\": \"\",\n  \"per_page\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_list_self_hosted_runners_for_an_organization",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/self/hosted/runners/for/an/organization",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "self",
            "hosted",
            "runners",
            "for",
            "an",
            "organization"
          ]
        },
        "description": "Lists self-hosted runners for a github organization, optionally filtering by name and paginating results, providing details for each runner such as os, status, and labels.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"org\": \"\",\n  \"name\": \"\",\n  \"page\": 0,\n  \"per_page\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_list_social_accounts_for_a_user",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/social/accounts/for/a/user",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "social",
            "accounts",
            "for",
            "a",
            "user"
          ]
        },
        "description": "Lists social media accounts publicly linked to an existing github user's profile.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"page\": 0,\n  \"per_page\": 0,\n  \"username\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_list_social_accounts_for_the_authenticated_user",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/social/accounts/for/the/authenticated/user",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "social",
            "accounts",
            "for",
            "the",
            "authenticated",
            "user"
          ]
        },
        "description": "Lists all social media accounts linked to the authenticated user's github profile.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"page\": 0,\n  \"per_page\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_list_stargazers",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/stargazers",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "stargazers"
          ]
        },
        "description": "Lists users who have starred the specified github repository, which must exist.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"page\": 0,\n  \"repo\": \"\",\n  \"owner\": \"\",\n  \"per_page\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_list_starred_gists",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/starred/gists",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "starred",
            "gists"
          ]
        },
        "description": "Retrieves a list of gists starred by the authenticated user.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"page\": 0,\n  \"since\": \"\",\n  \"per_page\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_list_subscriptions_for_the_authenticated_user",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/subscriptions/for/the/authenticated/user",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "subscriptions",
            "for",
            "the",
            "authenticated",
            "user"
          ]
        },
        "description": "Lists the authenticated user's active github marketplace subscriptions.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"page\": 0,\n  \"per_page\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_list_subscriptions_for_the_authenticated_user_stubbed",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/subscriptions/for/the/authenticated/user/stubbed",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "subscriptions",
            "for",
            "the",
            "authenticated",
            "user",
            "stubbed"
          ]
        },
        "description": "Lists the authenticated user's stubbed (test/example data, not live) github marketplace subscriptions, useful for development or testing.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"page\": 0,\n  \"per_page\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_list_tag_protection_states_for_a_repository",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/tag/protection/states/for/a/repository",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "tag",
            "protection",
            "states",
            "for",
            "a",
            "repository"
          ]
        },
        "description": "Lists all active tag protection rules for a repository, defining patterns to prevent matching tags from being created or deleted; requires repository admin permissions.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"repo\": \"\",\n  \"owner\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_list_team_members",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/team/members",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "team",
            "members"
          ]
        },
        "description": "Lists members of a specific team within an organization, including members of child teams.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"org\": \"\",\n  \"page\": 0,\n  \"role\": \"\",\n  \"per_page\": 0,\n  \"team_slug\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_list_team_projects",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/team/projects",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "team",
            "projects"
          ]
        },
        "description": "Lists github projects accessible to a specific team within an organization.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"org\": \"\",\n  \"page\": 0,\n  \"per_page\": 0,\n  \"team_slug\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_list_team_repositories",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/team/repositories",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "team",
            "repositories"
          ]
        },
        "description": "Lists repositories accessible to a specific team within a github organization.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"org\": \"\",\n  \"page\": 0,\n  \"per_page\": 0,\n  \"team_slug\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_list_teams",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/teams",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "teams"
          ]
        },
        "description": "Lists teams for a specified github organization.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"org\": \"\",\n  \"page\": 0,\n  \"per_page\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_list_teams_for_the_authenticated_user",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/teams/for/the/authenticated/user",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "teams",
            "for",
            "the",
            "authenticated",
            "user"
          ]
        },
        "description": "Lists all teams across all organizations to which the authenticated user belongs, supporting pagination.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"page\": 0,\n  \"per_page\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_list_teams_that_are_assigned_to_an_organization_role",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/teams/that/are/assigned/to/an/organization/role",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "teams",
            "that",
            "are",
            "assigned",
            "to",
            "an",
            "organization",
            "role"
          ]
        },
        "description": "Lists teams assigned to a specific role within a github organization.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"org\": \"\",\n  \"page\": 0,\n  \"role_id\": 0,\n  \"per_page\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_list_the_people_a_user_follows",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/the/people/a/user/follows",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "the",
            "people",
            "a",
            "user",
            "follows"
          ]
        },
        "description": "Lists github users that a valid github `username` is following, supporting pagination.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"page\": 0,\n  \"per_page\": 0,\n  \"username\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_list_the_people_the_authenticated_user_follows",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/the/people/the/authenticated/user/follows",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "the",
            "people",
            "the",
            "authenticated",
            "user",
            "follows"
          ]
        },
        "description": "Lists people the authenticated user follows.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"page\": 0,\n  \"per_page\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_list_timeline_events_for_an_issue",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/timeline/events/for/an/issue",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "timeline",
            "events",
            "for",
            "an",
            "issue"
          ]
        },
        "description": "Lists chronological events (e.g., comments, commits, label changes) for a specific issue in a github repository.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"page\": 0,\n  \"repo\": \"\",\n  \"owner\": \"\",\n  \"per_page\": 0,\n  \"issue_number\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_list_token_access_repositories",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/token/access/repositories",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "token",
            "access",
            "repositories"
          ]
        },
        "description": "Lists repositories in an organization accessible by a specific fine-grained personal access token; this action is for github apps.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"org\": \"\",\n  \"page\": 0,\n  \"pat_id\": 0,\n  \"per_page\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_list_user_projects",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/user/projects",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "user",
            "projects"
          ]
        },
        "description": "Retrieves a list of projects for a specified github user, optionally filtering by state and supporting pagination; the username must be a valid github handle.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"page\": 0,\n  \"state\": \"\",\n  \"per_page\": 0,\n  \"username\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_list_users",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/users",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "users"
          ]
        },
        "description": "Retrieves all github users (individuals and organizations) in chronological order of their sign-up date.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"since\": 0,\n  \"per_page\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_list_users_blocked_by_an_organization",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/users/blocked/by/an/organization",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "users",
            "blocked",
            "by",
            "an",
            "organization"
          ]
        },
        "description": "Lists users blocked by a specified github organization.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"org\": \"\",\n  \"page\": 0,\n  \"per_page\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_list_users_blocked_by_the_authenticated_user",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/users/blocked/by/the/authenticated/user",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "users",
            "blocked",
            "by",
            "the",
            "authenticated",
            "user"
          ]
        },
        "description": "Lists users blocked by the authenticated user, returning an empty list if no users are blocked.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"page\": 0,\n  \"per_page\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_list_users_that_are_assigned_to_an_organization_role",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/users/that/are/assigned/to/an/organization/role",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "users",
            "that",
            "are",
            "assigned",
            "to",
            "an",
            "organization",
            "role"
          ]
        },
        "description": "Lists users assigned to a specific role within a github organization.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"org\": \"\",\n  \"page\": 0,\n  \"role_id\": 0,\n  \"per_page\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_list_watchers",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/watchers",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "watchers"
          ]
        },
        "description": "Retrieves a list of users watching a specific repository; the repository must be accessible to the authenticated user.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"page\": 0,\n  \"repo\": \"\",\n  \"owner\": \"\",\n  \"per_page\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_list_workflow_run_artifacts",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/workflow/run/artifacts",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "workflow",
            "run",
            "artifacts"
          ]
        },
        "description": "Lists artifacts (e.g., build outputs, test results) for a specific workflow run in a github repository.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"name\": \"\",\n  \"page\": 0,\n  \"repo\": \"\",\n  \"owner\": \"\",\n  \"run_id\": 0,\n  \"per_page\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_list_workflow_runs_for_a_repository",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/workflow/runs/for/a/repository",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "workflow",
            "runs",
            "for",
            "a",
            "repository"
          ]
        },
        "description": "Lists workflow runs for a repository, allowing filtering by actor, branch, event, status, creation date, check suite id, or head sha; the repository must exist and be accessible.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"page\": 0,\n  \"repo\": \"\",\n  \"actor\": \"\",\n  \"event\": \"\",\n  \"owner\": \"\",\n  \"branch\": \"\",\n  \"status\": \"\",\n  \"created\": \"\",\n  \"head_sha\": \"\",\n  \"per_page\": 0,\n  \"check_suite_id\": 0,\n  \"exclude_pull_requests\": false\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_list_workflow_runs_for_a_workflow",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/workflow/runs/for/a/workflow",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "workflow",
            "runs",
            "for",
            "a",
            "workflow"
          ]
        },
        "description": "Lists runs for a specified, existing workflow (identified by id or filename like `main.yml`) in a github repository, with filtering options.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"page\": 0,\n  \"repo\": \"\",\n  \"actor\": \"\",\n  \"event\": \"\",\n  \"owner\": \"\",\n  \"branch\": \"\",\n  \"status\": \"\",\n  \"created\": \"\",\n  \"head_sha\": \"\",\n  \"per_page\": 0,\n  \"workflow_id\": 0,\n  \"check_suite_id\": 0,\n  \"exclude_pull_requests\": false\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_lock_an_issue",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/lock/an/issue",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "lock",
            "an",
            "issue"
          ]
        },
        "description": "Locks an existing github issue's conversation, preventing further comments; an optional reason can be specified.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"repo\": \"\",\n  \"owner\": \"\",\n  \"lock_reason\": \"\",\n  \"issue_number\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_manage_access_control_for_organization_codespaces",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/manage/access/control/for/organization/codespaces",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "manage",
            "access",
            "control",
            "for",
            "organization",
            "codespaces"
          ]
        },
        "description": "Sets the codespaces access control policy for a github organization, determining which members can use them.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"org\": \"\",\n  \"visibility\": \"\",\n  \"selected_usernames\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_manage_custom_properties_for_org_repos",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/manage/custom/properties/for/org/repos",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "manage",
            "custom",
            "properties",
            "for",
            "org",
            "repos"
          ]
        },
        "description": "Creates or updates values for an organization's predefined custom properties across multiple repositories (up to 30).",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"org\": \"\",\n  \"properties\": \"\",\n  \"repository_names\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_manage_secrets_in_selected_repositories_with_proper_access",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/manage/secrets/in/selected/repositories/with/proper/access",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "manage",
            "secrets",
            "in",
            "selected",
            "repositories",
            "with",
            "proper",
            "access"
          ]
        },
        "description": "Lists repositories within an organization that have been explicitly granted access to a specific organization secret.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"org\": \"\",\n  \"page\": 0,\n  \"per_page\": 0,\n  \"secret_name\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_map_a_commit_author",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/map/a/commit/author",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "map",
            "a",
            "commit",
            "author"
          ]
        },
        "description": "Updates git author information (name and/or email) for an `author id` obtained during a repository import, to correctly attribute commits.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"name\": \"\",\n  \"repo\": \"\",\n  \"email\": \"\",\n  \"owner\": \"\",\n  \"author_id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_mark_a_thread_as_done",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/mark/a/thread/as/done",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "mark",
            "a",
            "thread",
            "as",
            "done"
          ]
        },
        "description": "Marks the github notification thread (identified by `thread id`) as done or read for the authenticated user, effectively archiving it.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"thread_id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_mark_a_thread_as_read",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/mark/a/thread/as/read",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "mark",
            "a",
            "thread",
            "as",
            "read"
          ]
        },
        "description": "Marks an existing github notification thread, identified by its `thread id`, as read.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"thread_id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_mark_notifications_as_read",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/mark/notifications/as/read",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "mark",
            "notifications",
            "as",
            "read"
          ]
        },
        "description": "Marks notifications as read or unread, optionally for those updated at or before a `last read at` timestamp.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"read\": false,\n  \"last_read_at\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_mark_repository_notifications_as_read",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/mark/repository/notifications/as/read",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "mark",
            "repository",
            "notifications",
            "as",
            "read"
          ]
        },
        "description": "Marks notifications in a repository as read; if 'last read at' is specified, notifications updated after this timestamp are not marked as read.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"repo\": \"\",\n  \"owner\": \"\",\n  \"last_read_at\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_merge_a_branch",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/merge/a/branch",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "merge",
            "a",
            "branch"
          ]
        },
        "description": "Merges a head branch or commit sha into a base branch in a repository; fails if there are merge conflicts requiring manual resolution.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"base\": \"\",\n  \"head\": \"\",\n  \"repo\": \"\",\n  \"owner\": \"\",\n  \"commit_message\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_merge_a_pull_request",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/merge/a/pull/request",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "merge",
            "a",
            "pull",
            "request"
          ]
        },
        "description": "Merges an open and mergeable pull request in a repository, optionally specifying merge commit details, a merge method, and a required head sha for safety.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"sha\": \"\",\n  \"repo\": \"\",\n  \"owner\": \"\",\n  \"pull_number\": 0,\n  \"commit_title\": \"\",\n  \"merge_method\": \"\",\n  \"commit_message\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_meta_root",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/meta/root",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "meta",
            "root"
          ]
        },
        "description": "Deprecated: retrieves github rest api root endpoint details; use `github api root` instead.",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_move_a_project_card",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/move/a/project/card",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "move",
            "a",
            "project",
            "card"
          ]
        },
        "description": "Moves a project card to a specified position, optionally into a new column.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"card_id\": 0,\n  \"position\": \"\",\n  \"column_id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_move_a_project_column",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/move/a/project/column",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "move",
            "a",
            "project",
            "column"
          ]
        },
        "description": "Moves a column within a github project (classic) to a new position; `position` can be 'first', 'last', or 'after:<target column id>', where `target column id` must reference an existing column in the ",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"position\": \"\",\n  \"column_id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_ping_a_repository_webhook",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/ping/a/repository/webhook",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "ping",
            "a",
            "repository",
            "webhook"
          ]
        },
        "description": "Pings an existing webhook on a repository to test its configuration and reachability by github.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"repo\": \"\",\n  \"owner\": \"\",\n  \"hook_id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_ping_an_organization_webhook",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/ping/an/organization/webhook",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "ping",
            "an",
            "organization",
            "webhook"
          ]
        },
        "description": "Sends a 'ping' event to a specified, existing organization webhook to test its configuration and ensure it correctly receives events.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"org\": \"\",\n  \"hook_id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_privately_report_a_security_vulnerability",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/privately/report/a/security/vulnerability",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "privately",
            "report",
            "a",
            "security",
            "vulnerability"
          ]
        },
        "description": "Privately reports a security vulnerability for a repository; specify either `severity` or `cvss vector string`, but not both.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"repo\": \"\",\n  \"owner\": \"\",\n  \"cwe_ids\": \"\",\n  \"summary\": \"\",\n  \"severity\": \"\",\n  \"description\": \"\",\n  \"vulnerabilities\": \"\",\n  \"cvss_vector_string\": \"\",\n  \"start_private_fork\": false\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_pulls_check_if_merged",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/pulls/check/if/merged",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "pulls",
            "check",
            "if",
            "merged"
          ]
        },
        "description": "Deprecated: use `check if a pull request has been merged` instead. checks if a github pull request has been merged, indicated by a 204 http status (merged) or 404 (not merged/found).",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"repo\": \"\",\n  \"owner\": \"\",\n  \"pull_number\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_pulls_create",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/pulls/create",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "pulls",
            "create"
          ]
        },
        "description": "Deprecated: use `create a pull request` instead. creates a pull request, requiring existing `base` and `head` branches.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"base\": \"\",\n  \"body\": \"\",\n  \"head\": \"\",\n  \"repo\": \"\",\n  \"draft\": false,\n  \"issue\": 0,\n  \"owner\": \"\",\n  \"title\": \"\",\n  \"head_repo\": \"\",\n  \"maintainer_can_modify\": false\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_pulls_create_review",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/pulls/create/review",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "pulls",
            "create",
            "review"
          ]
        },
        "description": "Deprecated: use `create a review for a pull request` for creating pull request reviews; supports `pending` for drafts and comment positioning.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"body\": \"\",\n  \"repo\": \"\",\n  \"event\": \"\",\n  \"owner\": \"\",\n  \"comments\": \"\",\n  \"commit_id\": \"\",\n  \"pull_number\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_pulls_create_review_comment",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/pulls/create/review/comment",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "pulls",
            "create",
            "review",
            "comment"
          ]
        },
        "description": "Deprecated: creates a review comment on a pull request's diff. use `create a review comment for a pull request` instead.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"body\": \"\",\n  \"line\": 0,\n  \"path\": \"\",\n  \"repo\": \"\",\n  \"side\": \"\",\n  \"owner\": \"\",\n  \"position\": 0,\n  \"commit_id\": \"\",\n  \"start_line\": 0,\n  \"start_side\": \"\",\n  \"in_reply_to\": 0,\n  \"pull_number\": 0,\n  \"subject_type\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_pulls_get",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/pulls/get",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "pulls",
            "get"
          ]
        },
        "description": "Deprecated: retrieves details of a specific pull request; prefer using the `get a pull request` action.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"repo\": \"\",\n  \"owner\": \"\",\n  \"pull_number\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_pulls_list",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/pulls/list",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "pulls",
            "list"
          ]
        },
        "description": "(deprecated: use `list pull requests`) lists pull requests for a specified github repository with ai-friendly filtering.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"base\": \"\",\n  \"head\": \"\",\n  \"page\": 0,\n  \"repo\": \"\",\n  \"sort\": \"\",\n  \"owner\": \"\",\n  \"state\": \"\",\n  \"per_page\": 0,\n  \"direction\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_re_run_a_job_from_a_workflow_run",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/re/run/a/job/from/a/workflow/run",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "re",
            "run",
            "a",
            "job",
            "from",
            "a",
            "workflow",
            "run"
          ]
        },
        "description": "Re-runs a specific job and any dependent jobs from a github actions workflow run in the specified repository, optionally enabling debug logging.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"repo\": \"\",\n  \"owner\": \"\",\n  \"job_id\": 0,\n  \"enable_debug_logging\": false\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_re_run_a_workflow",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/re/run/a/workflow",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "re",
            "run",
            "a",
            "workflow"
          ]
        },
        "description": "Re-runs a specific github actions workflow run identified by its owner, repository, and run id, optionally enabling debug logging.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"repo\": \"\",\n  \"owner\": \"\",\n  \"run_id\": 0,\n  \"enable_debug_logging\": false\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_re_run_failed_jobs_from_a_workflow_run",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/re/run/failed/jobs/from/a/workflow/run",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "re",
            "run",
            "failed",
            "jobs",
            "from",
            "a",
            "workflow",
            "run"
          ]
        },
        "description": "Re-runs all failed jobs and their dependent jobs from a specified workflow run if the run contains previously failed jobs.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"repo\": \"\",\n  \"owner\": \"\",\n  \"run_id\": 0,\n  \"enable_debug_logging\": false\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_redeliver_a_delivery_for_a_repository_webhook",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/redeliver/a/delivery/for/a/repository/webhook",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "redeliver",
            "a",
            "delivery",
            "for",
            "a",
            "repository",
            "webhook"
          ]
        },
        "description": "Redelivers a specific, previously made webhook delivery (`delivery id`) for a repository's webhook (`hook id`).",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"repo\": \"\",\n  \"owner\": \"\",\n  \"hook_id\": 0,\n  \"delivery_id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_redeliver_a_delivery_for_an_organization_webhook",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/redeliver/a/delivery/for/an/organization/webhook",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "redeliver",
            "a",
            "delivery",
            "for",
            "an",
            "organization",
            "webhook"
          ]
        },
        "description": "Redelivers a specific webhook delivery for a webhook within an organization, to resend an event that previously failed or was not processed.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"org\": \"\",\n  \"hook_id\": 0,\n  \"delivery_id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_remove_a_custom_property_for_an_organization",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/remove/a/custom/property/for/an/organization",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "remove",
            "a",
            "custom",
            "property",
            "for",
            "an",
            "organization"
          ]
        },
        "description": "Deletes a custom property, specified by `custom property name`, from an existing organization (`org`) for which the property is currently defined, preventing its future assignment to repositories.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"org\": \"\",\n  \"custom_property_name\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_remove_a_label_from_an_issue",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/remove/a/label/from/an/issue",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "remove",
            "a",
            "label",
            "from",
            "an",
            "issue"
          ]
        },
        "description": "Removes a label currently applied to a specific issue in a repository.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"name\": \"\",\n  \"repo\": \"\",\n  \"owner\": \"\",\n  \"issue_number\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_remove_a_project_from_a_team",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/remove/a/project/from/a/team",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "remove",
            "a",
            "project",
            "from",
            "a",
            "team"
          ]
        },
        "description": "Removes a project from a team within an organization; this action requires the project to be currently associated with the team.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"org\": \"\",\n  \"team_slug\": \"\",\n  \"project_id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_remove_a_repository_collaborator",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/remove/a/repository/collaborator",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "remove",
            "a",
            "repository",
            "collaborator"
          ]
        },
        "description": "Removes a collaborator from a specified github repository, provided the repository exists and the user is an existing collaborator.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"repo\": \"\",\n  \"owner\": \"\",\n  \"username\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_remove_a_repository_from_a_team",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/remove/a/repository/from/a/team",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "remove",
            "a",
            "repository",
            "from",
            "a",
            "team"
          ]
        },
        "description": "Disassociates a repository from a team; team members may lose access permissions, but the repository and team are not deleted.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"org\": \"\",\n  \"repo\": \"\",\n  \"owner\": \"\",\n  \"team_slug\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_remove_a_repository_from_an_app_installation",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/remove/a/repository/from/an/app/installation",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "remove",
            "a",
            "repository",
            "from",
            "an",
            "app",
            "installation"
          ]
        },
        "description": "Removes a repository from a github app installation for the authenticated user, given a valid `installation id` and the `repository id` of a repository currently linked to that installation; this oper",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"repository_id\": 0,\n  \"installation_id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_remove_a_selected_repository_from_a_user_secret",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/remove/a/selected/repository/from/a/user/secret",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "remove",
            "a",
            "selected",
            "repository",
            "from",
            "a",
            "user",
            "secret"
          ]
        },
        "description": "Removes a selected repository's access to a user's codespaces secret; the secret must exist and the repository must have previously been granted access.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"secret_name\": \"\",\n  \"repository_id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_remove_all_labels_from_an_issue",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/remove/all/labels/from/an/issue",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "remove",
            "all",
            "labels",
            "from",
            "an",
            "issue"
          ]
        },
        "description": "Removes all labels from a specified issue in a github repository; this operation is idempotent.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"repo\": \"\",\n  \"owner\": \"\",\n  \"issue_number\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_remove_all_organization_roles_for_a_team",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/remove/all/organization/roles/for/a/team",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "remove",
            "all",
            "organization",
            "roles",
            "for",
            "a",
            "team"
          ]
        },
        "description": "Revokes all organization roles for a team in an organization; this is destructive and succeeds even if the team initially has no roles.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"org\": \"\",\n  \"team_slug\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_remove_all_organization_roles_for_a_user",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/remove/all/organization/roles/for/a/user",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "remove",
            "all",
            "organization",
            "roles",
            "for",
            "a",
            "user"
          ]
        },
        "description": "Revokes all assigned organization-level roles from a specified user (who must be a member of the organization) within a github organization, without removing the user from the organization or affectin",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"org\": \"\",\n  \"username\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_remove_an_organization_member",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/remove/an/organization/member",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "remove",
            "an",
            "organization",
            "member"
          ]
        },
        "description": "Removes a user, who must currently be a member, from a github organization, revoking their membership and access rights.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"org\": \"\",\n  \"username\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_remove_an_organization_role_from_a_team",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/remove/an/organization/role/from/a/team",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "remove",
            "an",
            "organization",
            "role",
            "from",
            "a",
            "team"
          ]
        },
        "description": "Revokes an organization role that a team currently possesses within an organization.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"org\": \"\",\n  \"role_id\": 0,\n  \"team_slug\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_remove_an_organization_role_from_a_user",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/remove/an/organization/role/from/a/user",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "remove",
            "an",
            "organization",
            "role",
            "from",
            "a",
            "user"
          ]
        },
        "description": "Removes a custom organization role from a user within a github organization, provided the organization exists, the user is a member, and the role id corresponds to a valid custom role in that organiza",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"org\": \"\",\n  \"role_id\": 0,\n  \"username\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_remove_app_access_restrictions",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/remove/app/access/restrictions",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "remove",
            "app",
            "access",
            "restrictions"
          ]
        },
        "description": "Removes all github app access restrictions from a protected branch in a repository; the branch must have protection rules configured, and this action does not alter user or team restrictions.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"repo\": \"\",\n  \"owner\": \"\",\n  \"branch\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_remove_assignees_from_an_issue",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/remove/assignees/from/an/issue",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "remove",
            "assignees",
            "from",
            "an",
            "issue"
          ]
        },
        "description": "Removes specified assignees from a github issue; requires push access, and invalid removal attempts are silently ignored.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"repo\": \"\",\n  \"owner\": \"\",\n  \"assignees\": \"\",\n  \"issue_number\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_remove_custom_label_from_repo_runner",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/remove/custom/label/from/repo/runner",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "remove",
            "custom",
            "label",
            "from",
            "repo",
            "runner"
          ]
        },
        "description": "Removes a custom label from a repository's self-hosted runner; this operation is idempotent.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"name\": \"\",\n  \"repo\": \"\",\n  \"owner\": \"\",\n  \"runner_id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_remove_custom_label_from_self_hosted_runner",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/remove/custom/label/from/self/hosted/runner",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "remove",
            "custom",
            "label",
            "from",
            "self",
            "hosted",
            "runner"
          ]
        },
        "description": "Removes a currently assigned custom label (`name`) from a self-hosted runner (`runner id`) in an organization (`org`).",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"org\": \"\",\n  \"name\": \"\",\n  \"runner_id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_remove_custom_labels_from_self_hosted_repository_runner",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/remove/custom/labels/from/self/hosted/repository/runner",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "remove",
            "custom",
            "labels",
            "from",
            "self",
            "hosted",
            "repository",
            "runner"
          ]
        },
        "description": "Removes all custom labels from a self-hosted runner registered at the repository level, leaving only its default labels and any labels inherited from its runner group or organization.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"repo\": \"\",\n  \"owner\": \"\",\n  \"runner_id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_remove_interaction_restrictions_for_a_repository",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/remove/interaction/restrictions/for/a/repository",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "remove",
            "interaction",
            "restrictions",
            "for",
            "a",
            "repository"
          ]
        },
        "description": "Removes all interaction restrictions for a repository, enabling all users to comment, open issues, and create pull requests by lifting any existing temporary interaction limits.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"repo\": \"\",\n  \"owner\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_remove_interaction_restrictions_for_an_organization",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/remove/interaction/restrictions/for/an/organization",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "remove",
            "interaction",
            "restrictions",
            "for",
            "an",
            "organization"
          ]
        },
        "description": "Removes all interaction restrictions from public repositories in the specified github organization, allowing all users to resume interactions.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"org\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_remove_interaction_restrictions_from_your_public_repositories",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/remove/interaction/restrictions/from/your/public/repositories",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "remove",
            "interaction",
            "restrictions",
            "from",
            "your",
            "public",
            "repositories"
          ]
        },
        "description": "Removes all interaction restrictions (limitations on comments, issues, or pull requests) from all public repositories owned by the authenticated user.",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_remove_org_dev_env_secret_by_name",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/remove/org/dev/env/secret/by/name",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "remove",
            "org",
            "dev",
            "env",
            "secret",
            "by",
            "name"
          ]
        },
        "description": "Deletes a github codespaces secret from an organization by its name; this operation is idempotent.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"org\": \"\",\n  \"secret_name\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_remove_org_secret_by_name",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/remove/org/secret/by/name",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "remove",
            "org",
            "secret",
            "by",
            "name"
          ]
        },
        "description": "Permanently removes a specific dependabot secret, by its `secret name`, from the github `org`, making it unavailable to dependabot for that organization.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"org\": \"\",\n  \"secret_name\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_remove_outside_collaborator_from_an_organization",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/remove/outside/collaborator/from/an/organization",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "remove",
            "outside",
            "collaborator",
            "from",
            "an",
            "organization"
          ]
        },
        "description": "Removes a user, who must be an outside collaborator, from the specified github organization, revoking their access to all its repositories.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"org\": \"\",\n  \"username\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_remove_public_org_membership",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/remove/public/org/membership",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "remove",
            "public",
            "org",
            "membership"
          ]
        },
        "description": "Makes an authenticated user's public membership in an organization private (without removing them from the organization); the user must currently be a public member of that organization.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"org\": \"\",\n  \"username\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_remove_repo_from_org_dev_env_secret",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/remove/repo/from/org/dev/env/secret",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "remove",
            "repo",
            "from",
            "org",
            "dev",
            "env",
            "secret"
          ]
        },
        "description": "Removes a repository's access to an organization-level codespaces secret, if it was previously granted.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"org\": \"\",\n  \"secret_name\": \"\",\n  \"repository_id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_remove_repo_from_org_secret_with_selected_visibility",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/remove/repo/from/org/secret/with/selected/visibility",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "remove",
            "repo",
            "from",
            "org",
            "secret",
            "with",
            "selected",
            "visibility"
          ]
        },
        "description": "Revokes a specific repository's access to an organization-level dependabot secret, applicable only when the secret has 'selected' visibility and the specified repository currently has access.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"org\": \"\",\n  \"secret_name\": \"\",\n  \"repository_id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_remove_requested_reviewers_from_a_pull_request",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/remove/requested/reviewers/from/a/pull/request",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "remove",
            "requested",
            "reviewers",
            "from",
            "a",
            "pull",
            "request"
          ]
        },
        "description": "Removes currently assigned user logins and/or team slugs from a github pull request's list of requested reviewers.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"repo\": \"\",\n  \"owner\": \"\",\n  \"reviewers\": \"\",\n  \"pull_number\": 0,\n  \"team_reviewers\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_remove_selected_repository_from_an_organization_secret",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/remove/selected/repository/from/an/organization/secret",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "remove",
            "selected",
            "repository",
            "from",
            "an",
            "organization",
            "secret"
          ]
        },
        "description": "Removes a specific repository's access to an organization-level secret; the repository must have been previously granted access to this secret.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"org\": \"\",\n  \"secret_name\": \"\",\n  \"repository_id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_remove_selected_repository_from_an_organization_variable",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/remove/selected/repository/from/an/organization/variable",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "remove",
            "selected",
            "repository",
            "from",
            "an",
            "organization",
            "variable"
          ]
        },
        "description": "Removes a repository's access to an organization variable, if the variable's visibility is 'selected' and the repository is in its access list.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"org\": \"\",\n  \"name\": \"\",\n  \"repository_id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_remove_status_check_contexts",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/remove/status/check/contexts",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "remove",
            "status",
            "check",
            "contexts"
          ]
        },
        "description": "Removes specified status check contexts (passed in the request body as an array of strings) from a protected branch in a repository.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"repo\": \"\",\n  \"owner\": \"\",\n  \"branch\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_remove_status_check_protection",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/remove/status/check/protection",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "remove",
            "status",
            "check",
            "protection"
          ]
        },
        "description": "Removes status check protection from a branch, disabling required status checks for merging pull requests; will only have an effect if status check protection is currently configured on the branch.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"repo\": \"\",\n  \"owner\": \"\",\n  \"branch\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_remove_team_access_restrictions",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/remove/team/access/restrictions",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "remove",
            "team",
            "access",
            "restrictions"
          ]
        },
        "description": "Removes all team-based access restrictions from a specified protected branch; the branch must be protected and have existing team restrictions for this action to change settings.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"repo\": \"\",\n  \"owner\": \"\",\n  \"branch\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_remove_team_membership_for_a_user",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/remove/team/membership/for/a/user",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "remove",
            "team",
            "membership",
            "for",
            "a",
            "user"
          ]
        },
        "description": "Removes a user from a specific team within an organization; this action fails if team synchronization with an identity provider (idp) is enabled, and may delete the team if the user is its last member",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"org\": \"\",\n  \"username\": \"\",\n  \"team_slug\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_remove_user_access_restrictions",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/remove/user/access/restrictions",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "remove",
            "user",
            "access",
            "restrictions"
          ]
        },
        "description": "Removes active user-level access restrictions from a specified protected branch, enabling users with repository write access to push or merge if no other team or app restrictions apply.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"repo\": \"\",\n  \"owner\": \"\",\n  \"branch\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_remove_user_as_a_collaborator",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/remove/user/as/a/collaborator",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "remove",
            "user",
            "as",
            "a",
            "collaborator"
          ]
        },
        "description": "Removes a user as a collaborator from an organization project; the user must already be a collaborator on the specified project.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"username\": \"\",\n  \"project_id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_remove_users_from_codespaces_access_for_an_organization",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/remove/users/from/codespaces/access/for/an/organization",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "remove",
            "users",
            "from",
            "codespaces",
            "access",
            "for",
            "an",
            "organization"
          ]
        },
        "description": "Removes selected users from github codespaces billing access for an existing organization.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"org\": \"\",\n  \"selected_usernames\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_rename_a_branch",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/rename/a/branch",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "rename",
            "a",
            "branch"
          ]
        },
        "description": "Renames an existing branch in a github repository; the new name must be unique and adhere to github's naming conventions, and the current branch name cannot contain wildcard characters.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"repo\": \"\",\n  \"owner\": \"\",\n  \"branch\": \"\",\n  \"new_name\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_render_a_markdown_document",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/render/a/markdown/document",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "render",
            "a",
            "markdown",
            "document"
          ]
        },
        "description": "Renders markdown to html; for 'gfm' mode, provide 'context' (owner/repo) to correctly link issues, pull requests, and user mentions.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"mode\": \"\",\n  \"text\": \"\",\n  \"context\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_replace_all_repository_topics",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/replace/all/repository/topics",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "replace",
            "all",
            "repository",
            "topics"
          ]
        },
        "description": "Replaces all topics of a repository.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"repo\": \"\",\n  \"names\": \"\",\n  \"owner\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_replace_org_secret_visibility_to_selected",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/replace/org/secret/visibility/to/selected",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "replace",
            "org",
            "secret",
            "visibility",
            "to",
            "selected"
          ]
        },
        "description": "Sets an existing dependabot organization secret's visibility to 'selected' and replaces the full list of repositories that can access it with the ids provided.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"org\": \"\",\n  \"secret_name\": \"\",\n  \"selected_repository_ids\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_replace_repo_access_on_org_dev_env_secret_set",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/replace/repo/access/on/org/dev/env/secret/set",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "replace",
            "repo",
            "access",
            "on",
            "org",
            "dev",
            "env",
            "secret",
            "set"
          ]
        },
        "description": "Replaces the list of repositories that can access an existing organization-level codespaces secret with the provided valid repository ids owned by the organization.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"org\": \"\",\n  \"secret_name\": \"\",\n  \"selected_repository_ids\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_repo_s_create_for_authenticated_user",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/repo/s/create/for/authenticated/user",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "repo",
            "s",
            "create",
            "for",
            "authenticated",
            "user"
          ]
        },
        "description": "Deprecated: use 'create a repository for the authenticated user' instead. creates a new repository for the authenticated user.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"name\": \"\",\n  \"private\": false,\n  \"team_id\": 0,\n  \"has_wiki\": false,\n  \"homepage\": \"\",\n  \"auto_init\": false,\n  \"has_issues\": false,\n  \"description\": \"\",\n  \"is_template\": false,\n  \"has_projects\": false,\n  \"has_downloads\": false,\n  \"has_discussions\": false,\n  \"allow_auto_merge\": false,\n  \"license_template\": \"\",\n  \"allow_merge_commit\": false,\n  \"allow_rebase_merge\": false,\n  \"allow_squash_merge\": false,\n  \"gitignore_template\": \"\",\n  \"merge_commit_title\": \"\",\n  \"merge_commit_message\": \"\",\n  \"delete_branch_on_merge\": false,\n  \"squash_merge_commit_title\": \"\",\n  \"squash_merge_commit_message\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_repo_s_create_fork",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/repo/s/create/fork",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "repo",
            "s",
            "create",
            "fork"
          ]
        },
        "description": "(deprecated: use `create a fork` instead) creates a fork of a specified repository.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"name\": \"\",\n  \"repo\": \"\",\n  \"owner\": \"\",\n  \"organization\": \"\",\n  \"default_branch_only\": false\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_repo_s_create_in_org",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/repo/s/create/in/org",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "repo",
            "s",
            "create",
            "in",
            "org"
          ]
        },
        "description": "Deprecated: use `create an organization repository` instead. creates a new repository in the specified organization.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"org\": \"\",\n  \"name\": \"\",\n  \"private\": false,\n  \"team_id\": 0,\n  \"has_wiki\": false,\n  \"homepage\": \"\",\n  \"auto_init\": false,\n  \"has_issues\": false,\n  \"visibility\": \"\",\n  \"description\": \"\",\n  \"is_template\": false,\n  \"has_projects\": false,\n  \"has_downloads\": false,\n  \"allow_auto_merge\": false,\n  \"license_template\": \"\",\n  \"custom_properties\": {},\n  \"allow_merge_commit\": false,\n  \"allow_rebase_merge\": false,\n  \"allow_squash_merge\": false,\n  \"gitignore_template\": \"\",\n  \"merge_commit_title\": \"\",\n  \"merge_commit_message\": \"\",\n  \"delete_branch_on_merge\": false,\n  \"squash_merge_commit_title\": \"\",\n  \"squash_merge_commit_message\": \"\",\n  \"use_squash_pr_title_as_default\": false\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_repo_s_create_or_update_file_contents",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/repo/s/create/or/update/file/contents",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "repo",
            "s",
            "create",
            "or",
            "update",
            "file",
            "contents"
          ]
        },
        "description": "Deprecated: use `create or update file contents` instead; creates or replaces a file in a repository.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"sha\": \"\",\n  \"path\": \"\",\n  \"repo\": \"\",\n  \"owner\": \"\",\n  \"branch\": \"\",\n  \"content\": \"\",\n  \"message\": \"\",\n  \"author__date\": \"\",\n  \"author__name\": \"\",\n  \"author__email\": \"\",\n  \"committer__date\": \"\",\n  \"committer__name\": \"\",\n  \"committer__email\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_repo_s_get_code_frequency_stats",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/repo/s/get/code/frequency/stats",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "repo",
            "s",
            "get",
            "code",
            "frequency",
            "stats"
          ]
        },
        "description": "Deprecated: use `get the weekly commit activity` instead. fetches weekly commit statistics (additions/deletions) for a repository; less reliable for over 10,000 commits.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"repo\": \"\",\n  \"owner\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_repo_s_get_commit",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/repo/s/get/commit",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "repo",
            "s",
            "get",
            "commit"
          ]
        },
        "description": "Deprecated: use `get a commit`. retrieves a specific commit from a repository by its owner, name, and a valid commit reference (sha, branch, or tag), supporting pagination for large diffs.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"ref\": \"\",\n  \"page\": 0,\n  \"repo\": \"\",\n  \"owner\": \"\",\n  \"per_page\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_repo_s_get_content",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/repo/s/get/content",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "repo",
            "s",
            "get",
            "content"
          ]
        },
        "description": "Deprecated: gets repository file content or directory metadata; use `get repository content` instead.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"ref\": \"\",\n  \"path\": \"\",\n  \"repo\": \"\",\n  \"owner\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_repo_s_get_contributors_stats",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/repo/s/get/contributors/stats",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "repo",
            "s",
            "get",
            "contributors",
            "stats"
          ]
        },
        "description": "(deprecated: use `getallcontributorcommitactivity`) fetches commit activity (total commits, weekly additions/deletions/commits) for all repository contributors; retry if github returns 202.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"repo\": \"\",\n  \"owner\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_repo_s_list_branches",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/repo/s/list/branches",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "repo",
            "s",
            "list",
            "branches"
          ]
        },
        "description": "(deprecated: use 'list branches' instead) lists branches for an existing github repository, with an option to filter by protection status.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"page\": 0,\n  \"repo\": \"\",\n  \"owner\": \"\",\n  \"per_page\": 0,\n  \"protected\": false\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_repo_s_list_collaborators",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/repo/s/list/collaborators",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "repo",
            "s",
            "list",
            "collaborators"
          ]
        },
        "description": "(deprecated: use `listrepositorycollaborators`) lists repository collaborators, especially for organization-owned repositories including team members from child teams; requires repository access and p",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"page\": 0,\n  \"repo\": \"\",\n  \"owner\": \"\",\n  \"per_page\": 0,\n  \"permission\": \"\",\n  \"affiliation\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_repo_s_list_commits",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/repo/s/list/commits",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "repo",
            "s",
            "list",
            "commits"
          ]
        },
        "description": "Deprecated: use `list commits` instead; lists repository commits, including gpg/s/mime signature verification details if available.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"sha\": \"\",\n  \"page\": 0,\n  \"path\": \"\",\n  \"repo\": \"\",\n  \"owner\": \"\",\n  \"since\": \"\",\n  \"until\": \"\",\n  \"author\": \"\",\n  \"per_page\": 0,\n  \"committer\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_repo_s_list_contributors",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/repo/s/list/contributors",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "repo",
            "s",
            "list",
            "contributors"
          ]
        },
        "description": "Deprecated: use `list repository contributors`. lists repository contributors, sorted by contributions; repository must exist and be accessible.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"anon\": \"\",\n  \"page\": 0,\n  \"repo\": \"\",\n  \"owner\": \"\",\n  \"per_page\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_repo_s_list_for_authenticated_user",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/repo/s/list/for/authenticated/user",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "repo",
            "s",
            "list",
            "for",
            "authenticated",
            "user"
          ]
        },
        "description": "Deprecated: use `list repositories for the authenticated user` to list the authenticated user's repositories.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"page\": 0,\n  \"sort\": \"\",\n  \"type\": \"\",\n  \"since\": \"\",\n  \"before\": \"\",\n  \"per_page\": 0,\n  \"direction\": \"\",\n  \"raw_response\": false\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_repo_s_list_for_org",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/repo/s/list/for/org",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "repo",
            "s",
            "list",
            "for",
            "org"
          ]
        },
        "description": "Deprecated: lists repositories for a github organization; use `list organization repositories` instead.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"org\": \"\",\n  \"page\": 0,\n  \"sort\": \"\",\n  \"type\": \"\",\n  \"per_page\": 0,\n  \"direction\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_repo_s_list_for_user",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/repo/s/list/for/user",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "repo",
            "s",
            "list",
            "for",
            "user"
          ]
        },
        "description": "Deprecated: lists public repositories for the specified github user; use `list repositories for a user` instead.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"page\": 0,\n  \"sort\": \"\",\n  \"type\": \"\",\n  \"per_page\": 0,\n  \"username\": \"\",\n  \"direction\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_request_a_github_pages_build",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/request/a/github/pages/build",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "request",
            "a",
            "github",
            "pages",
            "build"
          ]
        },
        "description": "Manually triggers a github pages build for a repository if github pages is enabled, useful for deployments not automatically built or for retrying failed builds.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"repo\": \"\",\n  \"owner\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_request_reviewers_for_a_pull_request",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/request/reviewers/for/a/pull/request",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "request",
            "reviewers",
            "for",
            "a",
            "pull",
            "request"
          ]
        },
        "description": "Requests user and/or team reviewers for an open pull request in a repository; requires `owner`, `repo`, `pull number`, and at least one of `reviewers` or `team reviewers`.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"repo\": \"\",\n  \"owner\": \"\",\n  \"reviewers\": \"\",\n  \"pull_number\": 0,\n  \"team_reviewers\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_rerequest_a_check_run",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/rerequest/a/check/run",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "rerequest",
            "a",
            "check",
            "run"
          ]
        },
        "description": "Triggers a re-run of a specific check run in a github repository, which resets its status to 'queued', clears its conclusion, and triggers the `check run` webhook with `rerequested`.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"repo\": \"\",\n  \"owner\": \"\",\n  \"check_run_id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_rerequest_a_check_suite",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/rerequest/a/check/suite",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "rerequest",
            "a",
            "check",
            "suite"
          ]
        },
        "description": "Triggers a new run of an existing check suite within a repository, useful for re-running checks without new code.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"repo\": \"\",\n  \"owner\": \"\",\n  \"check_suite_id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_reset_a_token",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/reset/a/token",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "reset",
            "a",
            "token"
          ]
        },
        "description": "Invalidates the provided oauth `access token` and generates a new one for the github oauth app identified by `client id`, used for token compromise or security rotation.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"client_id\": \"\",\n  \"access_token\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_restore_a_package_for_a_user",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/restore/a/package/for/a/user",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "restore",
            "a",
            "package",
            "for",
            "a",
            "user"
          ]
        },
        "description": "Restores a user-owned package previously deleted from github packages, if restorable under github's data retention policy (typically within 30 days of deletion).",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"token\": \"\",\n  \"username\": \"\",\n  \"package_name\": \"\",\n  \"package_type\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_restore_a_package_for_an_organization",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/restore/a/package/for/an/organization",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "restore",
            "a",
            "package",
            "for",
            "an",
            "organization"
          ]
        },
        "description": "Restores a package in an organization, provided it was deleted within the last 30 days.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"org\": \"\",\n  \"token\": \"\",\n  \"package_name\": \"\",\n  \"package_type\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_restore_a_package_for_the_authenticated_user",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/restore/a/package/for/the/authenticated/user",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "restore",
            "a",
            "package",
            "for",
            "the",
            "authenticated",
            "user"
          ]
        },
        "description": "Restores a package deleted by the authenticated user within the last 30 days, if its namespace and version are still available.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"token\": \"\",\n  \"package_name\": \"\",\n  \"package_type\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_restore_a_package_version_for_the_authenticated_user",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/restore/a/package/version/for/the/authenticated/user",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "restore",
            "a",
            "package",
            "version",
            "for",
            "the",
            "authenticated",
            "user"
          ]
        },
        "description": "Restores a package version that was deleted by the authenticated user within the last 30 days.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"package_name\": \"\",\n  \"package_type\": \"\",\n  \"package_version_id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_restore_package_version_for_a_user",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/restore/package/version/for/a/user",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "restore",
            "package",
            "version",
            "for",
            "a",
            "user"
          ]
        },
        "description": "Restores a specific, user-owned package version if it was deleted within the last 30 days and its original namespace and version name are still available.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"username\": \"\",\n  \"package_name\": \"\",\n  \"package_type\": \"\",\n  \"package_version_id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_restore_package_version_for_an_organization",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/restore/package/version/for/an/organization",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "restore",
            "package",
            "version",
            "for",
            "an",
            "organization"
          ]
        },
        "description": "Restores a package version for an organization, provided it was deleted within the last 30 days.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"org\": \"\",\n  \"package_name\": \"\",\n  \"package_type\": \"\",\n  \"package_version_id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_retrieve_repo_public_key_for_encryption",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/retrieve/repo/public/key/for/encryption",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "retrieve",
            "repo",
            "public",
            "key",
            "for",
            "encryption"
          ]
        },
        "description": "Gets a repository's public key, used to encrypt secrets for dependabot.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"repo\": \"\",\n  \"owner\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_review_access_with_personal_token",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/review/access/with/personal/token",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "review",
            "access",
            "with",
            "personal",
            "token"
          ]
        },
        "description": "Approves or denies a pending fine-grained personal access token request for organization resources; must be performed by a github app.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"org\": \"\",\n  \"action\": \"\",\n  \"reason\": \"\",\n  \"pat_request_id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_review_deployment_protection_rules",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/review/deployment/protection/rules",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "review",
            "deployment",
            "protection",
            "rules"
          ]
        },
        "description": "Approves or rejects pending custom deployment protection rules for a workflow run by posting a review with `environment name` (str), `state` (str: 'approved'/'rejected'), and optional `comment` (str) ",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"repo\": \"\",\n  \"owner\": \"\",\n  \"run_id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_review_pending_deployments_for_a_workflow_run",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/review/pending/deployments/for/a/workflow/run",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "review",
            "pending",
            "deployments",
            "for",
            "a",
            "workflow",
            "run"
          ]
        },
        "description": "Approves or rejects pending deployments for a specific workflow run that are in a 'waiting' state within specified, configured environments.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"repo\": \"\",\n  \"owner\": \"\",\n  \"state\": \"\",\n  \"run_id\": 0,\n  \"comment\": \"\",\n  \"environment_ids\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_review_resource_requests_with_fine_grained_tokens",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/review/resource/requests/with/fine/grained/tokens",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "review",
            "resource",
            "requests",
            "with",
            "fine",
            "grained",
            "tokens"
          ]
        },
        "description": "Approves or denies fine-grained personal access token requests for an organization; any specified `pat request ids` must refer to currently pending requests.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"org\": \"\",\n  \"action\": \"\",\n  \"reason\": \"\",\n  \"pat_request_ids\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_revoke_an_installation_access_token",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/revoke/an/installation/access/token",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "revoke",
            "an",
            "installation",
            "access",
            "token"
          ]
        },
        "description": "Revokes the github app's current installation access token, immediately invalidating it for api authentication.",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_search_code",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/search/code",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "search",
            "code"
          ]
        },
        "description": "Searches code file contents and paths on the default branch of github repositories using a query string; searches only files under 384kb, returns max 1000 results by best match, and is optimized for p",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"q\": \"\",\n  \"page\": 0,\n  \"sort\": \"\",\n  \"order\": \"\",\n  \"per_page\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_search_commits",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/search/commits",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "search",
            "commits"
          ]
        },
        "description": "Finds commits on github using a query string (q) supporting keywords and qualifiers, with options for sorting and pagination.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"q\": \"\",\n  \"page\": 0,\n  \"sort\": \"\",\n  \"order\": \"\",\n  \"per_page\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_search_issues_and_pull_requests",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/search/issues/and/pull/requests",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "search",
            "issues",
            "and",
            "pull",
            "requests"
          ]
        },
        "description": "Searches github for issues and pull requests. use qualifiers to scope searches: `repo:owner/name` for specific repos, `org:orgname` for organizations, `user:username` for personal repos, `assignee:@me",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"q\": \"\",\n  \"page\": 0,\n  \"sort\": \"\",\n  \"order\": \"\",\n  \"per_page\": 0,\n  \"raw_response\": false\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_search_labels",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/search/labels",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "search",
            "labels"
          ]
        },
        "description": "Searches for labels within a github repository by keywords in their names or descriptions.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"q\": \"\",\n  \"page\": 0,\n  \"sort\": \"\",\n  \"order\": \"\",\n  \"per_page\": 0,\n  \"repository_id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_search_repo_s",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/search/repo/s",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "search",
            "repo",
            "s"
          ]
        },
        "description": "Deprecated: use `search repositories`; this version finds repositories by criteria, including text match metadata and pagination. example: `q=\"tetris language:assembly\", sort=\"stars\"`",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"q\": \"\",\n  \"page\": 0,\n  \"sort\": \"\",\n  \"order\": \"\",\n  \"per_page\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_search_repositories",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/search/repositories",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "search",
            "repositories"
          ]
        },
        "description": "Searches github repositories using a flexible query (keywords, qualifiers) with sorting, ordering, and pagination.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"q\": \"\",\n  \"page\": 0,\n  \"sort\": \"\",\n  \"order\": \"\",\n  \"per_page\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_search_topics",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/search/topics",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "search",
            "topics"
          ]
        },
        "description": "Finds topics on github using keywords and qualifiers with github's search syntax, supporting pagination.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"q\": \"\",\n  \"page\": 0,\n  \"per_page\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_search_users",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/search/users",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "search",
            "users"
          ]
        },
        "description": "Searches for users on github by criteria like username, email, location, followers, or repository associations, using a flexible query string `q`.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"q\": \"\",\n  \"page\": 0,\n  \"sort\": \"\",\n  \"order\": \"\",\n  \"per_page\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_security_advisories_list_global_advisories",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/security/advisories/list/global/advisories",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "security",
            "advisories",
            "list",
            "global",
            "advisories"
          ]
        },
        "description": "tags = [\"openworldhint\", \"readonlyhint\", \"mcpignore\"] the text describes how to find global security advisories with specific parameters. by default, it excludes malware advisories, which can be inclu",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"cwes\": \"\",\n  \"sort\": \"\",\n  \"type\": \"\",\n  \"after\": \"\",\n  \"before\": \"\",\n  \"cve_id\": \"\",\n  \"affects\": \"\",\n  \"ghsa_id\": \"\",\n  \"updated\": \"\",\n  \"modified\": \"\",\n  \"per_page\": 0,\n  \"severity\": \"\",\n  \"direction\": \"\",\n  \"ecosystem\": \"\",\n  \"published\": \"\",\n  \"is_withdrawn\": false\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_set_a_repository_subscription",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/set/a/repository/subscription",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "set",
            "a",
            "repository",
            "subscription"
          ]
        },
        "description": "Sets the authenticated user's notification subscription for a repository.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"repo\": \"\",\n  \"owner\": \"\",\n  \"ignored\": false,\n  \"subscribed\": false\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_set_a_thread_subscription",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/set/a/thread/subscription",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "set",
            "a",
            "thread",
            "subscription"
          ]
        },
        "description": "Sets whether a github notification thread is ignored (muted) or unignored (unmuted), for a `thread id` that must identify an existing notification thread.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"ignored\": false,\n  \"thread_id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_set_admin_branch_protection",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/set/admin/branch/protection",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "set",
            "admin",
            "branch",
            "protection"
          ]
        },
        "description": "Enables administrator enforcement on a branch, making existing protection rules also apply to administrators; branch protection rules must already be configured.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"repo\": \"\",\n  \"owner\": \"\",\n  \"branch\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_set_app_access_restrictions",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/set/app/access/restrictions",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "set",
            "app",
            "access",
            "restrictions"
          ]
        },
        "description": "Replaces the list of github apps permitted to push to a protected branch; the branch must already be protected and apps must be installed with 'contents' permission.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"repo\": \"\",\n  \"owner\": \"\",\n  \"branch\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_set_default_workflow_permissions_for_a_repository",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/set/default/workflow/permissions/for/a/repository",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "set",
            "default",
            "workflow",
            "permissions",
            "for",
            "a",
            "repository"
          ]
        },
        "description": "Sets the default permissions for the github token within a repository and configures whether github actions can approve pull requests.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"repo\": \"\",\n  \"owner\": \"\",\n  \"default_workflow_permissions\": \"\",\n  \"can_approve_pull_request_reviews\": false\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_set_default_workflow_permissions_for_an_organization",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/set/default/workflow/permissions/for/an/organization",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "set",
            "default",
            "workflow",
            "permissions",
            "for",
            "an",
            "organization"
          ]
        },
        "description": "Updates an organization's default github token permissions for workflows and whether github actions can approve pull requests; note that allowing actions to approve pull requests (`can approve pull re",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"org\": \"\",\n  \"default_workflow_permissions\": \"\",\n  \"can_approve_pull_request_reviews\": false\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_set_github_actions_permissions_for_a_repository",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/set/github/actions/permissions/for/a/repository",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "set",
            "github",
            "actions",
            "permissions",
            "for",
            "a",
            "repository"
          ]
        },
        "description": "Sets github actions permissions for a repository, enabling/disabling actions and defining the policy for allowed actions and reusable workflows.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"repo\": \"\",\n  \"owner\": \"\",\n  \"enabled\": false,\n  \"allowed_actions\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_set_github_actions_permissions_for_an_organization",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/set/github/actions/permissions/for/an/organization",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "set",
            "github",
            "actions",
            "permissions",
            "for",
            "an",
            "organization"
          ]
        },
        "description": "Sets the github actions permissions policy for an organization, specifying which repositories can run actions and which actions/workflows are allowed; if 'selected' is chosen for either, manage the sp",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"org\": \"\",\n  \"allowed_actions\": \"\",\n  \"enabled_repositories\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_set_interaction_restrictions_for_a_repository",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/set/interaction/restrictions/for/a/repository",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "set",
            "interaction",
            "restrictions",
            "for",
            "a",
            "repository"
          ]
        },
        "description": "Temporarily limits which github users (e.g., existing users, contributors only) can interact (comment, open issues, create pull requests) in a repository for a specified duration.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"repo\": \"\",\n  \"limit\": \"\",\n  \"owner\": \"\",\n  \"expiry\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_set_interaction_restrictions_for_an_organization",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/set/interaction/restrictions/for/an/organization",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "set",
            "interaction",
            "restrictions",
            "for",
            "an",
            "organization"
          ]
        },
        "description": "Limits interactions (comments, new issues, prs) in an organization's public repositories by user type and duration, typically to mitigate high traffic or unwanted activity.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"org\": \"\",\n  \"limit\": \"\",\n  \"expiry\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_set_interaction_restrictions_for_your_public_repositories",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/set/interaction/restrictions/for/your/public/repositories",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "set",
            "interaction",
            "restrictions",
            "for",
            "your",
            "public",
            "repositories"
          ]
        },
        "description": "Sets or updates temporary interaction restrictions for all public repositories owned by the authenticated user, overriding any repository-specific limits.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"limit\": \"\",\n  \"expiry\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_set_labels_for_an_issue",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/set/labels/for/an/issue",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "set",
            "labels",
            "for",
            "an",
            "issue"
          ]
        },
        "description": "Replaces all existing labels on a github issue with a new set of labels.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"repo\": \"\",\n  \"owner\": \"\",\n  \"labels\": \"\",\n  \"issue_number\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_set_org_allowed_actions",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/set/org/allowed/actions",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "set",
            "org",
            "allowed",
            "actions"
          ]
        },
        "description": "Sets the github actions permissions for an existing organization, specifying allowed github-owned actions, verified creator actions, and action/workflow patterns from public repositories.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"org\": \"\",\n  \"patterns_allowed\": \"\",\n  \"verified_allowed\": false,\n  \"github_owned_allowed\": false\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_set_org_runner_labels",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/set/org/runner/labels",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "set",
            "org",
            "runner",
            "labels"
          ]
        },
        "description": "Sets the custom labels for a self-hosted runner in an organization; this operation does not affect default system-assigned labels (e.g., 'self-hosted', 'linux', 'x64').",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"org\": \"\",\n  \"labels\": \"\",\n  \"runner_id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_set_primary_email_visibility_for_the_authenticated_user",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/set/primary/email/visibility/for/the/authenticated/user",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "set",
            "primary",
            "email",
            "visibility",
            "for",
            "the",
            "authenticated",
            "user"
          ]
        },
        "description": "Sets the visibility ('public' or 'private') of the authenticated user's primary email address on github, if one is configured.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"visibility\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_set_repo_allowed_actions",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/set/repo/allowed/actions",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "set",
            "repo",
            "allowed",
            "actions"
          ]
        },
        "description": "Sets allowed github actions and reusable workflows for a repository, managing permissions for github-owned, verified creator, or specific pattern-matched actions/workflows (note: `patterns allowed` ap",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"repo\": \"\",\n  \"owner\": \"\",\n  \"patterns_allowed\": \"\",\n  \"verified_allowed\": false,\n  \"github_owned_allowed\": false\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_set_selected_repositories_for_a_user_secret",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/set/selected/repositories/for/a/user/secret",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "set",
            "selected",
            "repositories",
            "for",
            "a",
            "user",
            "secret"
          ]
        },
        "description": "Defines the list of repositories permitted to access a specific codespaces secret for the authenticated user.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"secret_name\": \"\",\n  \"selected_repository_ids\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_set_selected_repositories_for_an_organization_secret",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/set/selected/repositories/for/an/organization/secret",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "set",
            "selected",
            "repositories",
            "for",
            "an",
            "organization",
            "secret"
          ]
        },
        "description": "Replaces the list of repositories that can access an organization secret; only effective if the secret's visibility is 'selected'.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"org\": \"\",\n  \"secret_name\": \"\",\n  \"selected_repository_ids\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_set_selected_repositories_for_an_organization_variable",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/set/selected/repositories/for/an/organization/variable",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "set",
            "selected",
            "repositories",
            "for",
            "an",
            "organization",
            "variable"
          ]
        },
        "description": "Replaces the list of repositories that can access an organization-level variable; the variable's visibility must be 'selected'.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"org\": \"\",\n  \"name\": \"\",\n  \"selected_repository_ids\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_set_status_check_contexts",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/set/status/check/contexts",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "set",
            "status",
            "check",
            "contexts"
          ]
        },
        "description": "Replaces required status check contexts for a protected branch, requiring admin permissions; an empty `contexts` array removes all checks.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"repo\": \"\",\n  \"owner\": \"\",\n  \"branch\": \"\",\n  \"contexts\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_set_team_access_restrictions",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/set/team/access/restrictions",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "set",
            "team",
            "access",
            "restrictions"
          ]
        },
        "description": "Sets team push access for a protected branch by replacing all current teams with a new list of valid team slugs (provided in the request body); an empty list of slugs removes all team restrictions.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"repo\": \"\",\n  \"owner\": \"\",\n  \"branch\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_set_user_access_restrictions",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/set/user/access/restrictions",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "set",
            "user",
            "access",
            "restrictions"
          ]
        },
        "description": "Replaces the list of users with push access to a protected branch using a request body (not in this schema) containing an array of github usernames; this enables branch protection if not already activ",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"repo\": \"\",\n  \"owner\": \"\",\n  \"branch\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_set_workflow_external_access",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/set/workflow/external/access",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "set",
            "workflow",
            "external",
            "access"
          ]
        },
        "description": "Sets the access level for workflows outside a repository to use actions and reusable workflows within that repository.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"repo\": \"\",\n  \"owner\": \"\",\n  \"access_level\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_star_a_gist",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/star/a/gist",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "star",
            "a",
            "gist"
          ]
        },
        "description": "Stars a github gist identified by `gist id`; this action is idempotent and returns a 204 no content status upon success, even if the gist is already starred.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"gist_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_star_a_repository_for_the_authenticated_user",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/star/a/repository/for/the/authenticated/user",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "star",
            "a",
            "repository",
            "for",
            "the",
            "authenticated",
            "user"
          ]
        },
        "description": "Stars an existing and accessible repository for the authenticated user; this action is idempotent and succeeds even if the repository is already starred.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"repo\": \"\",\n  \"owner\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_start_a_codespace_for_the_authenticated_user",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/start/a/codespace/for/the/authenticated/user",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "start",
            "a",
            "codespace",
            "for",
            "the",
            "authenticated",
            "user"
          ]
        },
        "description": "Initiates the startup process for an existing github codespace (identified by `codespace name`) if it's in a startable state like 'available' or 'stopped'.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"codespace_name\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_stop_a_codespace_for_an_organization_user",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/stop/a/codespace/for/an/organization/user",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "stop",
            "a",
            "codespace",
            "for",
            "an",
            "organization",
            "user"
          ]
        },
        "description": "Stops a codespace, which must be currently running, for a specified member of an organization.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"org\": \"\",\n  \"username\": \"\",\n  \"codespace_name\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_stop_a_codespace_for_the_authenticated_user",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/stop/a/codespace/for/the/authenticated/user",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "stop",
            "a",
            "codespace",
            "for",
            "the",
            "authenticated",
            "user"
          ]
        },
        "description": "Stops a running or available codespace for the authenticated user, pausing its execution and billing.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"codespace_name\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_submit_a_review_for_a_pull_request",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/submit/a/review/for/a/pull/request",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "submit",
            "a",
            "review",
            "for",
            "a",
            "pull",
            "request"
          ]
        },
        "description": "Finalizes a pending pull request review (identified by `review id`) with a required `event` (approve, request changes, comment) and an optional `body`.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"body\": \"\",\n  \"repo\": \"\",\n  \"event\": \"\",\n  \"owner\": \"\",\n  \"review_id\": 0,\n  \"pull_number\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_sync_a_fork_branch_with_the_upstream_repository",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/sync/a/fork/branch/with/the/upstream/repository",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "sync",
            "a",
            "fork",
            "branch",
            "with",
            "the",
            "upstream",
            "repository"
          ]
        },
        "description": "Synchronizes a branch in a forked github repository with its upstream counterpart, assuming the repository is a fork, the branch exists, an upstream is configured, and the merge is conflict-free.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"repo\": \"\",\n  \"owner\": \"\",\n  \"branch\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_test_the_push_repository_webhook",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/test/the/push/repository/webhook",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "test",
            "the",
            "push",
            "repository",
            "webhook"
          ]
        },
        "description": "Triggers a simulated push event to test a repository's push webhook; a test event is only delivered if the webhook is subscribed to 'push' events, otherwise, it returns 204 no content without sending ",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"repo\": \"\",\n  \"owner\": \"\",\n  \"hook_id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_transfer_a_repository",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/transfer/a/repository",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "transfer",
            "a",
            "repository"
          ]
        },
        "description": "Initiates a repository transfer to a new owner (who must accept the request); if the new owner is an organization, it must be configured to allow transfers.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"repo\": \"\",\n  \"owner\": \"\",\n  \"new_name\": \"\",\n  \"team_ids\": \"\",\n  \"new_owner\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_unblock_a_user",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/unblock/a/user",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "unblock",
            "a",
            "user"
          ]
        },
        "description": "Unblocks a github user, provided they are currently blocked by the authenticated user.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"username\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_unblock_a_user_from_an_organization",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/unblock/a/user/from/an/organization",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "unblock",
            "a",
            "user",
            "from",
            "an",
            "organization"
          ]
        },
        "description": "Unblocks a user from an organization, allowing renewed interaction with its resources, provided the user is currently blocked (otherwise, a 404 error may occur).",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"org\": \"\",\n  \"username\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_unfollow_a_user",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/unfollow/a/user",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "unfollow",
            "a",
            "user"
          ]
        },
        "description": "Unfollows an existing github user; this action is idempotent, succeeding even if the authenticated user is not currently following them.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"username\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_unlock_a_user_repository",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/unlock/a/user/repository",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "unlock",
            "a",
            "user",
            "repository"
          ]
        },
        "description": "Unlocks a repository (`repo name`) that was locked as part of a user migration (`migration id`), making it usable or deletable; this action requires the repository to be currently locked.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"repo_name\": \"\",\n  \"migration_id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_unlock_an_issue",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/unlock/an/issue",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "unlock",
            "an",
            "issue"
          ]
        },
        "description": "Unlocks a currently locked github issue in the specified repository, allowing new comments and interactions.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"repo\": \"\",\n  \"owner\": \"\",\n  \"issue_number\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_unlock_an_organization_repository",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/unlock/an/organization/repository",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "unlock",
            "an",
            "organization",
            "repository"
          ]
        },
        "description": "Unlocks an organization repository previously locked by a github migration.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"org\": \"\",\n  \"repo_name\": \"\",\n  \"migration_id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_unstar_a_gist",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/unstar/a/gist",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "unstar",
            "a",
            "gist"
          ]
        },
        "description": "Removes a star from the specified gist; the action is idempotent and will not error if the gist was not previously starred by the user.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"gist_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_unstar_a_repository_for_the_authenticated_user",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/unstar/a/repository/for/the/authenticated/user",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "unstar",
            "a",
            "repository",
            "for",
            "the",
            "authenticated",
            "user"
          ]
        },
        "description": "Removes the authenticated user's star from a specified repository, which must already be starred by the user.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"repo\": \"\",\n  \"owner\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_update_a_check_run",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/a/check/run",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "a",
            "check",
            "run"
          ]
        },
        "description": "Updates an existing check run for a specific commit in a repository, allowing modifications to its status, conclusion, output, and other details.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"name\": \"\",\n  \"repo\": \"\",\n  \"owner\": \"\",\n  \"status\": \"\",\n  \"actions\": \"\",\n  \"conclusion\": \"\",\n  \"started_at\": \"\",\n  \"details_url\": \"\",\n  \"external_id\": \"\",\n  \"check_run_id\": 0,\n  \"completed_at\": \"\",\n  \"output__text\": \"\",\n  \"output__title\": \"\",\n  \"output__images\": \"\",\n  \"output__summary\": \"\",\n  \"output__annotations\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_update_a_code_scanning_alert",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/a/code/scanning/alert",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "a",
            "code",
            "scanning",
            "alert"
          ]
        },
        "description": "Updates a specific code scanning alert in a github repository, primarily to change its state (e.g., 'open' or 'dismissed').",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"repo\": \"\",\n  \"owner\": \"\",\n  \"state\": \"\",\n  \"alert_number\": 0,\n  \"dismissed_reason\": \"\",\n  \"dismissed_comment\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_update_a_code_scanning_default_setup_configuration",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/a/code/scanning/default/setup/configuration",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "a",
            "code",
            "scanning",
            "default",
            "setup",
            "configuration"
          ]
        },
        "description": "Updates the default setup configuration for code scanning in a repository; github advanced security must be enabled for the repository.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"repo\": \"\",\n  \"owner\": \"\",\n  \"state\": \"\",\n  \"languages\": \"\",\n  \"query_suite\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_update_a_codespace_for_the_authenticated_user",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/a/codespace/for/the/authenticated/user",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "a",
            "codespace",
            "for",
            "the",
            "authenticated",
            "user"
          ]
        },
        "description": "Updates an existing github codespace's machine type, display name, or recent folders for the authenticated user; machine type changes take effect on the next start.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"machine\": \"\",\n  \"display_name\": \"\",\n  \"codespace_name\": \"\",\n  \"recent_folders\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_update_a_commit_comment",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/a/commit/comment",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "a",
            "commit",
            "comment"
          ]
        },
        "description": "Changes the body of an existing commit comment.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"body\": \"\",\n  \"repo\": \"\",\n  \"owner\": \"\",\n  \"comment_id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_update_a_custom_organization_role",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/a/custom/organization/role",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "a",
            "custom",
            "organization",
            "role"
          ]
        },
        "description": "Updates an existing custom role in an organization by modifying its name, description, or permissions; at least one of these fields must be provided.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"org\": \"\",\n  \"name\": \"\",\n  \"role_id\": 0,\n  \"description\": \"\",\n  \"permissions\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_update_a_deployment_branch_policy",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/a/deployment/branch/policy",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "a",
            "deployment",
            "branch",
            "policy"
          ]
        },
        "description": "Updates the name pattern of an existing deployment branch policy for a specific environment in a repository.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"name\": \"\",\n  \"repo\": \"\",\n  \"owner\": \"\",\n  \"branch_policy_id\": 0,\n  \"environment_name\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_update_a_discussion",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/a/discussion",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "a",
            "discussion"
          ]
        },
        "description": "Updates the title and/or body of a specific team discussion within an organization.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"org\": \"\",\n  \"body\": \"\",\n  \"title\": \"\",\n  \"team_slug\": \"\",\n  \"discussion_number\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_update_a_discussion_comment",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/a/discussion/comment",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "a",
            "discussion",
            "comment"
          ]
        },
        "description": "Updates the body of a comment in a team's discussion within an organization.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"org\": \"\",\n  \"body\": \"\",\n  \"team_slug\": \"\",\n  \"comment_number\": 0,\n  \"discussion_number\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_update_a_gist",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/a/gist",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "a",
            "gist"
          ]
        },
        "description": "Updates a gist's description, and/or its files (including content, filename changes, or deletion).",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"files\": {},\n  \"gist_id\": \"\",\n  \"description\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_update_a_gist_comment",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/a/gist/comment",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "a",
            "gist",
            "comment"
          ]
        },
        "description": "Updates an existing comment on a specified gist.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"body\": \"\",\n  \"gist_id\": \"\",\n  \"comment_id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_update_a_label",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/a/label",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "a",
            "label"
          ]
        },
        "description": "Updates an existing label's name, color, or description within a specified repository.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"name\": \"\",\n  \"repo\": \"\",\n  \"color\": \"\",\n  \"owner\": \"\",\n  \"new_name\": \"\",\n  \"description\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_update_a_milestone",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/a/milestone",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "a",
            "milestone"
          ]
        },
        "description": "Updates a milestone in a repository, identified by `owner`, `repo`, and `milestone number`, by allowing modification of its `title`, `state`, `description`, or `due on`; at least one of these four att",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"repo\": \"\",\n  \"owner\": \"\",\n  \"state\": \"\",\n  \"title\": \"\",\n  \"due_on\": \"\",\n  \"description\": \"\",\n  \"milestone_number\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_update_a_project",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/a/project",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "a",
            "project"
          ]
        },
        "description": "Updates an existing github project's attributes if the github projects feature is enabled and at least one modifiable field is provided.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"body\": \"\",\n  \"name\": \"\",\n  \"state\": \"\",\n  \"private\": false,\n  \"project_id\": 0,\n  \"organization_permission\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_update_a_pull_request",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/a/pull/request",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "a",
            "pull",
            "request"
          ]
        },
        "description": "Updates an existing pull request, allowing changes to attributes like title, body, state, base branch, and maintainer modification settings.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"base\": \"\",\n  \"body\": \"\",\n  \"repo\": \"\",\n  \"owner\": \"\",\n  \"state\": \"\",\n  \"title\": \"\",\n  \"pull_number\": 0,\n  \"maintainer_can_modify\": false\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_update_a_pull_request_branch",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/a/pull/request/branch",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "a",
            "pull",
            "request",
            "branch"
          ]
        },
        "description": "Updates an open pull request's head branch by merging the latest changes from its base branch, if mergeable and repository merging is enabled; operates asynchronously.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"repo\": \"\",\n  \"owner\": \"\",\n  \"pull_number\": 0,\n  \"expected_head_sha\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_update_a_reference",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/a/reference",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "a",
            "reference"
          ]
        },
        "description": "Updates a git reference (e.g., a branch or tag) to a specific commit sha, creating the reference if it doesn't exist; use `force` for non-fast-forward updates.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"ref\": \"\",\n  \"sha\": \"\",\n  \"repo\": \"\",\n  \"force\": false,\n  \"owner\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_update_a_release",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/a/release",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "a",
            "release"
          ]
        },
        "description": "Updates an existing release in a github repository, allowing modification of its attributes; if linking a discussion, the `discussion category name` must refer to an existing category in the repositor",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"body\": \"\",\n  \"name\": \"\",\n  \"repo\": \"\",\n  \"draft\": false,\n  \"owner\": \"\",\n  \"tag_name\": \"\",\n  \"prerelease\": false,\n  \"release_id\": 0,\n  \"make_latest\": \"\",\n  \"target_commitish\": \"\",\n  \"discussion_category_name\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_update_a_release_asset",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/a/release/asset",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "a",
            "release",
            "asset"
          ]
        },
        "description": "Updates the name, label, or state of a release asset in a github repository, requiring at least one of these properties to be provided for modification.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"name\": \"\",\n  \"repo\": \"\",\n  \"label\": \"\",\n  \"owner\": \"\",\n  \"state\": \"\",\n  \"asset_id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_update_a_repository",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/a/repository",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "a",
            "repository"
          ]
        },
        "description": "Updates settings for an existing github repository, such as name, description, visibility, merge strategies, and security configurations.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"name\": \"\",\n  \"repo\": \"\",\n  \"owner\": \"\",\n  \"private\": false,\n  \"archived\": false,\n  \"has_wiki\": false,\n  \"homepage\": \"\",\n  \"has_issues\": false,\n  \"visibility\": \"\",\n  \"description\": \"\",\n  \"is_template\": false,\n  \"has_projects\": false,\n  \"allow_forking\": false,\n  \"default_branch\": \"\",\n  \"allow_auto_merge\": false,\n  \"allow_merge_commit\": false,\n  \"allow_rebase_merge\": false,\n  \"allow_squash_merge\": false,\n  \"merge_commit_title\": \"\",\n  \"allow_update_branch\": false,\n  \"merge_commit_message\": \"\",\n  \"delete_branch_on_merge\": false,\n  \"squash_merge_commit_title\": \"\",\n  \"squash_merge_commit_message\": \"\",\n  \"web_commit_signoff_required\": false,\n  \"use_squash_pr_title_as_default\": false,\n  \"security__and__analysis__secret__scanning__status\": \"\",\n  \"security__and__analysis__advanced__security__status\": \"\",\n  \"security__and__analysis__secret__scanning__push__protection__status\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_update_a_repository_invitation",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/a/repository/invitation",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "a",
            "repository",
            "invitation"
          ]
        },
        "description": "Updates an active repository invitation to modify the invited user's permissions; the specified repository and invitation must exist.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"repo\": \"\",\n  \"owner\": \"\",\n  \"permissions\": \"\",\n  \"invitation_id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_update_a_repository_ruleset",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/a/repository/ruleset",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "a",
            "repository",
            "ruleset"
          ]
        },
        "description": "Updates an existing repository ruleset, identified by `ruleset id` for a given repository, allowing partial updates to its configuration such as name, target, enforcement, bypass actors, conditions, a",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"name\": \"\",\n  \"repo\": \"\",\n  \"owner\": \"\",\n  \"rules\": \"\",\n  \"target\": \"\",\n  \"ruleset_id\": 0,\n  \"enforcement\": \"\",\n  \"bypass_actors\": \"\",\n  \"conditions__ref__name__exclude\": \"\",\n  \"conditions__ref__name__include\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_update_a_repository_variable",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/a/repository/variable",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "a",
            "repository",
            "variable"
          ]
        },
        "description": "Updates the name and/or value of an existing github actions variable in a repository.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"name\": \"\",\n  \"repo\": \"\",\n  \"owner\": \"\",\n  \"value\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_update_a_repository_webhook",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/a/repository/webhook",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "a",
            "repository",
            "webhook"
          ]
        },
        "description": "Updates the url, content type, secret, ssl verification, events, or active status for an existing repository webhook, specified by `owner`, `repo`, and `hook id`.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"repo\": \"\",\n  \"owner\": \"\",\n  \"active\": false,\n  \"events\": \"\",\n  \"hook_id\": 0,\n  \"add_events\": \"\",\n  \"config__url\": \"\",\n  \"remove_events\": \"\",\n  \"config__secret\": \"\",\n  \"config__content__type\": \"\",\n  \"config__insecure__ssl\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_update_a_review_comment_for_a_pull_request",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/a/review/comment/for/a/pull/request",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "a",
            "review",
            "comment",
            "for",
            "a",
            "pull",
            "request"
          ]
        },
        "description": "Updates the body of an existing review comment on a pull request.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"body\": \"\",\n  \"repo\": \"\",\n  \"owner\": \"\",\n  \"comment_id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_update_a_review_for_a_pull_request",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/a/review/for/a/pull/request",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "a",
            "review",
            "for",
            "a",
            "pull",
            "request"
          ]
        },
        "description": "Updates the body text of an existing pull request review.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"body\": \"\",\n  \"repo\": \"\",\n  \"owner\": \"\",\n  \"review_id\": 0,\n  \"pull_number\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_update_a_team",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/a/team",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "a",
            "team"
          ]
        },
        "description": "Updates a team's settings (e.g., name, description, privacy, parent team) within a github organization, identified by its slug and organization name.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"org\": \"\",\n  \"name\": \"\",\n  \"privacy\": \"\",\n  \"team_slug\": \"\",\n  \"permission\": \"\",\n  \"description\": \"\",\n  \"parent_team_id\": 0,\n  \"notification_setting\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_update_a_webhook_configuration_for_a_repository",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/a/webhook/configuration/for/a/repository",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "a",
            "webhook",
            "configuration",
            "for",
            "a",
            "repository"
          ]
        },
        "description": "Updates the configuration (e.g., payload url, content type, secret, ssl verification) for an existing webhook in a specified repository.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"url\": \"\",\n  \"repo\": \"\",\n  \"owner\": \"\",\n  \"secret\": \"\",\n  \"hook_id\": 0,\n  \"content_type\": \"\",\n  \"insecure_ssl\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_update_a_webhook_configuration_for_an_organization",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/a/webhook/configuration/for/an/organization",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "a",
            "webhook",
            "configuration",
            "for",
            "an",
            "organization"
          ]
        },
        "description": "Updates the configuration (url, content type, secret, ssl verification) for an existing webhook within a specified organization.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"org\": \"\",\n  \"url\": \"\",\n  \"secret\": \"\",\n  \"hook_id\": 0,\n  \"content_type\": \"\",\n  \"insecure_ssl\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_update_an_environment_variable",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/an/environment/variable",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "an",
            "environment",
            "variable"
          ]
        },
        "description": "Updates an existing environment variable's name and/or value in a specific github repository environment; requires providing either a new name or a new value.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"name\": \"\",\n  \"repo\": \"\",\n  \"owner\": \"\",\n  \"value\": \"\",\n  \"environment_name\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_update_an_existing_project_card",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/an/existing/project/card",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "an",
            "existing",
            "project",
            "card"
          ]
        },
        "description": "Updates an existing project card's note and/or archived status, identified by its `card id`.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"note\": \"\",\n  \"card_id\": 0,\n  \"archived\": false\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_update_an_existing_project_column",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/an/existing/project/column",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "an",
            "existing",
            "project",
            "column"
          ]
        },
        "description": "Updates the name of an existing column, identified by `column id`, in a github project (classic).",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"name\": \"\",\n  \"column_id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_update_an_issue",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/an/issue",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "an",
            "issue"
          ]
        },
        "description": "Updates an existing github issue's title, body, state, milestone, labels, or assignees; `state reason` is only processed if `state` also changes, and use `null` or `[]` to clear applicable fields.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"body\": \"\",\n  \"repo\": \"\",\n  \"owner\": \"\",\n  \"state\": \"\",\n  \"title\": \"\",\n  \"labels\": \"\",\n  \"assignee\": \"\",\n  \"assignees\": \"\",\n  \"milestone\": \"\",\n  \"issue_number\": 0,\n  \"state_reason\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_update_an_issue_comment",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/an/issue/comment",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "an",
            "issue",
            "comment"
          ]
        },
        "description": "Updates an existing comment on an issue or pull request within a specified repository.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"body\": \"\",\n  \"repo\": \"\",\n  \"owner\": \"\",\n  \"comment_id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_update_an_organization",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/an/organization",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "an",
            "organization"
          ]
        },
        "description": "Updates an organization's settings; changing security-related fields requires admin, owner, or security manager permissions.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"org\": \"\",\n  \"blog\": \"\",\n  \"name\": \"\",\n  \"email\": \"\",\n  \"company\": \"\",\n  \"location\": \"\",\n  \"description\": \"\",\n  \"billing_email\": \"\",\n  \"twitter_username\": \"\",\n  \"has_repository_projects\": false,\n  \"members_can_create_pages\": false,\n  \"has_organization_projects\": false,\n  \"web_commit_signoff_required\": false,\n  \"default_repository_permission\": \"\",\n  \"members_can_create_public_pages\": false,\n  \"members_can_create_repositories\": false,\n  \"members_can_create_private_pages\": false,\n  \"members_can_fork_private_repositories\": false,\n  \"members_can_create_public_repositories\": false,\n  \"members_can_create_private_repositories\": false,\n  \"members_allowed_repository_creation_type\": \"\",\n  \"members_can_create_internal_repositories\": false,\n  \"secret_scanning_push_protection_custom_link\": \"\",\n  \"secret_scanning_enabled_for_new_repositories\": false,\n  \"dependency_graph_enabled_for_new_repositories\": false,\n  \"advanced_security_enabled_for_new_repositories\": false,\n  \"dependabot_alerts_enabled_for_new_repositories\": false,\n  \"secret_scanning_push_protection_custom_link_enabled\": false,\n  \"dependabot_security_updates_enabled_for_new_repositories\": false,\n  \"secret_scanning_push_protection_enabled_for_new_repositories\": false\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_update_an_organization_variable",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/an/organization/variable",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "an",
            "organization",
            "variable"
          ]
        },
        "description": "Updates an existing github actions organization variable's name, value, or visibility (`all`, `private`, `selected`), requiring `selected repository ids` with valid repository ids if visibility is `se",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"org\": \"\",\n  \"name\": \"\",\n  \"value\": \"\",\n  \"visibility\": \"\",\n  \"selected_repository_ids\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_update_an_organization_webhook",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/an/organization/webhook",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "an",
            "organization",
            "webhook"
          ]
        },
        "description": "Updates the configuration (url, content type, secret, ssl verification), subscribed events, active status, or name of an existing webhook for a specified organization.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"org\": \"\",\n  \"name\": \"\",\n  \"active\": false,\n  \"events\": \"\",\n  \"hook_id\": 0,\n  \"config__url\": \"\",\n  \"config__secret\": \"\",\n  \"config__content__type\": \"\",\n  \"config__insecure__ssl\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_update_branch_protection",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/branch/protection",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "branch",
            "protection"
          ]
        },
        "description": "Updates the protection settings for an existing branch in a repository, which must not contain wildcard characters.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"repo\": \"\",\n  \"owner\": \"\",\n  \"branch\": \"\",\n  \"lock_branch\": false,\n  \"enforce_admins\": false,\n  \"allow_deletions\": false,\n  \"block_creations\": false,\n  \"allow_force_pushes\": false,\n  \"allow_fork_syncing\": false,\n  \"restrictions__apps\": \"\",\n  \"restrictions__teams\": \"\",\n  \"restrictions__users\": \"\",\n  \"required_linear_history\": false,\n  \"required__status__checks__checks\": \"\",\n  \"required__status__checks__strict\": false,\n  \"required_conversation_resolution\": false,\n  \"required__status__checks__contexts\": \"\",\n  \"required__pull__request__reviews__dismiss__stale__reviews\": false,\n  \"required__pull__request__reviews__dismissal__restrictions__apps\": \"\",\n  \"required__pull__request__reviews__require__code__owner__reviews\": false,\n  \"required__pull__request__reviews__require__last__push__approval\": false,\n  \"required__pull__request__reviews__dismissal__restrictions__teams\": \"\",\n  \"required__pull__request__reviews__dismissal__restrictions__users\": \"\",\n  \"required__pull__request__reviews__required__approving__review__count\": 0,\n  \"required__pull__request__reviews__bypass__pull__request__allowances__apps\": \"\",\n  \"required__pull__request__reviews__bypass__pull__request__allowances__teams\": \"\",\n  \"required__pull__request__reviews__bypass__pull__request__allowances__users\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_update_git_lfs_preference",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/git/lfs/preference",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "git",
            "lfs",
            "preference"
          ]
        },
        "description": "Sets the git large file storage (lfs) preference for a repository, typically before initiating a source import.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"repo\": \"\",\n  \"owner\": \"\",\n  \"use_lfs\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_update_information_about_a_github_pages_site",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/information/about/a/github/pages/site",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "information",
            "about",
            "a",
            "github",
            "pages",
            "site"
          ]
        },
        "description": "Updates the configuration for a github pages site (e.g., custom domain, https, build type, source); requires github pages to be enabled for the repository, and if `build type` is 'workflow', a corresp",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"repo\": \"\",\n  \"cname\": \"\",\n  \"owner\": \"\",\n  \"source\": \"\",\n  \"build_type\": \"\",\n  \"https_enforced\": false\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_update_pull_request_review_protection",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/pull/request/review/protection",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "pull",
            "request",
            "review",
            "protection"
          ]
        },
        "description": "Updates pull request review protection settings (e.g., required approvals, review dismissal, bypass allowances) for a branch; branch protection features must be available for the repository.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"repo\": \"\",\n  \"owner\": \"\",\n  \"branch\": \"\",\n  \"dismiss_stale_reviews\": false,\n  \"require_code_owner_reviews\": false,\n  \"require_last_push_approval\": false,\n  \"dismissal__restrictions__apps\": \"\",\n  \"dismissal__restrictions__teams\": \"\",\n  \"dismissal__restrictions__users\": \"\",\n  \"required_approving_review_count\": 0,\n  \"bypass__pull__request__allowances__apps\": \"\",\n  \"bypass__pull__request__allowances__teams\": \"\",\n  \"bypass__pull__request__allowances__users\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_update_repository_preferences_for_check_suites",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/repository/preferences/for/check/suites",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "repository",
            "preferences",
            "for",
            "check",
            "suites"
          ]
        },
        "description": "Updates repository preferences for automatic check suite creation on code pushes, allowing configuration for specific github apps that must be installed on the repository with `checks:write` permissio",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"repo\": \"\",\n  \"owner\": \"\",\n  \"auto_trigger_checks\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_update_resource_access_with_tokens",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/resource/access/with/tokens",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "resource",
            "access",
            "with",
            "tokens"
          ]
        },
        "description": "Revokes organization access for the personal access tokens identified by `pat ids`; this action must be performed by a github app, and `pat ids` must be valid and associated with the organization.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"org\": \"\",\n  \"action\": \"\",\n  \"pat_ids\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_update_status_check_protection",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/status/check/protection",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "status",
            "check",
            "protection"
          ]
        },
        "description": "Updates required status checks for a branch, optionally requiring it to be up-to-date before merging.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"repo\": \"\",\n  \"owner\": \"\",\n  \"branch\": \"\",\n  \"checks\": \"\",\n  \"strict\": false,\n  \"contexts\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_update_the_authenticated_user",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/the/authenticated/user",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "the",
            "authenticated",
            "user"
          ]
        },
        "description": "Updates the authenticated user's github profile; a new public email must be verified, and existing private emails remain private even if specified.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"bio\": \"\",\n  \"blog\": \"\",\n  \"name\": \"\",\n  \"email\": \"\",\n  \"company\": \"\",\n  \"hireable\": false,\n  \"location\": \"\",\n  \"twitter_username\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_update_token_org_access",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/token/org/access",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "token",
            "org",
            "access"
          ]
        },
        "description": "Revokes a fine-grained personal access token's access to an organization, usable only by github apps when the token has existing access to that organization.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"org\": \"\",\n  \"action\": \"\",\n  \"pat_id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_upload_an_analysis_as_sarif_data",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/upload/an/analysis/as/sarif/data",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "upload",
            "an",
            "analysis",
            "as",
            "sarif",
            "data"
          ]
        },
        "description": "Uploads a gzipped and base64 encoded sarif file to a github repository for a specific commit and reference; use `checkout uri` if sarif paths are absolute.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"ref\": \"\",\n  \"repo\": \"\",\n  \"owner\": \"\",\n  \"sarif\": \"\",\n  \"validate\": false,\n  \"tool_name\": \"\",\n  \"commit_sha\": \"\",\n  \"started_at\": \"\",\n  \"checkout_uri\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_users_get_authenticated",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/users/get/authenticated",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "users",
            "get",
            "authenticated"
          ]
        },
        "description": "[deprecated] retrieves the authenticated user's information; use `get the authenticated user` instead.",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_users_get_by_username",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/users/get/by/username",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "users",
            "get",
            "by",
            "username"
          ]
        },
        "description": "Deprecated: use the `getauser` action to retrieve a github user's public profile by username.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"username\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_users_get_context_for_user",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/users/get/context/for/user",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "users",
            "get",
            "context",
            "for",
            "user"
          ]
        },
        "description": "Retrieves contextual hovercard information for a github user. (deprecated: please use the `get contextual information for a user` action instead).",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"username\": \"\",\n  \"subject_id\": \"\",\n  \"subject_type\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_users_list_followers_for_authenticated_user",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/users/list/followers/for/authenticated/user",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "users",
            "list",
            "followers",
            "for",
            "authenticated",
            "user"
          ]
        },
        "description": "Deprecated: lists users following the authenticated github user; use `list followers of the authenticated user` instead.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"page\": 0,\n  \"per_page\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_users_list_public_emails_for_authenticated_user",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/users/list/public/emails/for/authenticated/user",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "users",
            "list",
            "public",
            "emails",
            "for",
            "authenticated",
            "user"
          ]
        },
        "description": "Deprecated: use `listpublicemailaddressesfortheauthenticateduser` instead; lists public email addresses for the authenticated user.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"page\": 0,\n  \"per_page\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_users_list_social_accounts_for_user",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/users/list/social/accounts/for/user",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "users",
            "list",
            "social",
            "accounts",
            "for",
            "user"
          ]
        },
        "description": "Deprecated: lists social media accounts for an existing github user; use 'list social accounts for a user' instead.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"page\": 0,\n  \"per_page\": 0,\n  \"username\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "github_verify_dev_container_permissions_accepted",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/verify/dev/container/permissions/accepted",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "verify",
            "dev",
            "container",
            "permissions",
            "accepted"
          ]
        },
        "description": "Verifies if the authenticated user has accepted permissions for a specific devcontainer configuration in a repository, typically to ensure awareness before a codespace is created or used.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"ref\": \"\",\n  \"repo\": \"\",\n  \"owner\": \"\",\n  \"devcontainer_path\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    }
  ]
}