├── .github ├── FUNDING.yml ├── dependabot.yml └── workflows │ ├── release-plz.yml │ └── rust.yml ├── .gitignore ├── CHANGELOG.md ├── Cargo.toml ├── LICENCE-APACHE ├── LICENCE-MIT ├── README.md ├── examples ├── create_a_gist.rs ├── create_org_secret.rs ├── create_repo_from_template.rs ├── create_repo_secret.rs ├── custom_client.rs ├── delete_repo.rs ├── device_flow.rs ├── get_code_scanning_alerts.rs ├── get_commit.rs ├── get_content.rs ├── get_dependabot_alerts.rs ├── get_rate_limit.rs ├── get_repo.rs ├── get_secret_scanning_alerts.rs ├── github_app_authentication.rs ├── github_app_authentication_manual.rs ├── github_schema.graphql ├── graphql_issues.rs ├── is_collab.rs ├── issues_query.graphql ├── list_all_workflow_runs.rs ├── list_forks.rs ├── list_gists_for_token_holder.rs ├── list_org_self_hosted_runners.rs ├── list_repos_for_authenticated_user.rs ├── list_repos_starred_by_authenticated_user.rs ├── merge_branch.rs ├── notifications.rs ├── paging_results.rs ├── poll_events.rs ├── poll_org_events.rs ├── poll_repo_events.rs ├── print_license.rs ├── print_pr_diff.rs ├── render_markdown.rs ├── search_issues.rs ├── star_unstar_a_gist.rs ├── unlock.rs └── update_pull_request_branch.rs ├── release-plz.toml ├── src ├── api.rs ├── api │ ├── actions.rs │ ├── actions │ │ └── self_hosted_runners.rs │ ├── activity.rs │ ├── activity │ │ └── notifications.rs │ ├── apps.rs │ ├── apps │ │ └── installations.rs │ ├── checks.rs │ ├── classroom.rs │ ├── classroom │ │ ├── assignments.rs │ │ └── classroom.rs │ ├── code_scannings.rs │ ├── code_scannings │ │ ├── list.rs │ │ └── update.rs │ ├── commits.rs │ ├── commits │ │ ├── associated_check_runs.rs │ │ ├── associated_pull_requests.rs │ │ ├── compare_commit.rs │ │ └── create_comment.rs │ ├── current.rs │ ├── events.rs │ ├── gists.rs │ ├── gists │ │ ├── list_commits.rs │ │ ├── list_forks.rs │ │ └── list_gists.rs │ ├── gitignore.rs │ ├── hooks.rs │ ├── hooks │ │ ├── list_deliveries.rs │ │ └── retry_delivery.rs │ ├── issues.rs │ ├── issues │ │ ├── create.rs │ │ ├── list.rs │ │ ├── list_labels.rs │ │ └── update.rs │ ├── licenses.rs │ ├── markdown.rs │ ├── orgs.rs │ ├── orgs │ │ ├── events.rs │ │ ├── list_members.rs │ │ ├── list_repos.rs │ │ └── secrets.rs │ ├── projects.rs │ ├── projects │ │ └── projects.rs │ ├── pulls.rs │ ├── pulls │ │ ├── comment.rs │ │ ├── create.rs │ │ ├── list.rs │ │ ├── merge.rs │ │ ├── specific_pr.rs │ │ ├── specific_pr │ │ │ ├── pr_comment.rs │ │ │ ├── pr_commit.rs │ │ │ ├── pr_reviews.rs │ │ │ └── pr_reviews │ │ │ │ ├── specific_review.rs │ │ │ │ └── specific_review │ │ │ │ └── list_comments.rs │ │ └── update.rs │ ├── ratelimit.rs │ ├── repos.rs │ ├── repos │ │ ├── branches.rs │ │ ├── collaborators.rs │ │ ├── commits.rs │ │ ├── contributors.rs │ │ ├── dependabot.rs │ │ ├── events.rs │ │ ├── file.rs │ │ ├── forks.rs │ │ ├── generate.rs │ │ ├── merges.rs │ │ ├── pulls.rs │ │ ├── release_assets.rs │ │ ├── releases.rs │ │ ├── secret_scanning_alerts.rs │ │ ├── secrets.rs │ │ ├── stargazers.rs │ │ ├── status.rs │ │ ├── tags.rs │ │ └── teams.rs │ ├── search.rs │ ├── teams.rs │ ├── teams │ │ ├── children.rs │ │ ├── create.rs │ │ ├── edit.rs │ │ ├── invitations.rs │ │ ├── list.rs │ │ ├── members.rs │ │ └── team_repos.rs │ ├── users.rs │ ├── users │ │ ├── follow.rs │ │ ├── user_blocks.rs │ │ ├── user_emails.rs │ │ ├── user_git_ssh_keys.rs │ │ ├── user_gpg_keys.rs │ │ ├── user_repos.rs │ │ ├── user_social_accounts.rs │ │ └── user_ssh_signing_keys.rs │ └── workflows.rs ├── auth.rs ├── body.rs ├── error.rs ├── etag.rs ├── from_response.rs ├── lib.rs ├── models.rs ├── models │ ├── actions.rs │ ├── activity.rs │ ├── apps.rs │ ├── checks.rs │ ├── classroom.rs │ ├── code_scannings.rs │ ├── commits.rs │ ├── date_serde.rs │ ├── events.rs │ ├── events │ │ ├── payload.rs │ │ └── payload │ │ │ ├── commit_comment.rs │ │ │ ├── create.rs │ │ │ ├── delete.rs │ │ │ ├── fork.rs │ │ │ ├── gollum.rs │ │ │ ├── installation.rs │ │ │ ├── installation_repositories.rs │ │ │ ├── installation_target.rs │ │ │ ├── issue_comment.rs │ │ │ ├── issues.rs │ │ │ ├── member.rs │ │ │ ├── public.rs │ │ │ ├── pull_request.rs │ │ │ ├── pull_request_review.rs │ │ │ ├── pull_request_review_comment.rs │ │ │ ├── push.rs │ │ │ ├── release.rs │ │ │ ├── watch.rs │ │ │ └── workflow_run.rs │ ├── gists.rs │ ├── hooks.rs │ ├── interaction_limits.rs │ ├── issues.rs │ ├── orgs.rs │ ├── orgs │ │ └── secrets.rs │ ├── pulls.rs │ ├── reactions.rs │ ├── repos.rs │ ├── repos │ │ ├── dependabot.rs │ │ ├── secret_scanning_alert.rs │ │ └── secrets.rs │ ├── teams.rs │ ├── timelines.rs │ ├── webhook_events.rs │ ├── webhook_events │ │ ├── payload.rs │ │ └── payload │ │ │ ├── branch_protection_rule.rs │ │ │ ├── check_run.rs │ │ │ ├── check_suite.rs │ │ │ ├── code_scanning_alert.rs │ │ │ ├── commit_comment.rs │ │ │ ├── create.rs │ │ │ ├── delete.rs │ │ │ ├── dependabot_alert.rs │ │ │ ├── deploy_key.rs │ │ │ ├── deployment.rs │ │ │ ├── deployment_protection_rule.rs │ │ │ ├── deployment_status.rs │ │ │ ├── discussion.rs │ │ │ ├── discussion_comment.rs │ │ │ ├── fork.rs │ │ │ ├── github_app_authorization.rs │ │ │ ├── gollum.rs │ │ │ ├── installation.rs │ │ │ ├── installation_repositories.rs │ │ │ ├── installation_target.rs │ │ │ ├── issue_comment.rs │ │ │ ├── issues.rs │ │ │ ├── label.rs │ │ │ ├── marketplace_purchase.rs │ │ │ ├── member.rs │ │ │ ├── membership.rs │ │ │ ├── merge_group.rs │ │ │ ├── meta.rs │ │ │ ├── milestone.rs │ │ │ ├── org_block.rs │ │ │ ├── organization.rs │ │ │ ├── package.rs │ │ │ ├── page_build.rs │ │ │ ├── personal_access_token_request.rs │ │ │ ├── ping.rs │ │ │ ├── project.rs │ │ │ ├── project_card.rs │ │ │ ├── project_column.rs │ │ │ ├── projects_v2.rs │ │ │ ├── projects_v2_item.rs │ │ │ ├── public.rs │ │ │ ├── pull_request.rs │ │ │ ├── pull_request_review.rs │ │ │ ├── pull_request_review_comment.rs │ │ │ ├── pull_request_review_thread.rs │ │ │ ├── push.rs │ │ │ ├── registry_package.rs │ │ │ ├── release.rs │ │ │ ├── repository.rs │ │ │ ├── repository_advisory.rs │ │ │ ├── repository_dispatch.rs │ │ │ ├── repository_import.rs │ │ │ ├── repository_vulnerability_alert.rs │ │ │ ├── schedule.rs │ │ │ ├── secret_scanning_alert.rs │ │ │ ├── secret_scanning_alert_location.rs │ │ │ ├── security_advisory.rs │ │ │ ├── security_and_analysis.rs │ │ │ ├── sponsorship.rs │ │ │ ├── star.rs │ │ │ ├── status.rs │ │ │ ├── team.rs │ │ │ ├── team_add.rs │ │ │ ├── watch.rs │ │ │ ├── workflow_dispatch.rs │ │ │ ├── workflow_job.rs │ │ │ └── workflow_run.rs │ └── workflows.rs ├── page.rs ├── params.rs └── service │ ├── middleware │ ├── auth_header.rs │ ├── base_uri.rs │ ├── extra_headers.rs │ ├── mod.rs │ └── retry.rs │ └── mod.rs └── tests ├── actions_add_selected_repo_to_org_secret_test.rs ├── actions_delete_workflow_run_logs_test.rs ├── actions_remove_selected_repo_from_org_secret_test.rs ├── actions_self_hosted_runners.rs ├── actions_workflows_dispatches_test.rs ├── check_suites.rs ├── classroom_assignments_tests.rs ├── classroom_classrooms_tests.rs ├── code_scanning_alert_update_test.rs ├── code_scanning_alerts_list_test.rs ├── code_scanning_analysis_test.rs ├── commit_associated_check_runs_tests.rs ├── current_user_orgs_test.rs ├── dependabot_alerts_test.rs ├── events_test.rs ├── follow_redirect.rs ├── generate_release_notes_test.rs ├── gists_test.rs ├── hooks_delivery_list.rs ├── interactions.rs ├── issues_check_assignee_test.rs ├── issues_comments_delete_test.rs ├── issues_comments_reactions_delete_test.rs ├── issues_labels_delete_test.rs ├── issues_locking_test.rs ├── issues_reactions_delete_test.rs ├── issues_timeline_tests.rs ├── mock_error.rs ├── notifications_threads_test.rs ├── org_installations_test.rs ├── org_members_tests.rs ├── org_secrets_test.rs ├── projects_org_create_project_test.rs ├── projects_org_list_projects_test.rs ├── projects_project_delete_test.rs ├── projects_project_get_test.rs ├── projects_project_update_test.rs ├── projects_repo_create_project_test.rs ├── projects_repo_list_projects_test.rs ├── projects_user_create_project_test.rs ├── projects_user_list_projects_test.rs ├── pull_request_commits_test.rs ├── pull_request_review_comment_test.rs ├── pull_request_review_operations_test.rs ├── repo_contributors_test.rs ├── repo_delete_ref_test.rs ├── repo_secrets_test.rs ├── repos_commit_test.rs ├── repos_delete_test.rs ├── repos_events_test.rs ├── repos_is_collaborator_test.rs ├── repos_merges_test.rs ├── repos_releases_get_by_id.rs ├── repos_releases_get_by_tag.rs ├── repos_releases_get_latest.rs ├── repos_releases_list_test.rs ├── repos_stargazers_tests.rs ├── resources ├── check_dependabot_alerts.json ├── check_run_annotations.json ├── check_secrets_alerts.json ├── check_secrets_alerts_locations.json ├── check_suite.json ├── check_suite_preferences.json ├── classroom_get_assignment.json ├── classroom_get_classroom.json ├── classroom_get_grades.json ├── classroom_list_accepted.json ├── classroom_list_assignments.json ├── classroom_list_classrooms.json ├── codescanning_alert_error.json ├── codescanning_alert_single.json ├── codescanning_alerts_multiple.json ├── commit_check_runs.json ├── commit_comment_created_webhook_event.json ├── commit_comment_event.json ├── create_event.json ├── create_event_with_null_description.json ├── delete_event.json ├── fork_event.json ├── generate_release_notes.json ├── get_pull_request_review.json ├── get_pull_request_review_comments.json ├── gollum_event.json ├── hooks_delivery_list.json ├── installation_created_webhook_event.json ├── installation_deleted_webhook_event.json ├── installation_event.json ├── installation_new_permissions_accepted_webhook_event.json ├── installation_repositories_removed_webhook_event.json ├── interactions.json ├── issue_comment_created_webhook_event.json ├── issue_comment_deleted_webhook_event.json ├── issue_comment_edited_webhook_event.json ├── issue_comment_event.json ├── issues_event.json ├── issues_labeled_webhook_event.json ├── issues_list_timeline_events.json ├── issues_opened_webhook_event.json ├── issues_remove_label.json ├── list_check_suites_for_ref.json ├── member_event.json ├── org_members.json ├── org_public_key.json ├── org_secret.json ├── org_secrets.json ├── orgs_installation_event.json ├── ping_webhook_event.json ├── project.json ├── projects.json ├── public_event.json ├── pull_request_closed_webhook_event.json ├── pull_request_commits.json ├── pull_request_commits_empty_author_object.json ├── pull_request_event.json ├── pull_request_opened_webhook_event.json ├── pull_request_review_comment.json ├── pull_request_review_comment_event.json ├── pull_request_review_event.json ├── pull_request_synchronize_webhook_event.json ├── push_event.json ├── push_webhook_event.json ├── release_event.json ├── repo_contributors.json ├── repo_public_key.json ├── repo_secret.json ├── repo_secrets.json ├── repos_list_commits.json ├── repos_merges_201.json ├── repos_releases_get_by_id.json ├── repos_releases_get_by_tag.json ├── repos_releases_get_latest.json ├── repos_releases_list.json ├── repository_deleted_webhook_event.json ├── self_hosted_runner.json ├── self_hosted_runner_token.json ├── self_hosted_runners.json ├── stargazers.json ├── team_invitations.json ├── team_members.json ├── unknown_event.json ├── user_blocks.json ├── user_data.json ├── user_emails.json ├── user_git_ssh_key_created.json ├── user_git_ssh_keys.json ├── user_gpg_key_created.json ├── user_gpg_keys.json ├── user_membership_orgs_event.json ├── user_projects.json ├── user_repositories.json ├── user_social_accounts.json ├── user_ssh_signing_key_created.json ├── user_ssh_signing_keys.json ├── watch_event.json ├── workflow_run_event.json └── workflow_run_event_no_organization.json ├── secrets_alerts_test.rs ├── team_delete_test.rs ├── team_invitations_tests.rs ├── team_members_tests.rs ├── team_repos_tests.rs ├── user_blocks_tests.rs ├── user_deserialize_test.rs ├── user_emails_tests.rs ├── user_git_ssh_keys_tests.rs ├── user_gpg_keys_tests.rs ├── user_repositories_tests.rs ├── user_social_accounts_tests.rs └── user_ssh_signing_keys_tests.rs /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | # These are supported funding model platforms 2 | 3 | github: XAMPPRocky 4 | -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XAMPPRocky/octocrab/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/release-plz.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XAMPPRocky/octocrab/HEAD/.github/workflows/release-plz.yml -------------------------------------------------------------------------------- /.github/workflows/rust.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XAMPPRocky/octocrab/HEAD/.github/workflows/rust.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /Cargo.lock 2 | /target 3 | .idea 4 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XAMPPRocky/octocrab/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XAMPPRocky/octocrab/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENCE-APACHE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XAMPPRocky/octocrab/HEAD/LICENCE-APACHE -------------------------------------------------------------------------------- /LICENCE-MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XAMPPRocky/octocrab/HEAD/LICENCE-MIT -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XAMPPRocky/octocrab/HEAD/README.md -------------------------------------------------------------------------------- /examples/create_a_gist.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XAMPPRocky/octocrab/HEAD/examples/create_a_gist.rs -------------------------------------------------------------------------------- /examples/create_org_secret.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XAMPPRocky/octocrab/HEAD/examples/create_org_secret.rs -------------------------------------------------------------------------------- /examples/create_repo_from_template.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XAMPPRocky/octocrab/HEAD/examples/create_repo_from_template.rs -------------------------------------------------------------------------------- /examples/create_repo_secret.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XAMPPRocky/octocrab/HEAD/examples/create_repo_secret.rs -------------------------------------------------------------------------------- /examples/custom_client.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XAMPPRocky/octocrab/HEAD/examples/custom_client.rs -------------------------------------------------------------------------------- /examples/delete_repo.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XAMPPRocky/octocrab/HEAD/examples/delete_repo.rs -------------------------------------------------------------------------------- /examples/device_flow.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XAMPPRocky/octocrab/HEAD/examples/device_flow.rs -------------------------------------------------------------------------------- /examples/get_code_scanning_alerts.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XAMPPRocky/octocrab/HEAD/examples/get_code_scanning_alerts.rs -------------------------------------------------------------------------------- /examples/get_commit.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XAMPPRocky/octocrab/HEAD/examples/get_commit.rs -------------------------------------------------------------------------------- /examples/get_content.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XAMPPRocky/octocrab/HEAD/examples/get_content.rs -------------------------------------------------------------------------------- /examples/get_dependabot_alerts.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XAMPPRocky/octocrab/HEAD/examples/get_dependabot_alerts.rs -------------------------------------------------------------------------------- /examples/get_rate_limit.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XAMPPRocky/octocrab/HEAD/examples/get_rate_limit.rs -------------------------------------------------------------------------------- /examples/get_repo.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XAMPPRocky/octocrab/HEAD/examples/get_repo.rs -------------------------------------------------------------------------------- /examples/get_secret_scanning_alerts.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XAMPPRocky/octocrab/HEAD/examples/get_secret_scanning_alerts.rs -------------------------------------------------------------------------------- /examples/github_app_authentication.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XAMPPRocky/octocrab/HEAD/examples/github_app_authentication.rs -------------------------------------------------------------------------------- /examples/github_app_authentication_manual.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XAMPPRocky/octocrab/HEAD/examples/github_app_authentication_manual.rs -------------------------------------------------------------------------------- /examples/github_schema.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XAMPPRocky/octocrab/HEAD/examples/github_schema.graphql -------------------------------------------------------------------------------- /examples/graphql_issues.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XAMPPRocky/octocrab/HEAD/examples/graphql_issues.rs -------------------------------------------------------------------------------- /examples/is_collab.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XAMPPRocky/octocrab/HEAD/examples/is_collab.rs -------------------------------------------------------------------------------- /examples/issues_query.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XAMPPRocky/octocrab/HEAD/examples/issues_query.graphql -------------------------------------------------------------------------------- /examples/list_all_workflow_runs.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XAMPPRocky/octocrab/HEAD/examples/list_all_workflow_runs.rs -------------------------------------------------------------------------------- /examples/list_forks.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XAMPPRocky/octocrab/HEAD/examples/list_forks.rs -------------------------------------------------------------------------------- /examples/list_gists_for_token_holder.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XAMPPRocky/octocrab/HEAD/examples/list_gists_for_token_holder.rs -------------------------------------------------------------------------------- /examples/list_org_self_hosted_runners.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XAMPPRocky/octocrab/HEAD/examples/list_org_self_hosted_runners.rs -------------------------------------------------------------------------------- /examples/list_repos_for_authenticated_user.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XAMPPRocky/octocrab/HEAD/examples/list_repos_for_authenticated_user.rs -------------------------------------------------------------------------------- /examples/list_repos_starred_by_authenticated_user.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XAMPPRocky/octocrab/HEAD/examples/list_repos_starred_by_authenticated_user.rs -------------------------------------------------------------------------------- /examples/merge_branch.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XAMPPRocky/octocrab/HEAD/examples/merge_branch.rs -------------------------------------------------------------------------------- /examples/notifications.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XAMPPRocky/octocrab/HEAD/examples/notifications.rs -------------------------------------------------------------------------------- /examples/paging_results.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XAMPPRocky/octocrab/HEAD/examples/paging_results.rs -------------------------------------------------------------------------------- /examples/poll_events.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XAMPPRocky/octocrab/HEAD/examples/poll_events.rs -------------------------------------------------------------------------------- /examples/poll_org_events.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XAMPPRocky/octocrab/HEAD/examples/poll_org_events.rs -------------------------------------------------------------------------------- /examples/poll_repo_events.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XAMPPRocky/octocrab/HEAD/examples/poll_repo_events.rs -------------------------------------------------------------------------------- /examples/print_license.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XAMPPRocky/octocrab/HEAD/examples/print_license.rs -------------------------------------------------------------------------------- /examples/print_pr_diff.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XAMPPRocky/octocrab/HEAD/examples/print_pr_diff.rs -------------------------------------------------------------------------------- /examples/render_markdown.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XAMPPRocky/octocrab/HEAD/examples/render_markdown.rs -------------------------------------------------------------------------------- /examples/search_issues.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XAMPPRocky/octocrab/HEAD/examples/search_issues.rs -------------------------------------------------------------------------------- /examples/star_unstar_a_gist.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XAMPPRocky/octocrab/HEAD/examples/star_unstar_a_gist.rs -------------------------------------------------------------------------------- /examples/unlock.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XAMPPRocky/octocrab/HEAD/examples/unlock.rs -------------------------------------------------------------------------------- /examples/update_pull_request_branch.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XAMPPRocky/octocrab/HEAD/examples/update_pull_request_branch.rs -------------------------------------------------------------------------------- /release-plz.toml: -------------------------------------------------------------------------------- 1 | [workspace] 2 | pr_labels = ["release"] 3 | -------------------------------------------------------------------------------- /src/api.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XAMPPRocky/octocrab/HEAD/src/api.rs -------------------------------------------------------------------------------- /src/api/actions.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XAMPPRocky/octocrab/HEAD/src/api/actions.rs -------------------------------------------------------------------------------- /src/api/actions/self_hosted_runners.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XAMPPRocky/octocrab/HEAD/src/api/actions/self_hosted_runners.rs -------------------------------------------------------------------------------- /src/api/activity.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XAMPPRocky/octocrab/HEAD/src/api/activity.rs -------------------------------------------------------------------------------- /src/api/activity/notifications.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XAMPPRocky/octocrab/HEAD/src/api/activity/notifications.rs -------------------------------------------------------------------------------- /src/api/apps.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XAMPPRocky/octocrab/HEAD/src/api/apps.rs -------------------------------------------------------------------------------- /src/api/apps/installations.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XAMPPRocky/octocrab/HEAD/src/api/apps/installations.rs -------------------------------------------------------------------------------- /src/api/checks.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XAMPPRocky/octocrab/HEAD/src/api/checks.rs -------------------------------------------------------------------------------- /src/api/classroom.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XAMPPRocky/octocrab/HEAD/src/api/classroom.rs -------------------------------------------------------------------------------- /src/api/classroom/assignments.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XAMPPRocky/octocrab/HEAD/src/api/classroom/assignments.rs -------------------------------------------------------------------------------- /src/api/classroom/classroom.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XAMPPRocky/octocrab/HEAD/src/api/classroom/classroom.rs -------------------------------------------------------------------------------- /src/api/code_scannings.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XAMPPRocky/octocrab/HEAD/src/api/code_scannings.rs -------------------------------------------------------------------------------- /src/api/code_scannings/list.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XAMPPRocky/octocrab/HEAD/src/api/code_scannings/list.rs -------------------------------------------------------------------------------- /src/api/code_scannings/update.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XAMPPRocky/octocrab/HEAD/src/api/code_scannings/update.rs -------------------------------------------------------------------------------- /src/api/commits.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XAMPPRocky/octocrab/HEAD/src/api/commits.rs -------------------------------------------------------------------------------- /src/api/commits/associated_check_runs.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XAMPPRocky/octocrab/HEAD/src/api/commits/associated_check_runs.rs -------------------------------------------------------------------------------- /src/api/commits/associated_pull_requests.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XAMPPRocky/octocrab/HEAD/src/api/commits/associated_pull_requests.rs -------------------------------------------------------------------------------- /src/api/commits/compare_commit.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XAMPPRocky/octocrab/HEAD/src/api/commits/compare_commit.rs -------------------------------------------------------------------------------- /src/api/commits/create_comment.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XAMPPRocky/octocrab/HEAD/src/api/commits/create_comment.rs -------------------------------------------------------------------------------- /src/api/current.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XAMPPRocky/octocrab/HEAD/src/api/current.rs -------------------------------------------------------------------------------- /src/api/events.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XAMPPRocky/octocrab/HEAD/src/api/events.rs -------------------------------------------------------------------------------- /src/api/gists.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XAMPPRocky/octocrab/HEAD/src/api/gists.rs -------------------------------------------------------------------------------- /src/api/gists/list_commits.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XAMPPRocky/octocrab/HEAD/src/api/gists/list_commits.rs -------------------------------------------------------------------------------- /src/api/gists/list_forks.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XAMPPRocky/octocrab/HEAD/src/api/gists/list_forks.rs -------------------------------------------------------------------------------- /src/api/gists/list_gists.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XAMPPRocky/octocrab/HEAD/src/api/gists/list_gists.rs -------------------------------------------------------------------------------- /src/api/gitignore.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XAMPPRocky/octocrab/HEAD/src/api/gitignore.rs -------------------------------------------------------------------------------- /src/api/hooks.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XAMPPRocky/octocrab/HEAD/src/api/hooks.rs -------------------------------------------------------------------------------- /src/api/hooks/list_deliveries.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XAMPPRocky/octocrab/HEAD/src/api/hooks/list_deliveries.rs -------------------------------------------------------------------------------- /src/api/hooks/retry_delivery.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XAMPPRocky/octocrab/HEAD/src/api/hooks/retry_delivery.rs -------------------------------------------------------------------------------- /src/api/issues.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XAMPPRocky/octocrab/HEAD/src/api/issues.rs -------------------------------------------------------------------------------- /src/api/issues/create.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XAMPPRocky/octocrab/HEAD/src/api/issues/create.rs -------------------------------------------------------------------------------- /src/api/issues/list.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XAMPPRocky/octocrab/HEAD/src/api/issues/list.rs -------------------------------------------------------------------------------- /src/api/issues/list_labels.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XAMPPRocky/octocrab/HEAD/src/api/issues/list_labels.rs -------------------------------------------------------------------------------- /src/api/issues/update.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XAMPPRocky/octocrab/HEAD/src/api/issues/update.rs -------------------------------------------------------------------------------- /src/api/licenses.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XAMPPRocky/octocrab/HEAD/src/api/licenses.rs -------------------------------------------------------------------------------- /src/api/markdown.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XAMPPRocky/octocrab/HEAD/src/api/markdown.rs -------------------------------------------------------------------------------- /src/api/orgs.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XAMPPRocky/octocrab/HEAD/src/api/orgs.rs -------------------------------------------------------------------------------- /src/api/orgs/events.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XAMPPRocky/octocrab/HEAD/src/api/orgs/events.rs -------------------------------------------------------------------------------- /src/api/orgs/list_members.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XAMPPRocky/octocrab/HEAD/src/api/orgs/list_members.rs -------------------------------------------------------------------------------- /src/api/orgs/list_repos.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XAMPPRocky/octocrab/HEAD/src/api/orgs/list_repos.rs -------------------------------------------------------------------------------- /src/api/orgs/secrets.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XAMPPRocky/octocrab/HEAD/src/api/orgs/secrets.rs -------------------------------------------------------------------------------- /src/api/projects.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XAMPPRocky/octocrab/HEAD/src/api/projects.rs -------------------------------------------------------------------------------- /src/api/projects/projects.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XAMPPRocky/octocrab/HEAD/src/api/projects/projects.rs -------------------------------------------------------------------------------- /src/api/pulls.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XAMPPRocky/octocrab/HEAD/src/api/pulls.rs -------------------------------------------------------------------------------- /src/api/pulls/comment.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XAMPPRocky/octocrab/HEAD/src/api/pulls/comment.rs -------------------------------------------------------------------------------- /src/api/pulls/create.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XAMPPRocky/octocrab/HEAD/src/api/pulls/create.rs -------------------------------------------------------------------------------- /src/api/pulls/list.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XAMPPRocky/octocrab/HEAD/src/api/pulls/list.rs -------------------------------------------------------------------------------- /src/api/pulls/merge.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XAMPPRocky/octocrab/HEAD/src/api/pulls/merge.rs -------------------------------------------------------------------------------- /src/api/pulls/specific_pr.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XAMPPRocky/octocrab/HEAD/src/api/pulls/specific_pr.rs -------------------------------------------------------------------------------- /src/api/pulls/specific_pr/pr_comment.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XAMPPRocky/octocrab/HEAD/src/api/pulls/specific_pr/pr_comment.rs -------------------------------------------------------------------------------- /src/api/pulls/specific_pr/pr_commit.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XAMPPRocky/octocrab/HEAD/src/api/pulls/specific_pr/pr_commit.rs -------------------------------------------------------------------------------- /src/api/pulls/specific_pr/pr_reviews.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XAMPPRocky/octocrab/HEAD/src/api/pulls/specific_pr/pr_reviews.rs -------------------------------------------------------------------------------- /src/api/pulls/specific_pr/pr_reviews/specific_review.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XAMPPRocky/octocrab/HEAD/src/api/pulls/specific_pr/pr_reviews/specific_review.rs -------------------------------------------------------------------------------- /src/api/pulls/specific_pr/pr_reviews/specific_review/list_comments.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XAMPPRocky/octocrab/HEAD/src/api/pulls/specific_pr/pr_reviews/specific_review/list_comments.rs -------------------------------------------------------------------------------- /src/api/pulls/update.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XAMPPRocky/octocrab/HEAD/src/api/pulls/update.rs -------------------------------------------------------------------------------- /src/api/ratelimit.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XAMPPRocky/octocrab/HEAD/src/api/ratelimit.rs -------------------------------------------------------------------------------- /src/api/repos.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XAMPPRocky/octocrab/HEAD/src/api/repos.rs -------------------------------------------------------------------------------- /src/api/repos/branches.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XAMPPRocky/octocrab/HEAD/src/api/repos/branches.rs -------------------------------------------------------------------------------- /src/api/repos/collaborators.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XAMPPRocky/octocrab/HEAD/src/api/repos/collaborators.rs -------------------------------------------------------------------------------- /src/api/repos/commits.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XAMPPRocky/octocrab/HEAD/src/api/repos/commits.rs -------------------------------------------------------------------------------- /src/api/repos/contributors.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XAMPPRocky/octocrab/HEAD/src/api/repos/contributors.rs -------------------------------------------------------------------------------- /src/api/repos/dependabot.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XAMPPRocky/octocrab/HEAD/src/api/repos/dependabot.rs -------------------------------------------------------------------------------- /src/api/repos/events.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XAMPPRocky/octocrab/HEAD/src/api/repos/events.rs -------------------------------------------------------------------------------- /src/api/repos/file.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XAMPPRocky/octocrab/HEAD/src/api/repos/file.rs -------------------------------------------------------------------------------- /src/api/repos/forks.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XAMPPRocky/octocrab/HEAD/src/api/repos/forks.rs -------------------------------------------------------------------------------- /src/api/repos/generate.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XAMPPRocky/octocrab/HEAD/src/api/repos/generate.rs -------------------------------------------------------------------------------- /src/api/repos/merges.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XAMPPRocky/octocrab/HEAD/src/api/repos/merges.rs -------------------------------------------------------------------------------- /src/api/repos/pulls.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XAMPPRocky/octocrab/HEAD/src/api/repos/pulls.rs -------------------------------------------------------------------------------- /src/api/repos/release_assets.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XAMPPRocky/octocrab/HEAD/src/api/repos/release_assets.rs -------------------------------------------------------------------------------- /src/api/repos/releases.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XAMPPRocky/octocrab/HEAD/src/api/repos/releases.rs -------------------------------------------------------------------------------- /src/api/repos/secret_scanning_alerts.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XAMPPRocky/octocrab/HEAD/src/api/repos/secret_scanning_alerts.rs -------------------------------------------------------------------------------- /src/api/repos/secrets.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XAMPPRocky/octocrab/HEAD/src/api/repos/secrets.rs -------------------------------------------------------------------------------- /src/api/repos/stargazers.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XAMPPRocky/octocrab/HEAD/src/api/repos/stargazers.rs -------------------------------------------------------------------------------- /src/api/repos/status.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XAMPPRocky/octocrab/HEAD/src/api/repos/status.rs -------------------------------------------------------------------------------- /src/api/repos/tags.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XAMPPRocky/octocrab/HEAD/src/api/repos/tags.rs -------------------------------------------------------------------------------- /src/api/repos/teams.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XAMPPRocky/octocrab/HEAD/src/api/repos/teams.rs -------------------------------------------------------------------------------- /src/api/search.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XAMPPRocky/octocrab/HEAD/src/api/search.rs -------------------------------------------------------------------------------- /src/api/teams.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XAMPPRocky/octocrab/HEAD/src/api/teams.rs -------------------------------------------------------------------------------- /src/api/teams/children.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XAMPPRocky/octocrab/HEAD/src/api/teams/children.rs -------------------------------------------------------------------------------- /src/api/teams/create.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XAMPPRocky/octocrab/HEAD/src/api/teams/create.rs -------------------------------------------------------------------------------- /src/api/teams/edit.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XAMPPRocky/octocrab/HEAD/src/api/teams/edit.rs -------------------------------------------------------------------------------- /src/api/teams/invitations.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XAMPPRocky/octocrab/HEAD/src/api/teams/invitations.rs -------------------------------------------------------------------------------- /src/api/teams/list.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XAMPPRocky/octocrab/HEAD/src/api/teams/list.rs -------------------------------------------------------------------------------- /src/api/teams/members.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XAMPPRocky/octocrab/HEAD/src/api/teams/members.rs -------------------------------------------------------------------------------- /src/api/teams/team_repos.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XAMPPRocky/octocrab/HEAD/src/api/teams/team_repos.rs -------------------------------------------------------------------------------- /src/api/users.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XAMPPRocky/octocrab/HEAD/src/api/users.rs -------------------------------------------------------------------------------- /src/api/users/follow.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XAMPPRocky/octocrab/HEAD/src/api/users/follow.rs -------------------------------------------------------------------------------- /src/api/users/user_blocks.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XAMPPRocky/octocrab/HEAD/src/api/users/user_blocks.rs -------------------------------------------------------------------------------- /src/api/users/user_emails.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XAMPPRocky/octocrab/HEAD/src/api/users/user_emails.rs -------------------------------------------------------------------------------- /src/api/users/user_git_ssh_keys.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XAMPPRocky/octocrab/HEAD/src/api/users/user_git_ssh_keys.rs -------------------------------------------------------------------------------- /src/api/users/user_gpg_keys.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XAMPPRocky/octocrab/HEAD/src/api/users/user_gpg_keys.rs -------------------------------------------------------------------------------- /src/api/users/user_repos.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XAMPPRocky/octocrab/HEAD/src/api/users/user_repos.rs -------------------------------------------------------------------------------- /src/api/users/user_social_accounts.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XAMPPRocky/octocrab/HEAD/src/api/users/user_social_accounts.rs -------------------------------------------------------------------------------- /src/api/users/user_ssh_signing_keys.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XAMPPRocky/octocrab/HEAD/src/api/users/user_ssh_signing_keys.rs -------------------------------------------------------------------------------- /src/api/workflows.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XAMPPRocky/octocrab/HEAD/src/api/workflows.rs -------------------------------------------------------------------------------- /src/auth.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XAMPPRocky/octocrab/HEAD/src/auth.rs -------------------------------------------------------------------------------- /src/body.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XAMPPRocky/octocrab/HEAD/src/body.rs -------------------------------------------------------------------------------- /src/error.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XAMPPRocky/octocrab/HEAD/src/error.rs -------------------------------------------------------------------------------- /src/etag.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XAMPPRocky/octocrab/HEAD/src/etag.rs -------------------------------------------------------------------------------- /src/from_response.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XAMPPRocky/octocrab/HEAD/src/from_response.rs -------------------------------------------------------------------------------- /src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XAMPPRocky/octocrab/HEAD/src/lib.rs -------------------------------------------------------------------------------- /src/models.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XAMPPRocky/octocrab/HEAD/src/models.rs -------------------------------------------------------------------------------- /src/models/actions.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XAMPPRocky/octocrab/HEAD/src/models/actions.rs -------------------------------------------------------------------------------- /src/models/activity.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XAMPPRocky/octocrab/HEAD/src/models/activity.rs -------------------------------------------------------------------------------- /src/models/apps.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XAMPPRocky/octocrab/HEAD/src/models/apps.rs -------------------------------------------------------------------------------- /src/models/checks.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XAMPPRocky/octocrab/HEAD/src/models/checks.rs -------------------------------------------------------------------------------- /src/models/classroom.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XAMPPRocky/octocrab/HEAD/src/models/classroom.rs -------------------------------------------------------------------------------- /src/models/code_scannings.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XAMPPRocky/octocrab/HEAD/src/models/code_scannings.rs -------------------------------------------------------------------------------- /src/models/commits.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XAMPPRocky/octocrab/HEAD/src/models/commits.rs -------------------------------------------------------------------------------- /src/models/date_serde.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XAMPPRocky/octocrab/HEAD/src/models/date_serde.rs -------------------------------------------------------------------------------- /src/models/events.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XAMPPRocky/octocrab/HEAD/src/models/events.rs -------------------------------------------------------------------------------- /src/models/events/payload.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XAMPPRocky/octocrab/HEAD/src/models/events/payload.rs -------------------------------------------------------------------------------- /src/models/events/payload/commit_comment.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XAMPPRocky/octocrab/HEAD/src/models/events/payload/commit_comment.rs -------------------------------------------------------------------------------- /src/models/events/payload/create.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XAMPPRocky/octocrab/HEAD/src/models/events/payload/create.rs -------------------------------------------------------------------------------- /src/models/events/payload/delete.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XAMPPRocky/octocrab/HEAD/src/models/events/payload/delete.rs -------------------------------------------------------------------------------- /src/models/events/payload/fork.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XAMPPRocky/octocrab/HEAD/src/models/events/payload/fork.rs -------------------------------------------------------------------------------- /src/models/events/payload/gollum.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XAMPPRocky/octocrab/HEAD/src/models/events/payload/gollum.rs -------------------------------------------------------------------------------- /src/models/events/payload/installation.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XAMPPRocky/octocrab/HEAD/src/models/events/payload/installation.rs -------------------------------------------------------------------------------- /src/models/events/payload/installation_repositories.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XAMPPRocky/octocrab/HEAD/src/models/events/payload/installation_repositories.rs -------------------------------------------------------------------------------- /src/models/events/payload/installation_target.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XAMPPRocky/octocrab/HEAD/src/models/events/payload/installation_target.rs -------------------------------------------------------------------------------- /src/models/events/payload/issue_comment.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XAMPPRocky/octocrab/HEAD/src/models/events/payload/issue_comment.rs -------------------------------------------------------------------------------- /src/models/events/payload/issues.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XAMPPRocky/octocrab/HEAD/src/models/events/payload/issues.rs -------------------------------------------------------------------------------- /src/models/events/payload/member.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XAMPPRocky/octocrab/HEAD/src/models/events/payload/member.rs -------------------------------------------------------------------------------- /src/models/events/payload/public.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XAMPPRocky/octocrab/HEAD/src/models/events/payload/public.rs -------------------------------------------------------------------------------- /src/models/events/payload/pull_request.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XAMPPRocky/octocrab/HEAD/src/models/events/payload/pull_request.rs -------------------------------------------------------------------------------- /src/models/events/payload/pull_request_review.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XAMPPRocky/octocrab/HEAD/src/models/events/payload/pull_request_review.rs -------------------------------------------------------------------------------- /src/models/events/payload/pull_request_review_comment.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XAMPPRocky/octocrab/HEAD/src/models/events/payload/pull_request_review_comment.rs -------------------------------------------------------------------------------- /src/models/events/payload/push.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XAMPPRocky/octocrab/HEAD/src/models/events/payload/push.rs -------------------------------------------------------------------------------- /src/models/events/payload/release.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XAMPPRocky/octocrab/HEAD/src/models/events/payload/release.rs -------------------------------------------------------------------------------- /src/models/events/payload/watch.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XAMPPRocky/octocrab/HEAD/src/models/events/payload/watch.rs -------------------------------------------------------------------------------- /src/models/events/payload/workflow_run.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XAMPPRocky/octocrab/HEAD/src/models/events/payload/workflow_run.rs -------------------------------------------------------------------------------- /src/models/gists.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XAMPPRocky/octocrab/HEAD/src/models/gists.rs -------------------------------------------------------------------------------- /src/models/hooks.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XAMPPRocky/octocrab/HEAD/src/models/hooks.rs -------------------------------------------------------------------------------- /src/models/interaction_limits.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XAMPPRocky/octocrab/HEAD/src/models/interaction_limits.rs -------------------------------------------------------------------------------- /src/models/issues.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XAMPPRocky/octocrab/HEAD/src/models/issues.rs -------------------------------------------------------------------------------- /src/models/orgs.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XAMPPRocky/octocrab/HEAD/src/models/orgs.rs -------------------------------------------------------------------------------- /src/models/orgs/secrets.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XAMPPRocky/octocrab/HEAD/src/models/orgs/secrets.rs -------------------------------------------------------------------------------- /src/models/pulls.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XAMPPRocky/octocrab/HEAD/src/models/pulls.rs -------------------------------------------------------------------------------- /src/models/reactions.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XAMPPRocky/octocrab/HEAD/src/models/reactions.rs -------------------------------------------------------------------------------- /src/models/repos.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XAMPPRocky/octocrab/HEAD/src/models/repos.rs -------------------------------------------------------------------------------- /src/models/repos/dependabot.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XAMPPRocky/octocrab/HEAD/src/models/repos/dependabot.rs -------------------------------------------------------------------------------- /src/models/repos/secret_scanning_alert.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XAMPPRocky/octocrab/HEAD/src/models/repos/secret_scanning_alert.rs -------------------------------------------------------------------------------- /src/models/repos/secrets.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XAMPPRocky/octocrab/HEAD/src/models/repos/secrets.rs -------------------------------------------------------------------------------- /src/models/teams.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XAMPPRocky/octocrab/HEAD/src/models/teams.rs -------------------------------------------------------------------------------- /src/models/timelines.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XAMPPRocky/octocrab/HEAD/src/models/timelines.rs -------------------------------------------------------------------------------- /src/models/webhook_events.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XAMPPRocky/octocrab/HEAD/src/models/webhook_events.rs -------------------------------------------------------------------------------- /src/models/webhook_events/payload.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XAMPPRocky/octocrab/HEAD/src/models/webhook_events/payload.rs -------------------------------------------------------------------------------- /src/models/webhook_events/payload/branch_protection_rule.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XAMPPRocky/octocrab/HEAD/src/models/webhook_events/payload/branch_protection_rule.rs -------------------------------------------------------------------------------- /src/models/webhook_events/payload/check_run.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XAMPPRocky/octocrab/HEAD/src/models/webhook_events/payload/check_run.rs -------------------------------------------------------------------------------- /src/models/webhook_events/payload/check_suite.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XAMPPRocky/octocrab/HEAD/src/models/webhook_events/payload/check_suite.rs -------------------------------------------------------------------------------- /src/models/webhook_events/payload/code_scanning_alert.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XAMPPRocky/octocrab/HEAD/src/models/webhook_events/payload/code_scanning_alert.rs -------------------------------------------------------------------------------- /src/models/webhook_events/payload/commit_comment.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XAMPPRocky/octocrab/HEAD/src/models/webhook_events/payload/commit_comment.rs -------------------------------------------------------------------------------- /src/models/webhook_events/payload/create.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XAMPPRocky/octocrab/HEAD/src/models/webhook_events/payload/create.rs -------------------------------------------------------------------------------- /src/models/webhook_events/payload/delete.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XAMPPRocky/octocrab/HEAD/src/models/webhook_events/payload/delete.rs -------------------------------------------------------------------------------- /src/models/webhook_events/payload/dependabot_alert.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XAMPPRocky/octocrab/HEAD/src/models/webhook_events/payload/dependabot_alert.rs -------------------------------------------------------------------------------- /src/models/webhook_events/payload/deploy_key.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XAMPPRocky/octocrab/HEAD/src/models/webhook_events/payload/deploy_key.rs -------------------------------------------------------------------------------- /src/models/webhook_events/payload/deployment.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XAMPPRocky/octocrab/HEAD/src/models/webhook_events/payload/deployment.rs -------------------------------------------------------------------------------- /src/models/webhook_events/payload/deployment_protection_rule.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XAMPPRocky/octocrab/HEAD/src/models/webhook_events/payload/deployment_protection_rule.rs -------------------------------------------------------------------------------- /src/models/webhook_events/payload/deployment_status.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XAMPPRocky/octocrab/HEAD/src/models/webhook_events/payload/deployment_status.rs -------------------------------------------------------------------------------- /src/models/webhook_events/payload/discussion.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XAMPPRocky/octocrab/HEAD/src/models/webhook_events/payload/discussion.rs -------------------------------------------------------------------------------- /src/models/webhook_events/payload/discussion_comment.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XAMPPRocky/octocrab/HEAD/src/models/webhook_events/payload/discussion_comment.rs -------------------------------------------------------------------------------- /src/models/webhook_events/payload/fork.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XAMPPRocky/octocrab/HEAD/src/models/webhook_events/payload/fork.rs -------------------------------------------------------------------------------- /src/models/webhook_events/payload/github_app_authorization.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XAMPPRocky/octocrab/HEAD/src/models/webhook_events/payload/github_app_authorization.rs -------------------------------------------------------------------------------- /src/models/webhook_events/payload/gollum.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XAMPPRocky/octocrab/HEAD/src/models/webhook_events/payload/gollum.rs -------------------------------------------------------------------------------- /src/models/webhook_events/payload/installation.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XAMPPRocky/octocrab/HEAD/src/models/webhook_events/payload/installation.rs -------------------------------------------------------------------------------- /src/models/webhook_events/payload/installation_repositories.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XAMPPRocky/octocrab/HEAD/src/models/webhook_events/payload/installation_repositories.rs -------------------------------------------------------------------------------- /src/models/webhook_events/payload/installation_target.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XAMPPRocky/octocrab/HEAD/src/models/webhook_events/payload/installation_target.rs -------------------------------------------------------------------------------- /src/models/webhook_events/payload/issue_comment.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XAMPPRocky/octocrab/HEAD/src/models/webhook_events/payload/issue_comment.rs -------------------------------------------------------------------------------- /src/models/webhook_events/payload/issues.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XAMPPRocky/octocrab/HEAD/src/models/webhook_events/payload/issues.rs -------------------------------------------------------------------------------- /src/models/webhook_events/payload/label.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XAMPPRocky/octocrab/HEAD/src/models/webhook_events/payload/label.rs -------------------------------------------------------------------------------- /src/models/webhook_events/payload/marketplace_purchase.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XAMPPRocky/octocrab/HEAD/src/models/webhook_events/payload/marketplace_purchase.rs -------------------------------------------------------------------------------- /src/models/webhook_events/payload/member.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XAMPPRocky/octocrab/HEAD/src/models/webhook_events/payload/member.rs -------------------------------------------------------------------------------- /src/models/webhook_events/payload/membership.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XAMPPRocky/octocrab/HEAD/src/models/webhook_events/payload/membership.rs -------------------------------------------------------------------------------- /src/models/webhook_events/payload/merge_group.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XAMPPRocky/octocrab/HEAD/src/models/webhook_events/payload/merge_group.rs -------------------------------------------------------------------------------- /src/models/webhook_events/payload/meta.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XAMPPRocky/octocrab/HEAD/src/models/webhook_events/payload/meta.rs -------------------------------------------------------------------------------- /src/models/webhook_events/payload/milestone.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XAMPPRocky/octocrab/HEAD/src/models/webhook_events/payload/milestone.rs -------------------------------------------------------------------------------- /src/models/webhook_events/payload/org_block.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XAMPPRocky/octocrab/HEAD/src/models/webhook_events/payload/org_block.rs -------------------------------------------------------------------------------- /src/models/webhook_events/payload/organization.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XAMPPRocky/octocrab/HEAD/src/models/webhook_events/payload/organization.rs -------------------------------------------------------------------------------- /src/models/webhook_events/payload/package.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XAMPPRocky/octocrab/HEAD/src/models/webhook_events/payload/package.rs -------------------------------------------------------------------------------- /src/models/webhook_events/payload/page_build.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XAMPPRocky/octocrab/HEAD/src/models/webhook_events/payload/page_build.rs -------------------------------------------------------------------------------- /src/models/webhook_events/payload/personal_access_token_request.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XAMPPRocky/octocrab/HEAD/src/models/webhook_events/payload/personal_access_token_request.rs -------------------------------------------------------------------------------- /src/models/webhook_events/payload/ping.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XAMPPRocky/octocrab/HEAD/src/models/webhook_events/payload/ping.rs -------------------------------------------------------------------------------- /src/models/webhook_events/payload/project.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XAMPPRocky/octocrab/HEAD/src/models/webhook_events/payload/project.rs -------------------------------------------------------------------------------- /src/models/webhook_events/payload/project_card.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XAMPPRocky/octocrab/HEAD/src/models/webhook_events/payload/project_card.rs -------------------------------------------------------------------------------- /src/models/webhook_events/payload/project_column.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XAMPPRocky/octocrab/HEAD/src/models/webhook_events/payload/project_column.rs -------------------------------------------------------------------------------- /src/models/webhook_events/payload/projects_v2.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XAMPPRocky/octocrab/HEAD/src/models/webhook_events/payload/projects_v2.rs -------------------------------------------------------------------------------- /src/models/webhook_events/payload/projects_v2_item.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XAMPPRocky/octocrab/HEAD/src/models/webhook_events/payload/projects_v2_item.rs -------------------------------------------------------------------------------- /src/models/webhook_events/payload/public.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XAMPPRocky/octocrab/HEAD/src/models/webhook_events/payload/public.rs -------------------------------------------------------------------------------- /src/models/webhook_events/payload/pull_request.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XAMPPRocky/octocrab/HEAD/src/models/webhook_events/payload/pull_request.rs -------------------------------------------------------------------------------- /src/models/webhook_events/payload/pull_request_review.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XAMPPRocky/octocrab/HEAD/src/models/webhook_events/payload/pull_request_review.rs -------------------------------------------------------------------------------- /src/models/webhook_events/payload/pull_request_review_comment.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XAMPPRocky/octocrab/HEAD/src/models/webhook_events/payload/pull_request_review_comment.rs -------------------------------------------------------------------------------- /src/models/webhook_events/payload/pull_request_review_thread.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XAMPPRocky/octocrab/HEAD/src/models/webhook_events/payload/pull_request_review_thread.rs -------------------------------------------------------------------------------- /src/models/webhook_events/payload/push.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XAMPPRocky/octocrab/HEAD/src/models/webhook_events/payload/push.rs -------------------------------------------------------------------------------- /src/models/webhook_events/payload/registry_package.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XAMPPRocky/octocrab/HEAD/src/models/webhook_events/payload/registry_package.rs -------------------------------------------------------------------------------- /src/models/webhook_events/payload/release.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XAMPPRocky/octocrab/HEAD/src/models/webhook_events/payload/release.rs -------------------------------------------------------------------------------- /src/models/webhook_events/payload/repository.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XAMPPRocky/octocrab/HEAD/src/models/webhook_events/payload/repository.rs -------------------------------------------------------------------------------- /src/models/webhook_events/payload/repository_advisory.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XAMPPRocky/octocrab/HEAD/src/models/webhook_events/payload/repository_advisory.rs -------------------------------------------------------------------------------- /src/models/webhook_events/payload/repository_dispatch.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XAMPPRocky/octocrab/HEAD/src/models/webhook_events/payload/repository_dispatch.rs -------------------------------------------------------------------------------- /src/models/webhook_events/payload/repository_import.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XAMPPRocky/octocrab/HEAD/src/models/webhook_events/payload/repository_import.rs -------------------------------------------------------------------------------- /src/models/webhook_events/payload/repository_vulnerability_alert.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XAMPPRocky/octocrab/HEAD/src/models/webhook_events/payload/repository_vulnerability_alert.rs -------------------------------------------------------------------------------- /src/models/webhook_events/payload/schedule.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XAMPPRocky/octocrab/HEAD/src/models/webhook_events/payload/schedule.rs -------------------------------------------------------------------------------- /src/models/webhook_events/payload/secret_scanning_alert.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XAMPPRocky/octocrab/HEAD/src/models/webhook_events/payload/secret_scanning_alert.rs -------------------------------------------------------------------------------- /src/models/webhook_events/payload/secret_scanning_alert_location.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XAMPPRocky/octocrab/HEAD/src/models/webhook_events/payload/secret_scanning_alert_location.rs -------------------------------------------------------------------------------- /src/models/webhook_events/payload/security_advisory.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XAMPPRocky/octocrab/HEAD/src/models/webhook_events/payload/security_advisory.rs -------------------------------------------------------------------------------- /src/models/webhook_events/payload/security_and_analysis.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XAMPPRocky/octocrab/HEAD/src/models/webhook_events/payload/security_and_analysis.rs -------------------------------------------------------------------------------- /src/models/webhook_events/payload/sponsorship.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XAMPPRocky/octocrab/HEAD/src/models/webhook_events/payload/sponsorship.rs -------------------------------------------------------------------------------- /src/models/webhook_events/payload/star.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XAMPPRocky/octocrab/HEAD/src/models/webhook_events/payload/star.rs -------------------------------------------------------------------------------- /src/models/webhook_events/payload/status.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XAMPPRocky/octocrab/HEAD/src/models/webhook_events/payload/status.rs -------------------------------------------------------------------------------- /src/models/webhook_events/payload/team.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XAMPPRocky/octocrab/HEAD/src/models/webhook_events/payload/team.rs -------------------------------------------------------------------------------- /src/models/webhook_events/payload/team_add.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XAMPPRocky/octocrab/HEAD/src/models/webhook_events/payload/team_add.rs -------------------------------------------------------------------------------- /src/models/webhook_events/payload/watch.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XAMPPRocky/octocrab/HEAD/src/models/webhook_events/payload/watch.rs -------------------------------------------------------------------------------- /src/models/webhook_events/payload/workflow_dispatch.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XAMPPRocky/octocrab/HEAD/src/models/webhook_events/payload/workflow_dispatch.rs -------------------------------------------------------------------------------- /src/models/webhook_events/payload/workflow_job.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XAMPPRocky/octocrab/HEAD/src/models/webhook_events/payload/workflow_job.rs -------------------------------------------------------------------------------- /src/models/webhook_events/payload/workflow_run.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XAMPPRocky/octocrab/HEAD/src/models/webhook_events/payload/workflow_run.rs -------------------------------------------------------------------------------- /src/models/workflows.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XAMPPRocky/octocrab/HEAD/src/models/workflows.rs -------------------------------------------------------------------------------- /src/page.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XAMPPRocky/octocrab/HEAD/src/page.rs -------------------------------------------------------------------------------- /src/params.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XAMPPRocky/octocrab/HEAD/src/params.rs -------------------------------------------------------------------------------- /src/service/middleware/auth_header.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XAMPPRocky/octocrab/HEAD/src/service/middleware/auth_header.rs -------------------------------------------------------------------------------- /src/service/middleware/base_uri.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XAMPPRocky/octocrab/HEAD/src/service/middleware/base_uri.rs -------------------------------------------------------------------------------- /src/service/middleware/extra_headers.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XAMPPRocky/octocrab/HEAD/src/service/middleware/extra_headers.rs -------------------------------------------------------------------------------- /src/service/middleware/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XAMPPRocky/octocrab/HEAD/src/service/middleware/mod.rs -------------------------------------------------------------------------------- /src/service/middleware/retry.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XAMPPRocky/octocrab/HEAD/src/service/middleware/retry.rs -------------------------------------------------------------------------------- /src/service/mod.rs: -------------------------------------------------------------------------------- 1 | pub mod middleware; 2 | -------------------------------------------------------------------------------- /tests/actions_add_selected_repo_to_org_secret_test.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XAMPPRocky/octocrab/HEAD/tests/actions_add_selected_repo_to_org_secret_test.rs -------------------------------------------------------------------------------- /tests/actions_delete_workflow_run_logs_test.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XAMPPRocky/octocrab/HEAD/tests/actions_delete_workflow_run_logs_test.rs -------------------------------------------------------------------------------- /tests/actions_remove_selected_repo_from_org_secret_test.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XAMPPRocky/octocrab/HEAD/tests/actions_remove_selected_repo_from_org_secret_test.rs -------------------------------------------------------------------------------- /tests/actions_self_hosted_runners.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XAMPPRocky/octocrab/HEAD/tests/actions_self_hosted_runners.rs -------------------------------------------------------------------------------- /tests/actions_workflows_dispatches_test.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XAMPPRocky/octocrab/HEAD/tests/actions_workflows_dispatches_test.rs -------------------------------------------------------------------------------- /tests/check_suites.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XAMPPRocky/octocrab/HEAD/tests/check_suites.rs -------------------------------------------------------------------------------- /tests/classroom_assignments_tests.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XAMPPRocky/octocrab/HEAD/tests/classroom_assignments_tests.rs -------------------------------------------------------------------------------- /tests/classroom_classrooms_tests.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XAMPPRocky/octocrab/HEAD/tests/classroom_classrooms_tests.rs -------------------------------------------------------------------------------- /tests/code_scanning_alert_update_test.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XAMPPRocky/octocrab/HEAD/tests/code_scanning_alert_update_test.rs -------------------------------------------------------------------------------- /tests/code_scanning_alerts_list_test.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XAMPPRocky/octocrab/HEAD/tests/code_scanning_alerts_list_test.rs -------------------------------------------------------------------------------- /tests/code_scanning_analysis_test.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XAMPPRocky/octocrab/HEAD/tests/code_scanning_analysis_test.rs -------------------------------------------------------------------------------- /tests/commit_associated_check_runs_tests.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XAMPPRocky/octocrab/HEAD/tests/commit_associated_check_runs_tests.rs -------------------------------------------------------------------------------- /tests/current_user_orgs_test.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XAMPPRocky/octocrab/HEAD/tests/current_user_orgs_test.rs -------------------------------------------------------------------------------- /tests/dependabot_alerts_test.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XAMPPRocky/octocrab/HEAD/tests/dependabot_alerts_test.rs -------------------------------------------------------------------------------- /tests/events_test.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XAMPPRocky/octocrab/HEAD/tests/events_test.rs -------------------------------------------------------------------------------- /tests/follow_redirect.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XAMPPRocky/octocrab/HEAD/tests/follow_redirect.rs -------------------------------------------------------------------------------- /tests/generate_release_notes_test.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XAMPPRocky/octocrab/HEAD/tests/generate_release_notes_test.rs -------------------------------------------------------------------------------- /tests/gists_test.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XAMPPRocky/octocrab/HEAD/tests/gists_test.rs -------------------------------------------------------------------------------- /tests/hooks_delivery_list.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XAMPPRocky/octocrab/HEAD/tests/hooks_delivery_list.rs -------------------------------------------------------------------------------- /tests/interactions.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XAMPPRocky/octocrab/HEAD/tests/interactions.rs -------------------------------------------------------------------------------- /tests/issues_check_assignee_test.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XAMPPRocky/octocrab/HEAD/tests/issues_check_assignee_test.rs -------------------------------------------------------------------------------- /tests/issues_comments_delete_test.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XAMPPRocky/octocrab/HEAD/tests/issues_comments_delete_test.rs -------------------------------------------------------------------------------- /tests/issues_comments_reactions_delete_test.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XAMPPRocky/octocrab/HEAD/tests/issues_comments_reactions_delete_test.rs -------------------------------------------------------------------------------- /tests/issues_labels_delete_test.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XAMPPRocky/octocrab/HEAD/tests/issues_labels_delete_test.rs -------------------------------------------------------------------------------- /tests/issues_locking_test.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XAMPPRocky/octocrab/HEAD/tests/issues_locking_test.rs -------------------------------------------------------------------------------- /tests/issues_reactions_delete_test.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XAMPPRocky/octocrab/HEAD/tests/issues_reactions_delete_test.rs -------------------------------------------------------------------------------- /tests/issues_timeline_tests.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XAMPPRocky/octocrab/HEAD/tests/issues_timeline_tests.rs -------------------------------------------------------------------------------- /tests/mock_error.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XAMPPRocky/octocrab/HEAD/tests/mock_error.rs -------------------------------------------------------------------------------- /tests/notifications_threads_test.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XAMPPRocky/octocrab/HEAD/tests/notifications_threads_test.rs -------------------------------------------------------------------------------- /tests/org_installations_test.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XAMPPRocky/octocrab/HEAD/tests/org_installations_test.rs -------------------------------------------------------------------------------- /tests/org_members_tests.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XAMPPRocky/octocrab/HEAD/tests/org_members_tests.rs -------------------------------------------------------------------------------- /tests/org_secrets_test.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XAMPPRocky/octocrab/HEAD/tests/org_secrets_test.rs -------------------------------------------------------------------------------- /tests/projects_org_create_project_test.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XAMPPRocky/octocrab/HEAD/tests/projects_org_create_project_test.rs -------------------------------------------------------------------------------- /tests/projects_org_list_projects_test.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XAMPPRocky/octocrab/HEAD/tests/projects_org_list_projects_test.rs -------------------------------------------------------------------------------- /tests/projects_project_delete_test.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XAMPPRocky/octocrab/HEAD/tests/projects_project_delete_test.rs -------------------------------------------------------------------------------- /tests/projects_project_get_test.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XAMPPRocky/octocrab/HEAD/tests/projects_project_get_test.rs -------------------------------------------------------------------------------- /tests/projects_project_update_test.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XAMPPRocky/octocrab/HEAD/tests/projects_project_update_test.rs -------------------------------------------------------------------------------- /tests/projects_repo_create_project_test.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XAMPPRocky/octocrab/HEAD/tests/projects_repo_create_project_test.rs -------------------------------------------------------------------------------- /tests/projects_repo_list_projects_test.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XAMPPRocky/octocrab/HEAD/tests/projects_repo_list_projects_test.rs -------------------------------------------------------------------------------- /tests/projects_user_create_project_test.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XAMPPRocky/octocrab/HEAD/tests/projects_user_create_project_test.rs -------------------------------------------------------------------------------- /tests/projects_user_list_projects_test.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XAMPPRocky/octocrab/HEAD/tests/projects_user_list_projects_test.rs -------------------------------------------------------------------------------- /tests/pull_request_commits_test.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XAMPPRocky/octocrab/HEAD/tests/pull_request_commits_test.rs -------------------------------------------------------------------------------- /tests/pull_request_review_comment_test.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XAMPPRocky/octocrab/HEAD/tests/pull_request_review_comment_test.rs -------------------------------------------------------------------------------- /tests/pull_request_review_operations_test.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XAMPPRocky/octocrab/HEAD/tests/pull_request_review_operations_test.rs -------------------------------------------------------------------------------- /tests/repo_contributors_test.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XAMPPRocky/octocrab/HEAD/tests/repo_contributors_test.rs -------------------------------------------------------------------------------- /tests/repo_delete_ref_test.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XAMPPRocky/octocrab/HEAD/tests/repo_delete_ref_test.rs -------------------------------------------------------------------------------- /tests/repo_secrets_test.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XAMPPRocky/octocrab/HEAD/tests/repo_secrets_test.rs -------------------------------------------------------------------------------- /tests/repos_commit_test.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XAMPPRocky/octocrab/HEAD/tests/repos_commit_test.rs -------------------------------------------------------------------------------- /tests/repos_delete_test.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XAMPPRocky/octocrab/HEAD/tests/repos_delete_test.rs -------------------------------------------------------------------------------- /tests/repos_events_test.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XAMPPRocky/octocrab/HEAD/tests/repos_events_test.rs -------------------------------------------------------------------------------- /tests/repos_is_collaborator_test.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XAMPPRocky/octocrab/HEAD/tests/repos_is_collaborator_test.rs -------------------------------------------------------------------------------- /tests/repos_merges_test.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XAMPPRocky/octocrab/HEAD/tests/repos_merges_test.rs -------------------------------------------------------------------------------- /tests/repos_releases_get_by_id.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XAMPPRocky/octocrab/HEAD/tests/repos_releases_get_by_id.rs -------------------------------------------------------------------------------- /tests/repos_releases_get_by_tag.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XAMPPRocky/octocrab/HEAD/tests/repos_releases_get_by_tag.rs -------------------------------------------------------------------------------- /tests/repos_releases_get_latest.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XAMPPRocky/octocrab/HEAD/tests/repos_releases_get_latest.rs -------------------------------------------------------------------------------- /tests/repos_releases_list_test.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XAMPPRocky/octocrab/HEAD/tests/repos_releases_list_test.rs -------------------------------------------------------------------------------- /tests/repos_stargazers_tests.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XAMPPRocky/octocrab/HEAD/tests/repos_stargazers_tests.rs -------------------------------------------------------------------------------- /tests/resources/check_dependabot_alerts.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XAMPPRocky/octocrab/HEAD/tests/resources/check_dependabot_alerts.json -------------------------------------------------------------------------------- /tests/resources/check_run_annotations.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XAMPPRocky/octocrab/HEAD/tests/resources/check_run_annotations.json -------------------------------------------------------------------------------- /tests/resources/check_secrets_alerts.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XAMPPRocky/octocrab/HEAD/tests/resources/check_secrets_alerts.json -------------------------------------------------------------------------------- /tests/resources/check_secrets_alerts_locations.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XAMPPRocky/octocrab/HEAD/tests/resources/check_secrets_alerts_locations.json -------------------------------------------------------------------------------- /tests/resources/check_suite.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XAMPPRocky/octocrab/HEAD/tests/resources/check_suite.json -------------------------------------------------------------------------------- /tests/resources/check_suite_preferences.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XAMPPRocky/octocrab/HEAD/tests/resources/check_suite_preferences.json -------------------------------------------------------------------------------- /tests/resources/classroom_get_assignment.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XAMPPRocky/octocrab/HEAD/tests/resources/classroom_get_assignment.json -------------------------------------------------------------------------------- /tests/resources/classroom_get_classroom.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XAMPPRocky/octocrab/HEAD/tests/resources/classroom_get_classroom.json -------------------------------------------------------------------------------- /tests/resources/classroom_get_grades.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XAMPPRocky/octocrab/HEAD/tests/resources/classroom_get_grades.json -------------------------------------------------------------------------------- /tests/resources/classroom_list_accepted.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XAMPPRocky/octocrab/HEAD/tests/resources/classroom_list_accepted.json -------------------------------------------------------------------------------- /tests/resources/classroom_list_assignments.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XAMPPRocky/octocrab/HEAD/tests/resources/classroom_list_assignments.json -------------------------------------------------------------------------------- /tests/resources/classroom_list_classrooms.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XAMPPRocky/octocrab/HEAD/tests/resources/classroom_list_classrooms.json -------------------------------------------------------------------------------- /tests/resources/codescanning_alert_error.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XAMPPRocky/octocrab/HEAD/tests/resources/codescanning_alert_error.json -------------------------------------------------------------------------------- /tests/resources/codescanning_alert_single.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XAMPPRocky/octocrab/HEAD/tests/resources/codescanning_alert_single.json -------------------------------------------------------------------------------- /tests/resources/codescanning_alerts_multiple.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XAMPPRocky/octocrab/HEAD/tests/resources/codescanning_alerts_multiple.json -------------------------------------------------------------------------------- /tests/resources/commit_check_runs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XAMPPRocky/octocrab/HEAD/tests/resources/commit_check_runs.json -------------------------------------------------------------------------------- /tests/resources/commit_comment_created_webhook_event.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XAMPPRocky/octocrab/HEAD/tests/resources/commit_comment_created_webhook_event.json -------------------------------------------------------------------------------- /tests/resources/commit_comment_event.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XAMPPRocky/octocrab/HEAD/tests/resources/commit_comment_event.json -------------------------------------------------------------------------------- /tests/resources/create_event.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XAMPPRocky/octocrab/HEAD/tests/resources/create_event.json -------------------------------------------------------------------------------- /tests/resources/create_event_with_null_description.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XAMPPRocky/octocrab/HEAD/tests/resources/create_event_with_null_description.json -------------------------------------------------------------------------------- /tests/resources/delete_event.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XAMPPRocky/octocrab/HEAD/tests/resources/delete_event.json -------------------------------------------------------------------------------- /tests/resources/fork_event.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XAMPPRocky/octocrab/HEAD/tests/resources/fork_event.json -------------------------------------------------------------------------------- /tests/resources/generate_release_notes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XAMPPRocky/octocrab/HEAD/tests/resources/generate_release_notes.json -------------------------------------------------------------------------------- /tests/resources/get_pull_request_review.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XAMPPRocky/octocrab/HEAD/tests/resources/get_pull_request_review.json -------------------------------------------------------------------------------- /tests/resources/get_pull_request_review_comments.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XAMPPRocky/octocrab/HEAD/tests/resources/get_pull_request_review_comments.json -------------------------------------------------------------------------------- /tests/resources/gollum_event.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XAMPPRocky/octocrab/HEAD/tests/resources/gollum_event.json -------------------------------------------------------------------------------- /tests/resources/hooks_delivery_list.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XAMPPRocky/octocrab/HEAD/tests/resources/hooks_delivery_list.json -------------------------------------------------------------------------------- /tests/resources/installation_created_webhook_event.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XAMPPRocky/octocrab/HEAD/tests/resources/installation_created_webhook_event.json -------------------------------------------------------------------------------- /tests/resources/installation_deleted_webhook_event.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XAMPPRocky/octocrab/HEAD/tests/resources/installation_deleted_webhook_event.json -------------------------------------------------------------------------------- /tests/resources/installation_event.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XAMPPRocky/octocrab/HEAD/tests/resources/installation_event.json -------------------------------------------------------------------------------- /tests/resources/installation_new_permissions_accepted_webhook_event.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XAMPPRocky/octocrab/HEAD/tests/resources/installation_new_permissions_accepted_webhook_event.json -------------------------------------------------------------------------------- /tests/resources/installation_repositories_removed_webhook_event.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XAMPPRocky/octocrab/HEAD/tests/resources/installation_repositories_removed_webhook_event.json -------------------------------------------------------------------------------- /tests/resources/interactions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XAMPPRocky/octocrab/HEAD/tests/resources/interactions.json -------------------------------------------------------------------------------- /tests/resources/issue_comment_created_webhook_event.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XAMPPRocky/octocrab/HEAD/tests/resources/issue_comment_created_webhook_event.json -------------------------------------------------------------------------------- /tests/resources/issue_comment_deleted_webhook_event.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XAMPPRocky/octocrab/HEAD/tests/resources/issue_comment_deleted_webhook_event.json -------------------------------------------------------------------------------- /tests/resources/issue_comment_edited_webhook_event.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XAMPPRocky/octocrab/HEAD/tests/resources/issue_comment_edited_webhook_event.json -------------------------------------------------------------------------------- /tests/resources/issue_comment_event.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XAMPPRocky/octocrab/HEAD/tests/resources/issue_comment_event.json -------------------------------------------------------------------------------- /tests/resources/issues_event.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XAMPPRocky/octocrab/HEAD/tests/resources/issues_event.json -------------------------------------------------------------------------------- /tests/resources/issues_labeled_webhook_event.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XAMPPRocky/octocrab/HEAD/tests/resources/issues_labeled_webhook_event.json -------------------------------------------------------------------------------- /tests/resources/issues_list_timeline_events.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XAMPPRocky/octocrab/HEAD/tests/resources/issues_list_timeline_events.json -------------------------------------------------------------------------------- /tests/resources/issues_opened_webhook_event.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XAMPPRocky/octocrab/HEAD/tests/resources/issues_opened_webhook_event.json -------------------------------------------------------------------------------- /tests/resources/issues_remove_label.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XAMPPRocky/octocrab/HEAD/tests/resources/issues_remove_label.json -------------------------------------------------------------------------------- /tests/resources/list_check_suites_for_ref.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XAMPPRocky/octocrab/HEAD/tests/resources/list_check_suites_for_ref.json -------------------------------------------------------------------------------- /tests/resources/member_event.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XAMPPRocky/octocrab/HEAD/tests/resources/member_event.json -------------------------------------------------------------------------------- /tests/resources/org_members.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XAMPPRocky/octocrab/HEAD/tests/resources/org_members.json -------------------------------------------------------------------------------- /tests/resources/org_public_key.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XAMPPRocky/octocrab/HEAD/tests/resources/org_public_key.json -------------------------------------------------------------------------------- /tests/resources/org_secret.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XAMPPRocky/octocrab/HEAD/tests/resources/org_secret.json -------------------------------------------------------------------------------- /tests/resources/org_secrets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XAMPPRocky/octocrab/HEAD/tests/resources/org_secrets.json -------------------------------------------------------------------------------- /tests/resources/orgs_installation_event.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XAMPPRocky/octocrab/HEAD/tests/resources/orgs_installation_event.json -------------------------------------------------------------------------------- /tests/resources/ping_webhook_event.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XAMPPRocky/octocrab/HEAD/tests/resources/ping_webhook_event.json -------------------------------------------------------------------------------- /tests/resources/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XAMPPRocky/octocrab/HEAD/tests/resources/project.json -------------------------------------------------------------------------------- /tests/resources/projects.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XAMPPRocky/octocrab/HEAD/tests/resources/projects.json -------------------------------------------------------------------------------- /tests/resources/public_event.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /tests/resources/pull_request_closed_webhook_event.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XAMPPRocky/octocrab/HEAD/tests/resources/pull_request_closed_webhook_event.json -------------------------------------------------------------------------------- /tests/resources/pull_request_commits.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XAMPPRocky/octocrab/HEAD/tests/resources/pull_request_commits.json -------------------------------------------------------------------------------- /tests/resources/pull_request_commits_empty_author_object.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XAMPPRocky/octocrab/HEAD/tests/resources/pull_request_commits_empty_author_object.json -------------------------------------------------------------------------------- /tests/resources/pull_request_event.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XAMPPRocky/octocrab/HEAD/tests/resources/pull_request_event.json -------------------------------------------------------------------------------- /tests/resources/pull_request_opened_webhook_event.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XAMPPRocky/octocrab/HEAD/tests/resources/pull_request_opened_webhook_event.json -------------------------------------------------------------------------------- /tests/resources/pull_request_review_comment.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XAMPPRocky/octocrab/HEAD/tests/resources/pull_request_review_comment.json -------------------------------------------------------------------------------- /tests/resources/pull_request_review_comment_event.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XAMPPRocky/octocrab/HEAD/tests/resources/pull_request_review_comment_event.json -------------------------------------------------------------------------------- /tests/resources/pull_request_review_event.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XAMPPRocky/octocrab/HEAD/tests/resources/pull_request_review_event.json -------------------------------------------------------------------------------- /tests/resources/pull_request_synchronize_webhook_event.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XAMPPRocky/octocrab/HEAD/tests/resources/pull_request_synchronize_webhook_event.json -------------------------------------------------------------------------------- /tests/resources/push_event.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XAMPPRocky/octocrab/HEAD/tests/resources/push_event.json -------------------------------------------------------------------------------- /tests/resources/push_webhook_event.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XAMPPRocky/octocrab/HEAD/tests/resources/push_webhook_event.json -------------------------------------------------------------------------------- /tests/resources/release_event.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XAMPPRocky/octocrab/HEAD/tests/resources/release_event.json -------------------------------------------------------------------------------- /tests/resources/repo_contributors.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XAMPPRocky/octocrab/HEAD/tests/resources/repo_contributors.json -------------------------------------------------------------------------------- /tests/resources/repo_public_key.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XAMPPRocky/octocrab/HEAD/tests/resources/repo_public_key.json -------------------------------------------------------------------------------- /tests/resources/repo_secret.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XAMPPRocky/octocrab/HEAD/tests/resources/repo_secret.json -------------------------------------------------------------------------------- /tests/resources/repo_secrets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XAMPPRocky/octocrab/HEAD/tests/resources/repo_secrets.json -------------------------------------------------------------------------------- /tests/resources/repos_list_commits.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XAMPPRocky/octocrab/HEAD/tests/resources/repos_list_commits.json -------------------------------------------------------------------------------- /tests/resources/repos_merges_201.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XAMPPRocky/octocrab/HEAD/tests/resources/repos_merges_201.json -------------------------------------------------------------------------------- /tests/resources/repos_releases_get_by_id.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XAMPPRocky/octocrab/HEAD/tests/resources/repos_releases_get_by_id.json -------------------------------------------------------------------------------- /tests/resources/repos_releases_get_by_tag.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XAMPPRocky/octocrab/HEAD/tests/resources/repos_releases_get_by_tag.json -------------------------------------------------------------------------------- /tests/resources/repos_releases_get_latest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XAMPPRocky/octocrab/HEAD/tests/resources/repos_releases_get_latest.json -------------------------------------------------------------------------------- /tests/resources/repos_releases_list.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XAMPPRocky/octocrab/HEAD/tests/resources/repos_releases_list.json -------------------------------------------------------------------------------- /tests/resources/repository_deleted_webhook_event.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XAMPPRocky/octocrab/HEAD/tests/resources/repository_deleted_webhook_event.json -------------------------------------------------------------------------------- /tests/resources/self_hosted_runner.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XAMPPRocky/octocrab/HEAD/tests/resources/self_hosted_runner.json -------------------------------------------------------------------------------- /tests/resources/self_hosted_runner_token.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XAMPPRocky/octocrab/HEAD/tests/resources/self_hosted_runner_token.json -------------------------------------------------------------------------------- /tests/resources/self_hosted_runners.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XAMPPRocky/octocrab/HEAD/tests/resources/self_hosted_runners.json -------------------------------------------------------------------------------- /tests/resources/stargazers.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XAMPPRocky/octocrab/HEAD/tests/resources/stargazers.json -------------------------------------------------------------------------------- /tests/resources/team_invitations.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XAMPPRocky/octocrab/HEAD/tests/resources/team_invitations.json -------------------------------------------------------------------------------- /tests/resources/team_members.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XAMPPRocky/octocrab/HEAD/tests/resources/team_members.json -------------------------------------------------------------------------------- /tests/resources/unknown_event.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XAMPPRocky/octocrab/HEAD/tests/resources/unknown_event.json -------------------------------------------------------------------------------- /tests/resources/user_blocks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XAMPPRocky/octocrab/HEAD/tests/resources/user_blocks.json -------------------------------------------------------------------------------- /tests/resources/user_data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XAMPPRocky/octocrab/HEAD/tests/resources/user_data.json -------------------------------------------------------------------------------- /tests/resources/user_emails.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XAMPPRocky/octocrab/HEAD/tests/resources/user_emails.json -------------------------------------------------------------------------------- /tests/resources/user_git_ssh_key_created.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XAMPPRocky/octocrab/HEAD/tests/resources/user_git_ssh_key_created.json -------------------------------------------------------------------------------- /tests/resources/user_git_ssh_keys.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XAMPPRocky/octocrab/HEAD/tests/resources/user_git_ssh_keys.json -------------------------------------------------------------------------------- /tests/resources/user_gpg_key_created.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XAMPPRocky/octocrab/HEAD/tests/resources/user_gpg_key_created.json -------------------------------------------------------------------------------- /tests/resources/user_gpg_keys.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XAMPPRocky/octocrab/HEAD/tests/resources/user_gpg_keys.json -------------------------------------------------------------------------------- /tests/resources/user_membership_orgs_event.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XAMPPRocky/octocrab/HEAD/tests/resources/user_membership_orgs_event.json -------------------------------------------------------------------------------- /tests/resources/user_projects.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XAMPPRocky/octocrab/HEAD/tests/resources/user_projects.json -------------------------------------------------------------------------------- /tests/resources/user_repositories.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XAMPPRocky/octocrab/HEAD/tests/resources/user_repositories.json -------------------------------------------------------------------------------- /tests/resources/user_social_accounts.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XAMPPRocky/octocrab/HEAD/tests/resources/user_social_accounts.json -------------------------------------------------------------------------------- /tests/resources/user_ssh_signing_key_created.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XAMPPRocky/octocrab/HEAD/tests/resources/user_ssh_signing_key_created.json -------------------------------------------------------------------------------- /tests/resources/user_ssh_signing_keys.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XAMPPRocky/octocrab/HEAD/tests/resources/user_ssh_signing_keys.json -------------------------------------------------------------------------------- /tests/resources/watch_event.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XAMPPRocky/octocrab/HEAD/tests/resources/watch_event.json -------------------------------------------------------------------------------- /tests/resources/workflow_run_event.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XAMPPRocky/octocrab/HEAD/tests/resources/workflow_run_event.json -------------------------------------------------------------------------------- /tests/resources/workflow_run_event_no_organization.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XAMPPRocky/octocrab/HEAD/tests/resources/workflow_run_event_no_organization.json -------------------------------------------------------------------------------- /tests/secrets_alerts_test.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XAMPPRocky/octocrab/HEAD/tests/secrets_alerts_test.rs -------------------------------------------------------------------------------- /tests/team_delete_test.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XAMPPRocky/octocrab/HEAD/tests/team_delete_test.rs -------------------------------------------------------------------------------- /tests/team_invitations_tests.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XAMPPRocky/octocrab/HEAD/tests/team_invitations_tests.rs -------------------------------------------------------------------------------- /tests/team_members_tests.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XAMPPRocky/octocrab/HEAD/tests/team_members_tests.rs -------------------------------------------------------------------------------- /tests/team_repos_tests.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XAMPPRocky/octocrab/HEAD/tests/team_repos_tests.rs -------------------------------------------------------------------------------- /tests/user_blocks_tests.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XAMPPRocky/octocrab/HEAD/tests/user_blocks_tests.rs -------------------------------------------------------------------------------- /tests/user_deserialize_test.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XAMPPRocky/octocrab/HEAD/tests/user_deserialize_test.rs -------------------------------------------------------------------------------- /tests/user_emails_tests.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XAMPPRocky/octocrab/HEAD/tests/user_emails_tests.rs -------------------------------------------------------------------------------- /tests/user_git_ssh_keys_tests.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XAMPPRocky/octocrab/HEAD/tests/user_git_ssh_keys_tests.rs -------------------------------------------------------------------------------- /tests/user_gpg_keys_tests.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XAMPPRocky/octocrab/HEAD/tests/user_gpg_keys_tests.rs -------------------------------------------------------------------------------- /tests/user_repositories_tests.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XAMPPRocky/octocrab/HEAD/tests/user_repositories_tests.rs -------------------------------------------------------------------------------- /tests/user_social_accounts_tests.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XAMPPRocky/octocrab/HEAD/tests/user_social_accounts_tests.rs -------------------------------------------------------------------------------- /tests/user_ssh_signing_keys_tests.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XAMPPRocky/octocrab/HEAD/tests/user_ssh_signing_keys_tests.rs --------------------------------------------------------------------------------