PyGithub 2.8.1__tar.gz → 2.9.0__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- pygithub-2.9.0/.github/actions/pre-commit/action.yml +24 -0
- pygithub-2.9.0/.github/workflows/_build-pkg.yml +32 -0
- pygithub-2.9.0/.github/workflows/ci.yml +297 -0
- pygithub-2.9.0/.github/workflows/codeql.yml +100 -0
- pygithub-2.9.0/.github/workflows/lint.yml +34 -0
- pygithub-2.9.0/.github/workflows/openapi.yml +161 -0
- pygithub-2.9.0/.github/workflows/pypi-release.yml +31 -0
- pygithub-2.9.0/.github/workflows/test-results.yml +33 -0
- pygithub-2.9.0/.pre-commit-config.yaml +47 -0
- pygithub-2.9.0/PKG-INFO +103 -0
- pygithub-2.9.0/PyGithub.egg-info/PKG-INFO +103 -0
- pygithub-2.9.0/PyGithub.egg-info/SOURCES.txt +1400 -0
- pygithub-2.9.0/doc/changes.rst +2201 -0
- pygithub-2.9.0/doc/conf.py +397 -0
- pygithub-2.9.0/doc/examples/LazyMode.rst +28 -0
- pygithub-2.9.0/doc/examples.rst +15 -0
- pygithub-2.9.0/doc/introduction.rst +106 -0
- pygithub-2.9.0/doc/utilities.rst +145 -0
- pygithub-2.9.0/github/AuthenticatedUser.py +1226 -0
- pygithub-2.9.0/github/Autolink.py +103 -0
- pygithub-2.9.0/github/Branch.py +668 -0
- pygithub-2.9.0/github/CheckRun.py +314 -0
- pygithub-2.9.0/github/CheckSuite.py +318 -0
- pygithub-2.9.0/github/CodeScanAlert.py +211 -0
- pygithub-2.9.0/github/CodeScanAlertInstance.py +133 -0
- pygithub-2.9.0/github/CodeScanRule.py +132 -0
- pygithub-2.9.0/github/CodeScanTool.py +93 -0
- pygithub-2.9.0/github/Commit.py +425 -0
- pygithub-2.9.0/github/CommitCombinedStatus.py +118 -0
- pygithub-2.9.0/github/CommitComment.py +268 -0
- pygithub-2.9.0/github/CommitStatus.py +168 -0
- pygithub-2.9.0/github/Comparison.py +215 -0
- pygithub-2.9.0/github/Deployment.py +311 -0
- pygithub-2.9.0/github/Download.py +254 -0
- pygithub-2.9.0/github/Enterprise.py +175 -0
- pygithub-2.9.0/github/EnterpriseConsumedLicenses.py +134 -0
- pygithub-2.9.0/github/Environment.py +308 -0
- pygithub-2.9.0/github/EnvironmentDeploymentBranchPolicy.py +86 -0
- pygithub-2.9.0/github/Gist.py +353 -0
- pygithub-2.9.0/github/GistComment.py +157 -0
- pygithub-2.9.0/github/GitBlob.py +122 -0
- pygithub-2.9.0/github/GitRef.py +121 -0
- pygithub-2.9.0/github/GitRelease.py +460 -0
- pygithub-2.9.0/github/GitReleaseAsset.py +219 -0
- pygithub-2.9.0/github/GithubApp.py +235 -0
- pygithub-2.9.0/github/GithubIntegration.py +344 -0
- pygithub-2.9.0/github/GithubObject.py +745 -0
- pygithub-2.9.0/github/GitignoreTemplate.py +87 -0
- pygithub-2.9.0/github/Hook.py +233 -0
- pygithub-2.9.0/github/Issue.py +886 -0
- pygithub-2.9.0/github/IssueComment.py +304 -0
- pygithub-2.9.0/github/Label.py +164 -0
- pygithub-2.9.0/github/MainClass.py +1053 -0
- pygithub-2.9.0/github/Membership.py +151 -0
- pygithub-2.9.0/github/Milestone.py +249 -0
- pygithub-2.9.0/github/NamedUser.py +813 -0
- pygithub-2.9.0/github/Notification.py +174 -0
- pygithub-2.9.0/github/Organization.py +2407 -0
- pygithub-2.9.0/github/OrganizationCodeScanAlert.py +60 -0
- pygithub-2.9.0/github/OrganizationCustomProperty.py +200 -0
- pygithub-2.9.0/github/OrganizationSecret.py +155 -0
- pygithub-2.9.0/github/OrganizationSecretScanAlert.py +60 -0
- pygithub-2.9.0/github/OrganizationVariable.py +150 -0
- pygithub-2.9.0/github/PaginatedList.py +494 -0
- pygithub-2.9.0/github/Permissions.py +112 -0
- pygithub-2.9.0/github/Plan.py +107 -0
- pygithub-2.9.0/github/Project.py +282 -0
- pygithub-2.9.0/github/ProjectCard.py +245 -0
- pygithub-2.9.0/github/ProjectColumn.py +222 -0
- pygithub-2.9.0/github/PublicKey.py +137 -0
- pygithub-2.9.0/github/PullRequest.py +1168 -0
- pygithub-2.9.0/github/PullRequestComment.py +387 -0
- pygithub-2.9.0/github/PullRequestMergeStatus.py +88 -0
- pygithub-2.9.0/github/PullRequestReview.py +193 -0
- pygithub-2.9.0/github/RateLimitOverview.py +79 -0
- pygithub-2.9.0/github/Reaction.py +127 -0
- pygithub-2.9.0/github/Repository.py +4978 -0
- pygithub-2.9.0/github/RepositoryAdvisory.py +427 -0
- pygithub-2.9.0/github/RepositoryKey.py +165 -0
- pygithub-2.9.0/github/Requester.py +1424 -0
- pygithub-2.9.0/github/Secret.py +138 -0
- pygithub-2.9.0/github/SecretScanAlert.py +256 -0
- pygithub-2.9.0/github/SecretScanAlertInstance.py +126 -0
- pygithub-2.9.0/github/SourceImport.py +259 -0
- pygithub-2.9.0/github/Team.py +586 -0
- pygithub-2.9.0/github/TeamDiscussion.py +135 -0
- pygithub-2.9.0/github/TimelineEvent.py +158 -0
- pygithub-2.9.0/github/UserKey.py +140 -0
- pygithub-2.9.0/github/Variable.py +154 -0
- pygithub-2.9.0/github/Workflow.py +273 -0
- pygithub-2.9.0/github/WorkflowRun.py +466 -0
- pygithub-2.9.0/github/openapi.index.json +33 -0
- pygithub-2.9.0/pyproject.toml +105 -0
- pygithub-2.9.0/scripts/openapi-update-classes.sh +283 -0
- pygithub-2.9.0/scripts/openapi.py +3308 -0
- pygithub-2.9.0/scripts/sort_class.py +270 -0
- pygithub-2.9.0/tests/AuthenticatedUser.py +819 -0
- pygithub-2.9.0/tests/Authentication.py +372 -0
- pygithub-2.9.0/tests/Autolink.py +57 -0
- pygithub-2.9.0/tests/CheckRun.py +352 -0
- pygithub-2.9.0/tests/CheckSuite.py +182 -0
- pygithub-2.9.0/tests/CodeScanAlert.py +163 -0
- pygithub-2.9.0/tests/Commit.py +173 -0
- pygithub-2.9.0/tests/CommitCombinedStatus.py +91 -0
- pygithub-2.9.0/tests/CommitComment.py +107 -0
- pygithub-2.9.0/tests/CommitStatus.py +88 -0
- pygithub-2.9.0/tests/Connection.py +116 -0
- pygithub-2.9.0/tests/Deployment.py +105 -0
- pygithub-2.9.0/tests/Download.py +84 -0
- pygithub-2.9.0/tests/EnterpriseAdmin.py +79 -0
- pygithub-2.9.0/tests/Environment.py +260 -0
- pygithub-2.9.0/tests/Framework.py +634 -0
- pygithub-2.9.0/tests/Gist.py +174 -0
- pygithub-2.9.0/tests/GistComment.py +83 -0
- pygithub-2.9.0/tests/GitBlob.py +71 -0
- pygithub-2.9.0/tests/GitCommitVerification.py +55 -0
- pygithub-2.9.0/tests/GitRef.py +80 -0
- pygithub-2.9.0/tests/GitRelease.py +304 -0
- pygithub-2.9.0/tests/GitReleaseAsset.py +111 -0
- pygithub-2.9.0/tests/GithubIntegration.py +361 -0
- pygithub-2.9.0/tests/GithubObject.py +839 -0
- pygithub-2.9.0/tests/Hook.py +117 -0
- pygithub-2.9.0/tests/Installation.py +139 -0
- pygithub-2.9.0/tests/Issue.py +367 -0
- pygithub-2.9.0/tests/Issue214.py +76 -0
- pygithub-2.9.0/tests/Issue494.py +50 -0
- pygithub-2.9.0/tests/IssueComment.py +138 -0
- pygithub-2.9.0/tests/Label.py +77 -0
- pygithub-2.9.0/tests/Milestone.py +105 -0
- pygithub-2.9.0/tests/NamedUser.py +552 -0
- pygithub-2.9.0/tests/Organization.py +884 -0
- pygithub-2.9.0/tests/OrganizationCodeScanAlert.py +105 -0
- pygithub-2.9.0/tests/OrganizationDependabotAlert.py +110 -0
- pygithub-2.9.0/tests/OrganizationSecretScanAlert.py +119 -0
- pygithub-2.9.0/tests/PaginatedList.py +592 -0
- pygithub-2.9.0/tests/Project.py +80 -0
- pygithub-2.9.0/tests/PublicKey.py +68 -0
- pygithub-2.9.0/tests/PullRequest.py +679 -0
- pygithub-2.9.0/tests/PullRequestComment.py +128 -0
- pygithub-2.9.0/tests/PullRequestReview.py +109 -0
- pygithub-2.9.0/tests/PullRequestReview1856.py +36 -0
- pygithub-2.9.0/tests/Reaction.py +66 -0
- pygithub-2.9.0/tests/ReleaseAsset.py +140 -0
- pygithub-2.9.0/tests/ReplayData/BadAttributes.testBadTransformedAttributeInList.txt +10 -0
- pygithub-2.9.0/tests/ReplayData/Branch.testCommitCommentsOnLine.txt +21 -0
- pygithub-2.9.0/tests/ReplayData/CheckRun.setUp.txt +43 -0
- pygithub-2.9.0/tests/ReplayData/CheckSuite.setUp.txt +54 -0
- pygithub-2.9.0/tests/ReplayData/CodeScanAlert.setUp.txt +10 -0
- pygithub-2.9.0/tests/ReplayData/CodeScanAlert.testAttributes.txt +10 -0
- pygithub-2.9.0/tests/ReplayData/CodeScanAlert.testGetAlertsWithArguments.txt +10 -0
- pygithub-2.9.0/tests/ReplayData/CodeScanAlert.testMultipleAlerts.txt +10 -0
- pygithub-2.9.0/tests/ReplayData/CodeScanAlert.testRepr.txt +10 -0
- pygithub-2.9.0/tests/ReplayData/Commit.setUp.txt +32 -0
- pygithub-2.9.0/tests/ReplayData/Commit.testGetBranchesWhereHead.txt +32 -0
- pygithub-2.9.0/tests/ReplayData/Commit.testGetPulls.txt +43 -0
- pygithub-2.9.0/tests/ReplayData/CommitCombinedStatus.setUp.txt +10 -0
- pygithub-2.9.0/tests/ReplayData/CommitStatus.setUp.txt +43 -0
- pygithub-2.9.0/tests/ReplayData/CompletableGithubObjectWithPaginatedProperty.testPullCommitsFiles.txt +87 -0
- pygithub-2.9.0/tests/ReplayData/CompletableGithubObjectWithPaginatedProperty.testPullCommitsFilesDefault.txt +65 -0
- pygithub-2.9.0/tests/ReplayData/CompletableGithubObjectWithPaginatedProperty.testPullCommitsGetFiles.txt +87 -0
- pygithub-2.9.0/tests/ReplayData/CompletableGithubObjectWithPaginatedProperty.testPullCommitsGetFilesDefault.txt +65 -0
- pygithub-2.9.0/tests/ReplayData/CompletableGithubObjectWithPaginatedProperty.testPullCommitsGetFilesWithPerPage.txt +65 -0
- pygithub-2.9.0/tests/ReplayData/CompletableGithubObjectWithPaginatedProperty.testRepoCommitFiles.txt +54 -0
- pygithub-2.9.0/tests/ReplayData/CompletableGithubObjectWithPaginatedProperty.testRepoCommitFilesDefault.txt +32 -0
- pygithub-2.9.0/tests/ReplayData/CompletableGithubObjectWithPaginatedProperty.testRepoCommitFilesWithPerPage.txt +54 -0
- pygithub-2.9.0/tests/ReplayData/CompletableGithubObjectWithPaginatedProperty.testRepoCommitGetFiles.txt +65 -0
- pygithub-2.9.0/tests/ReplayData/CompletableGithubObjectWithPaginatedProperty.testRepoCommitGetFilesDefault.txt +43 -0
- pygithub-2.9.0/tests/ReplayData/CompletableGithubObjectWithPaginatedProperty.testRepoCommitGetFilesWithPerPage.txt +65 -0
- pygithub-2.9.0/tests/ReplayData/CompletableGithubObjectWithPaginatedProperty.testRepoCommitsFiles.txt +76 -0
- pygithub-2.9.0/tests/ReplayData/CompletableGithubObjectWithPaginatedProperty.testRepoComparisonCommitsFiles.txt +120 -0
- pygithub-2.9.0/tests/ReplayData/CompletableGithubObjectWithPaginatedProperty.testRepoComparisonCommitsFilesDefault.txt +76 -0
- pygithub-2.9.0/tests/ReplayData/CompletableGithubObjectWithPaginatedProperty.testRepoComparisonCommitsFilesReversed.txt +164 -0
- pygithub-2.9.0/tests/ReplayData/CompletableGithubObjectWithPaginatedProperty.testRepoComparisonCommitsFilesReversedWithPerPage.txt +164 -0
- pygithub-2.9.0/tests/ReplayData/CompletableGithubObjectWithPaginatedProperty.testRepoComparisonCommitsFilesWithPerPage.txt +120 -0
- pygithub-2.9.0/tests/ReplayData/EnterpriseAdmin.testGetConsumedLicenses.txt +10 -0
- pygithub-2.9.0/tests/ReplayData/EnterpriseAdmin.testGetEnterpriseGetUsers.txt +32 -0
- pygithub-2.9.0/tests/ReplayData/EnterpriseAdmin.testGetEnterpriseUsers.txt +43 -0
- pygithub-2.9.0/tests/ReplayData/ExposeAllAttributes.testAllClasses.txt +636 -0
- pygithub-2.9.0/tests/ReplayData/GitCommitVerification.setUp.txt +10 -0
- pygithub-2.9.0/tests/ReplayData/Issue.testEditResetAssignees.txt +10 -0
- pygithub-2.9.0/tests/ReplayData/Issue.testEditWithAllParameters.txt +32 -0
- pygithub-2.9.0/tests/ReplayData/Issue214.setUp.txt +32 -0
- pygithub-2.9.0/tests/ReplayData/Issue214.testEditIssue.txt +21 -0
- pygithub-2.9.0/tests/ReplayData/OrganizationCodeScanAlert.setUp.txt +10 -0
- pygithub-2.9.0/tests/ReplayData/OrganizationCodeScanAlert.testGetAlertsWithArguments.txt +10 -0
- pygithub-2.9.0/tests/ReplayData/OrganizationCodeScanAlert.testMultipleAlerts.txt +10 -0
- pygithub-2.9.0/tests/ReplayData/OrganizationCodeScanAlert.testRepr.txt +10 -0
- pygithub-2.9.0/tests/ReplayData/OrganizationDependabotAlert.setUp.txt +10 -0
- pygithub-2.9.0/tests/ReplayData/OrganizationDependabotAlert.testGetAlertsWithAllArguments.txt +10 -0
- pygithub-2.9.0/tests/ReplayData/OrganizationDependabotAlert.testMultipleAlerts.txt +10 -0
- pygithub-2.9.0/tests/ReplayData/OrganizationDependabotAlert.testRepr.txt +10 -0
- pygithub-2.9.0/tests/ReplayData/OrganizationSecretScanAlert.setUp.txt +10 -0
- pygithub-2.9.0/tests/ReplayData/OrganizationSecretScanAlert.testGetAlertsWithAllArguments.txt +10 -0
- pygithub-2.9.0/tests/ReplayData/OrganizationSecretScanAlert.testMultipleAlerts.txt +10 -0
- pygithub-2.9.0/tests/ReplayData/OrganizationSecretScanAlert.testRepr.txt +10 -0
- pygithub-2.9.0/tests/ReplayData/PaginatedList.setUp.txt +32 -0
- pygithub-2.9.0/tests/ReplayData/PaginatedList.testCustomPerPageReversedIterationSinglePage.txt +43 -0
- pygithub-2.9.0/tests/ReplayData/PaginatedList.testReversedWithFirstPage.txt +43 -0
- pygithub-2.9.0/tests/ReplayData/PaginatedList.testReversedWithFirstSinglePage.txt +21 -0
- pygithub-2.9.0/tests/ReplayData/PaginatedList.testTotalCountWithDeprecationLink.txt +10 -0
- pygithub-2.9.0/tests/ReplayData/PaginatedList.testWithFirstPage.txt +32 -0
- pygithub-2.9.0/tests/ReplayData/PaginatedList.testWithFirstSinglePage.txt +10 -0
- pygithub-2.9.0/tests/ReplayData/PullRequest.testCreateComment.txt +21 -0
- pygithub-2.9.0/tests/ReplayData/PullRequest.testCreateMultilineReviewComment.txt +21 -0
- pygithub-2.9.0/tests/ReplayData/PullRequest.testCreateMultilineReviewCommentAsSuggestion.txt +21 -0
- pygithub-2.9.0/tests/ReplayData/PullRequest.testCreateMultilineReviewCommentChoosingSide.txt +21 -0
- pygithub-2.9.0/tests/ReplayData/PullRequest.testCreateReviewCommentInReplyTo.txt +21 -0
- pygithub-2.9.0/tests/ReplayData/PullRequest.testCreateReviewCommentSubjectType.txt +21 -0
- pygithub-2.9.0/tests/ReplayData/PullRequestReview.setUp.txt +21 -0
- pygithub-2.9.0/tests/ReplayData/PullRequestReview.testDoesNotModifyPullRequest.txt +10 -0
- pygithub-2.9.0/tests/ReplayData/PullRequestReview1856.testDelete.txt +32 -0
- pygithub-2.9.0/tests/ReplayData/Repository.testCompare.txt +10 -0
- pygithub-2.9.0/tests/ReplayData/Repository.testCompareCommitPagination.txt +21 -0
- pygithub-2.9.0/tests/ReplayData/Repository.testCompareCommitsPerPage.txt +21 -0
- pygithub-2.9.0/tests/ReplayData/Repository.testEditWithAllArguments.txt +32 -0
- pygithub-2.9.0/tests/ReplayData/Repository.testGetIssuesWithTypeArgument.txt +21 -0
- pygithub-2.9.0/tests/ReplayData/Repository.testGetIssuesWithTypeWildcard.txt +21 -0
- pygithub-2.9.0/tests/ReplayData/SecretScanAlert.setUp.txt +10 -0
- pygithub-2.9.0/tests/ReplayData/SecretScanAlert.testAttributes.txt +10 -0
- pygithub-2.9.0/tests/ReplayData/SecretScanAlert.testGetAlertsWithAllArguments.txt +10 -0
- pygithub-2.9.0/tests/ReplayData/SecretScanAlert.testMultipleAlerts.txt +10 -0
- pygithub-2.9.0/tests/ReplayData/SecretScanAlert.testRepr.txt +10 -0
- pygithub-2.9.0/tests/ReplayData/Team.testMembers.txt +119 -0
- pygithub-2.9.0/tests/ReplayData/Workflow.testCreateDispatchException.txt +32 -0
- pygithub-2.9.0/tests/Repository.py +2495 -0
- pygithub-2.9.0/tests/RepositoryKey.py +98 -0
- pygithub-2.9.0/tests/Requester.py +658 -0
- pygithub-2.9.0/tests/SecretScanAlert.py +138 -0
- pygithub-2.9.0/tests/Team.py +228 -0
- pygithub-2.9.0/tests/Workflow.py +181 -0
- pygithub-2.9.0/tox.ini +39 -0
- pygithub-2.8.1/.github/actions/pre-commit/action.yml +0 -24
- pygithub-2.8.1/.github/workflows/_build-pkg.yml +0 -32
- pygithub-2.8.1/.github/workflows/ci.yml +0 -297
- pygithub-2.8.1/.github/workflows/codeql.yml +0 -100
- pygithub-2.8.1/.github/workflows/lint.yml +0 -34
- pygithub-2.8.1/.github/workflows/openapi.yml +0 -155
- pygithub-2.8.1/.github/workflows/pypi-release.yml +0 -29
- pygithub-2.8.1/.github/workflows/test-results.yml +0 -33
- pygithub-2.8.1/.pre-commit-config.yaml +0 -47
- pygithub-2.8.1/PKG-INFO +0 -103
- pygithub-2.8.1/PyGithub.egg-info/PKG-INFO +0 -103
- pygithub-2.8.1/PyGithub.egg-info/SOURCES.txt +0 -1340
- pygithub-2.8.1/doc/changes.rst +0 -2065
- pygithub-2.8.1/doc/conf.py +0 -396
- pygithub-2.8.1/doc/examples.rst +0 -14
- pygithub-2.8.1/doc/introduction.rst +0 -103
- pygithub-2.8.1/doc/utilities.rst +0 -57
- pygithub-2.8.1/github/AuthenticatedUser.py +0 -1179
- pygithub-2.8.1/github/Autolink.py +0 -95
- pygithub-2.8.1/github/Branch.py +0 -660
- pygithub-2.8.1/github/CheckRun.py +0 -309
- pygithub-2.8.1/github/CheckSuite.py +0 -314
- pygithub-2.8.1/github/CodeScanAlert.py +0 -172
- pygithub-2.8.1/github/CodeScanAlertInstance.py +0 -126
- pygithub-2.8.1/github/CodeScanRule.py +0 -98
- pygithub-2.8.1/github/CodeScanTool.py +0 -89
- pygithub-2.8.1/github/Commit.py +0 -393
- pygithub-2.8.1/github/CommitCombinedStatus.py +0 -114
- pygithub-2.8.1/github/CommitComment.py +0 -263
- pygithub-2.8.1/github/CommitStatus.py +0 -160
- pygithub-2.8.1/github/Comparison.py +0 -170
- pygithub-2.8.1/github/Deployment.py +0 -307
- pygithub-2.8.1/github/Download.py +0 -249
- pygithub-2.8.1/github/Enterprise.py +0 -176
- pygithub-2.8.1/github/EnterpriseConsumedLicenses.py +0 -111
- pygithub-2.8.1/github/Environment.py +0 -302
- pygithub-2.8.1/github/EnvironmentDeploymentBranchPolicy.py +0 -82
- pygithub-2.8.1/github/Gist.py +0 -345
- pygithub-2.8.1/github/GistComment.py +0 -152
- pygithub-2.8.1/github/GitBlob.py +0 -105
- pygithub-2.8.1/github/GitRef.py +0 -120
- pygithub-2.8.1/github/GitRelease.py +0 -442
- pygithub-2.8.1/github/GitReleaseAsset.py +0 -213
- pygithub-2.8.1/github/GithubApp.py +0 -232
- pygithub-2.8.1/github/GithubIntegration.py +0 -345
- pygithub-2.8.1/github/GithubObject.py +0 -641
- pygithub-2.8.1/github/GitignoreTemplate.py +0 -79
- pygithub-2.8.1/github/Hook.py +0 -227
- pygithub-2.8.1/github/Issue.py +0 -861
- pygithub-2.8.1/github/IssueComment.py +0 -298
- pygithub-2.8.1/github/Label.py +0 -159
- pygithub-2.8.1/github/MainClass.py +0 -1067
- pygithub-2.8.1/github/Membership.py +0 -150
- pygithub-2.8.1/github/Milestone.py +0 -245
- pygithub-2.8.1/github/NamedUser.py +0 -773
- pygithub-2.8.1/github/Notification.py +0 -176
- pygithub-2.8.1/github/Organization.py +0 -2274
- pygithub-2.8.1/github/OrganizationCustomProperty.py +0 -192
- pygithub-2.8.1/github/OrganizationSecret.py +0 -140
- pygithub-2.8.1/github/OrganizationVariable.py +0 -136
- pygithub-2.8.1/github/PaginatedList.py +0 -459
- pygithub-2.8.1/github/Permissions.py +0 -111
- pygithub-2.8.1/github/Plan.py +0 -106
- pygithub-2.8.1/github/Project.py +0 -277
- pygithub-2.8.1/github/ProjectCard.py +0 -245
- pygithub-2.8.1/github/ProjectColumn.py +0 -222
- pygithub-2.8.1/github/PublicKey.py +0 -137
- pygithub-2.8.1/github/PullRequest.py +0 -1163
- pygithub-2.8.1/github/PullRequestComment.py +0 -380
- pygithub-2.8.1/github/PullRequestMergeStatus.py +0 -84
- pygithub-2.8.1/github/PullRequestReview.py +0 -160
- pygithub-2.8.1/github/RateLimitOverview.py +0 -71
- pygithub-2.8.1/github/Reaction.py +0 -113
- pygithub-2.8.1/github/Repository.py +0 -4787
- pygithub-2.8.1/github/RepositoryAdvisory.py +0 -425
- pygithub-2.8.1/github/RepositoryKey.py +0 -161
- pygithub-2.8.1/github/Requester.py +0 -1397
- pygithub-2.8.1/github/Secret.py +0 -130
- pygithub-2.8.1/github/SourceImport.py +0 -256
- pygithub-2.8.1/github/Team.py +0 -554
- pygithub-2.8.1/github/TeamDiscussion.py +0 -130
- pygithub-2.8.1/github/TimelineEvent.py +0 -154
- pygithub-2.8.1/github/UserKey.py +0 -139
- pygithub-2.8.1/github/Variable.py +0 -143
- pygithub-2.8.1/github/Workflow.py +0 -258
- pygithub-2.8.1/github/WorkflowRun.py +0 -462
- pygithub-2.8.1/github/openapi.index.json +0 -32
- pygithub-2.8.1/pyproject.toml +0 -105
- pygithub-2.8.1/scripts/openapi-update-classes.sh +0 -283
- pygithub-2.8.1/scripts/openapi.py +0 -3198
- pygithub-2.8.1/scripts/sort_class.py +0 -269
- pygithub-2.8.1/tests/AuthenticatedUser.py +0 -800
- pygithub-2.8.1/tests/Authentication.py +0 -370
- pygithub-2.8.1/tests/Autolink.py +0 -56
- pygithub-2.8.1/tests/CheckRun.py +0 -346
- pygithub-2.8.1/tests/CheckSuite.py +0 -176
- pygithub-2.8.1/tests/Commit.py +0 -166
- pygithub-2.8.1/tests/CommitCombinedStatus.py +0 -88
- pygithub-2.8.1/tests/CommitComment.py +0 -101
- pygithub-2.8.1/tests/CommitStatus.py +0 -87
- pygithub-2.8.1/tests/Connection.py +0 -113
- pygithub-2.8.1/tests/Deployment.py +0 -99
- pygithub-2.8.1/tests/Download.py +0 -77
- pygithub-2.8.1/tests/EnterpriseAdmin.py +0 -70
- pygithub-2.8.1/tests/Environment.py +0 -251
- pygithub-2.8.1/tests/Framework.py +0 -530
- pygithub-2.8.1/tests/Gist.py +0 -168
- pygithub-2.8.1/tests/GistComment.py +0 -77
- pygithub-2.8.1/tests/GitBlob.py +0 -69
- pygithub-2.8.1/tests/GitCommitVerification.py +0 -53
- pygithub-2.8.1/tests/GitRef.py +0 -74
- pygithub-2.8.1/tests/GitRelease.py +0 -292
- pygithub-2.8.1/tests/GitReleaseAsset.py +0 -105
- pygithub-2.8.1/tests/GithubIntegration.py +0 -309
- pygithub-2.8.1/tests/GithubObject.py +0 -250
- pygithub-2.8.1/tests/Hook.py +0 -111
- pygithub-2.8.1/tests/Installation.py +0 -138
- pygithub-2.8.1/tests/Issue.py +0 -356
- pygithub-2.8.1/tests/Issue214.py +0 -75
- pygithub-2.8.1/tests/Issue494.py +0 -49
- pygithub-2.8.1/tests/IssueComment.py +0 -132
- pygithub-2.8.1/tests/Label.py +0 -70
- pygithub-2.8.1/tests/Milestone.py +0 -98
- pygithub-2.8.1/tests/NamedUser.py +0 -505
- pygithub-2.8.1/tests/Organization.py +0 -866
- pygithub-2.8.1/tests/PaginatedList.py +0 -411
- pygithub-2.8.1/tests/Project.py +0 -74
- pygithub-2.8.1/tests/PublicKey.py +0 -65
- pygithub-2.8.1/tests/PullRequest.py +0 -673
- pygithub-2.8.1/tests/PullRequestComment.py +0 -122
- pygithub-2.8.1/tests/PullRequestReview.py +0 -102
- pygithub-2.8.1/tests/PullRequestReview1856.py +0 -37
- pygithub-2.8.1/tests/Reaction.py +0 -61
- pygithub-2.8.1/tests/ReleaseAsset.py +0 -139
- pygithub-2.8.1/tests/ReplayData/BadAttributes.testBadTransformedAttributeInList.txt +0 -10
- pygithub-2.8.1/tests/ReplayData/Branch.testCommitCommentsOnLine.txt +0 -21
- pygithub-2.8.1/tests/ReplayData/CheckRun.setUp.txt +0 -43
- pygithub-2.8.1/tests/ReplayData/CheckSuite.setUp.txt +0 -54
- pygithub-2.8.1/tests/ReplayData/Commit.setUp.txt +0 -32
- pygithub-2.8.1/tests/ReplayData/Commit.testGetBranchesWhereHead.txt +0 -32
- pygithub-2.8.1/tests/ReplayData/Commit.testGetPulls.txt +0 -43
- pygithub-2.8.1/tests/ReplayData/CommitCombinedStatus.setUp.txt +0 -21
- pygithub-2.8.1/tests/ReplayData/CommitStatus.setUp.txt +0 -43
- pygithub-2.8.1/tests/ReplayData/EnterpriseAdmin.testGetConsumedLicenses.txt +0 -10
- pygithub-2.8.1/tests/ReplayData/EnterpriseAdmin.testGetEnterpriseUsers.txt +0 -43
- pygithub-2.8.1/tests/ReplayData/ExposeAllAttributes.testAllClasses.txt +0 -636
- pygithub-2.8.1/tests/ReplayData/GitCommitVerification.setUp.txt +0 -10
- pygithub-2.8.1/tests/ReplayData/Issue.testEditResetAssignee.txt +0 -10
- pygithub-2.8.1/tests/ReplayData/Issue.testEditWithAllParameters.txt +0 -32
- pygithub-2.8.1/tests/ReplayData/Issue214.setUp.txt +0 -32
- pygithub-2.8.1/tests/ReplayData/Issue214.testEditIssue.txt +0 -21
- pygithub-2.8.1/tests/ReplayData/PaginatedList.setUp.txt +0 -32
- pygithub-2.8.1/tests/ReplayData/PullRequest.testCreateComment.txt +0 -21
- pygithub-2.8.1/tests/ReplayData/PullRequest.testCreateMultilineReviewComment.txt +0 -21
- pygithub-2.8.1/tests/ReplayData/PullRequest.testCreateMultilineReviewCommentAsSuggestion.txt +0 -21
- pygithub-2.8.1/tests/ReplayData/PullRequest.testCreateMultilineReviewCommentChoosingSide.txt +0 -21
- pygithub-2.8.1/tests/ReplayData/PullRequest.testCreateReviewCommentInReplyTo.txt +0 -21
- pygithub-2.8.1/tests/ReplayData/PullRequest.testCreateReviewCommentSubjectType.txt +0 -21
- pygithub-2.8.1/tests/ReplayData/PullRequestReview.setUp.txt +0 -43
- pygithub-2.8.1/tests/ReplayData/PullRequestReview1856.setUp.txt +0 -21
- pygithub-2.8.1/tests/ReplayData/PullRequestReview1856.testDelete.txt +0 -21
- pygithub-2.8.1/tests/ReplayData/Repository.testCompare.txt +0 -10
- pygithub-2.8.1/tests/ReplayData/Repository.testCompareCommitPagination.txt +0 -43
- pygithub-2.8.1/tests/ReplayData/Repository.testEditWithAllArguments.txt +0 -21
- pygithub-2.8.1/tests/ReplayData/Team.testMembers.txt +0 -119
- pygithub-2.8.1/tests/Repository.py +0 -2326
- pygithub-2.8.1/tests/RepositoryKey.py +0 -92
- pygithub-2.8.1/tests/Requester.py +0 -624
- pygithub-2.8.1/tests/Team.py +0 -218
- pygithub-2.8.1/tests/Workflow.py +0 -159
- pygithub-2.8.1/tox.ini +0 -38
- {pygithub-2.8.1 → pygithub-2.9.0}/.git-blame-ignore-revs +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/.github/FUNDING.yml +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/.github/actions/mypy/action.yml +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/.github/actions/sort-classes/action.yml +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/.github/dependabot.yml +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/.github/release.yml +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/.github/workflows/auto-fix.yml +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/.github/workflows/top-issues.yaml +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/.gitignore +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/.readthedocs.yml +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/CONTRIBUTING.md +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/COPYING +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/COPYING.LESSER +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/DEPLOY.md +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/MAINTAINERS +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/PyGithub.egg-info/dependency_links.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/PyGithub.egg-info/requires.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/PyGithub.egg-info/top_level.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/README.md +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/codecov.yml +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/doc/.gitignore +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/doc/Design.md +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/doc/development.rst +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/doc/examples/Authentication.rst +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/doc/examples/Branch.rst +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/doc/examples/Commit.rst +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/doc/examples/Issue.rst +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/doc/examples/MainClass.rst +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/doc/examples/Milestone.rst +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/doc/examples/PullRequest.rst +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/doc/examples/Repository.rst +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/doc/examples/Webhook.rst +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/doc/getting-started.rst +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/doc/github.rst +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/doc/github_integration.rst +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/doc/github_objects/.gitignore +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/doc/graphql.rst +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/doc/index.rst +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/doc/openapi.rst +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/doc/reference.rst +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/doc/scripts.rst +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/doc/testing.rst +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/github/AccessToken.py +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/github/AdvisoryBase.py +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/github/AdvisoryCredit.py +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/github/AdvisoryCreditDetailed.py +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/github/AdvisoryVulnerability.py +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/github/AdvisoryVulnerabilityPackage.py +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/github/AppAuthentication.py +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/github/ApplicationOAuth.py +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/github/Artifact.py +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/github/Auth.py +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/github/Authorization.py +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/github/AuthorizationApplication.py +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/github/BranchProtection.py +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/github/CVSS.py +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/github/CWE.py +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/github/CheckRunAnnotation.py +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/github/CheckRunOutput.py +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/github/Clones.py +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/github/CodeScanAlertInstanceLocation.py +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/github/CodeSecurityConfig.py +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/github/CodeSecurityConfigRepository.py +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/github/CommitStats.py +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/github/Consts.py +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/github/ContentFile.py +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/github/Copilot.py +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/github/CopilotSeat.py +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/github/DefaultCodeSecurityConfig.py +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/github/DependabotAlert.py +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/github/DependabotAlertAdvisory.py +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/github/DependabotAlertDependency.py +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/github/DependabotAlertVulnerability.py +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/github/DeploymentStatus.py +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/github/DiscussionBase.py +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/github/DiscussionCommentBase.py +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/github/EnvironmentProtectionRule.py +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/github/EnvironmentProtectionRuleReviewer.py +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/github/Event.py +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/github/File.py +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/github/GeneratedReleaseNotes.py +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/github/GistFile.py +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/github/GistHistoryState.py +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/github/GitAuthor.py +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/github/GitCommit.py +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/github/GitCommitVerification.py +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/github/GitObject.py +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/github/GitTag.py +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/github/GitTree.py +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/github/GitTreeElement.py +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/github/GithubException.py +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/github/GithubRetry.py +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/github/GlobalAdvisory.py +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/github/HookDelivery.py +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/github/HookDescription.py +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/github/HookResponse.py +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/github/InputFileContent.py +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/github/InputGitAuthor.py +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/github/InputGitTreeElement.py +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/github/Installation.py +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/github/InstallationAuthorization.py +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/github/Invitation.py +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/github/IssueDependenciesSummary.py +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/github/IssueEvent.py +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/github/IssuePullRequest.py +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/github/IssueType.py +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/github/License.py +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/github/MergedUpstream.py +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/github/Migration.py +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/github/NamedEnterpriseUser.py +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/github/NotificationSubject.py +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/github/OrganizationDependabotAlert.py +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/github/Path.py +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/github/PullRequestPart.py +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/github/Rate.py +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/github/RateLimit.py +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/github/Referrer.py +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/github/RepoCodeSecurityConfig.py +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/github/RepositoryDiscussion.py +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/github/RepositoryDiscussionCategory.py +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/github/RepositoryDiscussionComment.py +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/github/RepositoryPreferences.py +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/github/RequiredPullRequestReviews.py +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/github/RequiredStatusChecks.py +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/github/SecurityAndAnalysis.py +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/github/SecurityAndAnalysisFeature.py +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/github/SelfHostedActionsRunner.py +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/github/SelfHostedActionsRunnerApplication.py +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/github/SelfHostedActionsRunnerJitConfig.py +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/github/SelfHostedActionsRunnerToken.py +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/github/Stargazer.py +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/github/StatsCodeFrequency.py +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/github/StatsCommitActivity.py +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/github/StatsContributor.py +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/github/StatsParticipation.py +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/github/StatsPunchCard.py +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/github/SubIssueSummary.py +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/github/Tag.py +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/github/TimelineEventSource.py +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/github/Topic.py +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/github/Traffic.py +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/github/View.py +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/github/WorkflowJob.py +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/github/WorkflowStep.py +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/github/__init__.py +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/github/py.typed +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/requirements/docs.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/requirements/scripts.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/requirements/test.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/requirements/types.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/scripts/fix_headers.py +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/scripts/get-openapi-path.sh +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/scripts/get-openapi-schema.sh +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/scripts/prepare-for-update-assertions.py +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/scripts/prepare_release.sh +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/scripts/update-assertions.sh +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/setup.cfg +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ApplicationOAuth.py +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/Artifact.py +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/Authorization.py +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/BadAttributes.py +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/Branch.py +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/BranchProtection.py +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ConditionalRequestUpdate.py +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ContentFile.py +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/Copilot.py +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/DependabotAlert.py +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/DeploymentStatus.py +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/Enterprise.py +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/Equality.py +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/Event.py +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/Exceptions.py +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ExposeAllAttributes.py +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/GitCommit.py +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/GitTag.py +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/GitTree.py +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/GithubApp.py +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/GithubRetry.py +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/Github_.py +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/GlobalAdvisory.py +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/GraphQl.py +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/Issue131.py +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/Issue133.py +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/Issue134.py +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/Issue139.py +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/Issue140.py +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/Issue142.py +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/Issue174.py +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/Issue2030.py +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/Issue216.py +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/Issue278.py +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/Issue33.py +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/Issue50.py +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/Issue54.py +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/Issue572.py +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/Issue80.py +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/Issue823.py +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/Issue87.py +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/Issue937.py +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/Issue945.py +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/IssueDependenciesSummary.py +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/IssueEvent.py +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/IssueType.py +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/License.py +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/Logging_.py +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/Markdown.py +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/Membership.py +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/Migration.py +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/NamedUser1430.py +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/Notification.py +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/Organization1437.py +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/OrganizationHasInMembers.py +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/Permissions.py +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/Persistence.py +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/Pickle.py +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/PoolSize.py +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/Project1434.py +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ProjectCard.py +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ProjectColumn.py +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/PullRequest1168.py +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/PullRequest1169.py +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/PullRequest1375.py +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/PullRequest1682.py +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/PullRequest1684.py +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/PullRequest2408.py +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/PullRequestFile.py +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/RateLimitOverview.py +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/RateLimiting.py +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/RawData.py +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/ApplicationOAuth.testEnterpriseGetAccessToken.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/ApplicationOAuth.testGetAccessToken.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/ApplicationOAuth.testGetAccessTokenBadCode.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/ApplicationOAuth.testGetAccessTokenUnknownError.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/ApplicationOAuth.testGetAccessTokenWithExpiry.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/ApplicationOAuth.testRefreshAccessToken.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/ApplicationOAuth.testRefreshAccessTokenBadCode.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/ApplicationOAuth.testRefreshAccessTokenUnknownError.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Artifact.setUp.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Artifact.testDelete.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Artifact.testGetArtifactsFromRepo.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Artifact.testGetArtifactsFromRepoWithName.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Artifact.testGetArtifactsFromWorkflow.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Artifact.testGetArtifactsFromWorkflowWithName.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Artifact.testGetNonexistentArtifact.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Artifact.testGetSingleArtifactFromRepo.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/AuthenticatedUser.testAcceptInvitation.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/AuthenticatedUser.testAttributes.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/AuthenticatedUser.testCreateAuthorizationWithAllArguments.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/AuthenticatedUser.testCreateAuthorizationWithClientIdAndSecret.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/AuthenticatedUser.testCreateAuthorizationWithoutArguments.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/AuthenticatedUser.testCreateFork.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/AuthenticatedUser.testCreateGist.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/AuthenticatedUser.testCreateGistWithoutDescription.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/AuthenticatedUser.testCreateKey.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/AuthenticatedUser.testCreateMigration.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/AuthenticatedUser.testCreateProject.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/AuthenticatedUser.testCreateRepoFromTemplate.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/AuthenticatedUser.testCreateRepoFromTemplateWithAllArguments.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/AuthenticatedUser.testCreateRepository.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/AuthenticatedUser.testCreateRepositoryWithAllArguments.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/AuthenticatedUser.testCreateRepositoryWithAutoInit.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/AuthenticatedUser.testEditWithAllArguments.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/AuthenticatedUser.testEditWithoutArguments.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/AuthenticatedUser.testEmails.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/AuthenticatedUser.testFollowing.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/AuthenticatedUser.testGetAuthorizations.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/AuthenticatedUser.testGetEvents.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/AuthenticatedUser.testGetGists.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/AuthenticatedUser.testGetInvitations.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/AuthenticatedUser.testGetIssues.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/AuthenticatedUser.testGetIssuesWithAllArguments.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/AuthenticatedUser.testGetKeys.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/AuthenticatedUser.testGetMemberships.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/AuthenticatedUser.testGetMigrations.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/AuthenticatedUser.testGetNotification.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/AuthenticatedUser.testGetNotifications.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/AuthenticatedUser.testGetNotificationsWithOtherArguments.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/AuthenticatedUser.testGetOrganizationEvents.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/AuthenticatedUser.testGetOrgs.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/AuthenticatedUser.testGetRepos.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/AuthenticatedUser.testGetReposWithArguments.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/AuthenticatedUser.testGetStarredGists.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/AuthenticatedUser.testGetTeams.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/AuthenticatedUser.testGetUserIssues.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/AuthenticatedUser.testGetUserIssuesWithAllArguments.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/AuthenticatedUser.testInstallations.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/AuthenticatedUser.testMarkNotificationsAsRead.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/AuthenticatedUser.testStarring.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/AuthenticatedUser.testSubscriptions.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/AuthenticatedUser.testWatching.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Authentication.testAppAuthAuthentication.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Authentication.testAppAuthTokenAuthentication.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Authentication.testAppAuthentication.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Authentication.testAppInstallationAuthAuthentication.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Authentication.testAppUserAuthentication.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Authentication.testAuthorizationHeaderWithLogin.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Authentication.testAuthorizationHeaderWithToken.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Authentication.testBasicAuthentication.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Authentication.testJWTAuthentication.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Authentication.testLoginAuthentication.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Authentication.testNoAuthentication.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Authentication.testOAuthAuthentication.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Authentication.testTokenAuthentication.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Authentication.testUserAgent.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Authorization.setUp.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Authorization.testDelete.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Authorization.testEdit.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Autolink.setUp.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/BadAttributes.testBadAttributeInClassAttribute.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/BadAttributes.testBadAttributeTransformation.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/BadAttributes.testBadSimpleAttribute.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/BadAttributes.testBadSimpleAttributeInList.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/BadAttributes.testBadTransformedAttribute.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/BadAttributes.testBadTransformedAttributeInDict.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/BadAttributes.testIssue195.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Branch.setUp.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Branch.testAddRequiredSignatures.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Branch.testAddTeamPushRestrictions.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Branch.testAddUserPushRestrictions.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Branch.testAdminEnforcement.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Branch.testAllowDeletions.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Branch.testEditProtection.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Branch.testEditProtectionDismissalUsersWithUserOwnedBranch.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Branch.testEditProtectionPushRestrictionsAndDismissalUser.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Branch.testEditProtectionPushRestrictionsWithUserOwnedBranch.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Branch.testEditRequiredPullRequestReviews.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Branch.testEditRequiredPullRequestReviewsWithTooLargeApprovingReviewCount.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Branch.testEditRequiredPullRequestReviewsWithUserBranchAndDismissalUsers.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Branch.testEditRequiredStatusChecks.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Branch.testEditRequiredStatusChecksChecks.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Branch.testEditRequiredStatusChecksContexts.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Branch.testGetRequiredSignatures.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Branch.testProtectedAttributes.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Branch.testRemoveProtection.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Branch.testRemovePushRestrictions.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Branch.testRemoveRequiredPullRequestReviews.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Branch.testRemoveRequiredSignatures.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Branch.testRemoveRequiredStatusChecks.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Branch.testRemoveTeamPushRestrictions.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Branch.testRemoveUserPushRestrictions.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Branch.testReplaceTeamPushRestrictions.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Branch.testReplaceUserPushRestrictions.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/BranchProtection.setUp.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/CheckRun.testAttributes.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/CheckRun.testCheckRunAnnotationAttributes.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/CheckRun.testCheckRunOutputAttributes.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/CheckRun.testCreateCheckRunCompleted.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/CheckRun.testCreateCheckRunInProgress.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/CheckRun.testGetCheckRunsForRef.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/CheckRun.testGetCheckRunsForRefFilterByCheckName.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/CheckRun.testGetCheckRunsForRefFilterByFilter.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/CheckRun.testGetCheckRunsForRefFilterByStatus.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/CheckRun.testListCheckRunAnnotations.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/CheckRun.testUpdateCheckRunAll.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/CheckRun.testUpdateCheckRunFailure.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/CheckRun.testUpdateCheckRunSuccess.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/CheckSuite.testCheckSuiteRerequest.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/CheckSuite.testCreateCheckSuite.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/CheckSuite.testGetCheckRuns.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/CheckSuite.testGetCheckRunsFilterByCheckName.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/CheckSuite.testGetCheckRunsFilterByFilter.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/CheckSuite.testGetCheckRunsFilterByStatus.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/CheckSuite.testGetCheckSuitesForRef.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/CheckSuite.testGetCheckSuitesForRefFilterByAppId.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/CheckSuite.testGetCheckSuitesForRefFilterByCheckName.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/CheckSuite.testUpdateCheckSuitesPreferences.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Commit.testAttributes.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Commit.testCreateComment.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Commit.testCreateCommentOnFileLine.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Commit.testCreateCommentOnFilePosition.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Commit.testCreateStatusWithAllParameters.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Commit.testCreateStatusWithoutOptionalParameters.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Commit.testGetComments.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/CommitComment.setUp.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/CommitComment.testCreateReaction.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/CommitComment.testDelete.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/CommitComment.testDeleteReaction.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/CommitComment.testEdit.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/CommitComment.testGetReactions.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/ConditionalRequestUpdate.setUp.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/ConditionalRequestUpdate.testDidNotUpdate.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/ConditionalRequestUpdate.testDidUpdate.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/ConditionalRequestUpdate.testUpdateObjectWithoutEtag.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/ContentFile.setUp.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Copilot.setUp.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Copilot.testAddSeats.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Copilot.testAttributes.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Copilot.testGetSeats.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Copilot.testRemoveSeats.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/DependabotAlert.setUp.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/DependabotAlert.testAttributes.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/DependabotAlert.testGetAlertsWithAllArguments.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/DependabotAlert.testMultipleAlerts.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/DependabotAlert.testRepr.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/DependabotAlert.testUpdateAlertDismissed.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/DependabotAlert.testUpdateAlertOpen.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Deployment.setUp.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/DeploymentStatus.setUp.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/DeploymentStatus.testCreate.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/DeploymentStatus.testGetStatuses.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Download.setUp.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Download.testDelete.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Enterprise.testHttp.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Enterprise.testHttps.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Enterprise.testLongUrl.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Enterprise.testSpecificPort.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Environment.setUp.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Environment.testCreateEnvironment.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Environment.testDeleteEnvironment.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Environment.testEnvironmentSecret.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Environment.testEnvironmentSecrets.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Environment.testEnvironmentVariable.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Environment.testEnvironmentVariables.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Environment.testGetEnvironments.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Environment.testReviewers.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Environment.testUpdateEnvironment.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Equality.testBranchEquality.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Equality.testUserDifference.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Equality.testUserEquality.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Event.setUp.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Exceptions.testBadAuthentication.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Exceptions.testInvalidInput.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Exceptions.testJSONParseError.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Exceptions.testNonJsonDataReturnedByGithub.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Exceptions.testUnknownObject.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Exceptions.testUnknownUser.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Gist.testAttributes.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Gist.testCreateComment.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Gist.testDelete.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Gist.testDeleteFile.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Gist.testEditWithAllParameters.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Gist.testEditWithoutParameters.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Gist.testFork.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Gist.testGetComments.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Gist.testRenameFile.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Gist.testStarring.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/GistComment.setUp.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/GistComment.testDelete.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/GistComment.testEdit.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/GitBlob.setUp.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/GitCommit.setUp.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/GitRef.setUp.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/GitRef.testDelete.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/GitRef.testEdit.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/GitRef.testEditWithForce.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/GitRelease.setUp.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/GitRelease.testCreateGitTagAndRelease.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/GitRelease.testDelete.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/GitRelease.testGetAssets.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/GitRelease.testGetLatestRelease.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/GitRelease.testGetRelease.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/GitRelease.testUpdate.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/GitRelease.testUploadAsset.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/GitRelease.testUploadAssetFileLike.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/GitRelease.testUploadAssetFromMemory.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/GitRelease.testUploadAssetWithName.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/GitReleaseAsset.setUp.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/GitReleaseAsset.testDownloadAssetFile.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/GitReleaseAsset.testDownloadAssetStream.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/GitTag.setUp.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/GitTree.setUp.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Github.testGetEmojis.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Github.testGetEvents.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Github.testGetGists.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Github.testGetGistsWithSince.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Github.testGetGitignoreTemplate.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Github.testGetGitignoreTemplates.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Github.testGetGlobalAdvisories.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Github.testGetGlobalAdvisoriesByCVE.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Github.testGetGlobalAdvisoriesByGHSA.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Github.testGetGlobalAdvisoriesManyFilters.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Github.testGetHook.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Github.testGetHookDeliveries.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Github.testGetHookDelivery.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Github.testGetHooks.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Github.testGetLicense.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Github.testGetLicenses.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Github.testGetOrganizations.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Github.testGetOrganizationsSince.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Github.testGetRepoFromFullName.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Github.testGetRepoFromId.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Github.testGetRepos.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Github.testGetReposSince.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Github.testGetRepositoryDiscussion.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Github.testGetUserById.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Github.testGetUsers.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Github.testGetUsersSince.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Github.testSearchRepos.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Github.testSearchUserByEmail.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Github.testSearchUsers.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/GithubApp.setUp.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/GithubApp.testGetAuthenticatedApp.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/GithubIntegration.testAppAuth.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/GithubIntegration.testDeprecatedAppAuth.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/GithubIntegration.testGetAccessToken.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/GithubIntegration.testGetAccessTokenForNoInstallation.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/GithubIntegration.testGetAccessTokenWithExpiredJWT.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/GithubIntegration.testGetAccessTokenWithInvalidData.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/GithubIntegration.testGetAccessTokenWithInvalidPermissions.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/GithubIntegration.testGetApp.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/GithubIntegration.testGetAppInstallation.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/GithubIntegration.testGetGithubForInstallation.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/GithubIntegration.testGetInstallationNotFound.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/GithubIntegration.testGetInstallationWithExpiredJWT.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/GithubIntegration.testGetInstallations.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/GithubIntegration.testGetOrgInstallation.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/GithubIntegration.testGetRepoInstallation.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/GithubIntegration.testGetUserInstallation.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/GlobalAdvisory.testAttributes.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/GlobalAdvisory.testNewlyReleased.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/GraphQl.testDefaultUrl.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/GraphQl.testMutation.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/GraphQl.testMutationClass.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/GraphQl.testNode.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/GraphQl.testNodeClass.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/GraphQl.testOtherPort.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/GraphQl.testOtherUrl.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/GraphQl.testPaginationAndRestIntegration.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/GraphQl.testQuery.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/GraphQl.testQueryGraphQlClass.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/GraphQl.testQueryRestClass.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Hook.setUp.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Hook.testDelete.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Hook.testEditWithAllParameters.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Hook.testEditWithMinimalParameters.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Hook.testPing.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Hook.testTest.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Installation.setUp.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Installation.testGetGithubForInstallation.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Installation.testGetRepos.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Issue.setUp.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Issue.testAddAndRemoveAssignees.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Issue.testAddAndRemoveLabels.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Issue.testAddAndRemoveLabelsWithStringArguments.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Issue.testAttributes.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Issue.testCreateComment.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Issue.testCreateReaction.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Issue.testDeleteAndSetLabels.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Issue.testDeleteAndSetLabelsWithStringArguments.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Issue.testDeleteReaction.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Issue.testEditResetMilestone.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Issue.testEditWithStateReasonNotPlanned.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Issue.testEditWithStateReasonReopened.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Issue.testEditWithoutParameters.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Issue.testGetComments.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Issue.testGetCommentsSince.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Issue.testGetEvents.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Issue.testGetLabels.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Issue.testGetReactions.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Issue.testGetTimeline.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Issue.testLock.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Issue.testUnlock.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Issue131.setUp.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Issue131.testGetPullWithOrgHeadUser.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Issue131.testGetPullsWithOrgHeadUser.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Issue133.testGetPageWithoutInitialArguments.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Issue134.testGetAuthorizationsFailsWhenAutenticatedThroughOAuth.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Issue134.testGetAuthorizationsSucceedsWhenAutenticatedThroughLoginPassword.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Issue134.testGetOAuthScopesFromHeader.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Issue139.setUp.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Issue139.testCompletion.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Issue140.setUp.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Issue140.testGetDirContents.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Issue140.testGetDirContentsThenLazyCompletionOfFile.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Issue140.testGetDirContentsWithRef.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Issue140.testGetFileContents.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Issue142.testDecodeJson.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Issue174.setUp.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Issue174.testGetDirContentsWithHttpRedirect.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Issue214.testAssignees.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Issue214.testCollaborators.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Issue214.testCreateIssue.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Issue214.testGetIssues.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Issue216.setUp.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Issue216.testIteration.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Issue278.setUp.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Issue278.testIteration.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Issue33.setUp.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Issue33.testClosedIssues.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Issue33.testOpenIssues.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Issue494.setUp.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Issue50.setUp.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Issue50.testAddLabelToIssue.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Issue50.testCreateIssueWithLabel.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Issue50.testCreateLabel.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Issue50.testGetIssuesWithLabel.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Issue50.testGetLabel.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Issue50.testGetLabels.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Issue50.testIssueGetLabels.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Issue50.testRemoveLabelFromIssue.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Issue50.testSetIssueLabels.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Issue54.setUp.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Issue54.testConversion.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Issue572.setUp.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Issue572.testIssueAsPullRequest.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Issue572.testPullReqeustAsIssue.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Issue80.testIgnoreHttpsFromGithubEnterprise.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Issue80.testIgnoreHttpsFromGithubEnterpriseWithPort.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Issue823.setUp.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Issue823.testGetPendingInvitationAttributes.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Issue87.setUp.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Issue87.testCreateIssueWithEscapedPercentInBody.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Issue87.testCreateIssueWithEscapedPercentInTitle.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Issue87.testCreateIssueWithPercentInBody.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Issue87.testCreateIssueWithPercentInTitle.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Issue937.setUp.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Issue937.testCollaboratorsAffiliation.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Issue945.setUp.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Issue945.testReservedPaginatedListAttributePreservation.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/IssueComment.setUp.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/IssueComment.testCreateReaction.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/IssueComment.testDelete.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/IssueComment.testDeleteReaction.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/IssueComment.testEdit.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/IssueComment.testGetReactions.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/IssueComment.testMinimize.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/IssueComment.testUnminimize.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/IssueEvent.setUp.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Label.setUp.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Label.testDelete.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Label.testEdit.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/LazyRepository.testChangeAutomateFixWhenNoVulnerabilityAlert.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/LazyRepository.testDisableAutomatedSecurityFixes.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/LazyRepository.testDisableVulnerabilityAlert.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/LazyRepository.testEnableAutomatedSecurityFixes.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/LazyRepository.testEnableVulnerabilityAlert.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/LazyRepository.testGetIssues.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/LazyRepository.testGetUser.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/LazyRepository.testGetVulnerabilityAlert.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/LazyRepository.testGetVulnerabilityAlertWhenTurnedOff.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/LazyRepository.testOwner.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/License.setUp.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Logging.testLoggingWithBaseUrl.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Logging.testLoggingWithBasicAuthentication.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Logging.testLoggingWithOAuthAuthentication.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Logging.testLoggingWithoutAuthentication.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Markdown.setUp.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Markdown.testRenderGithubFlavoredMarkdown.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Markdown.testRenderMarkdown.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Membership.setUp.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Migration.setUp.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Migration.testDelete.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Migration.testGetArchiveUrlWhenDeleted.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Migration.testGetArchiveUrlWhenExported.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Migration.testGetArchiveUrlWhenNotExported.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Migration.testGetStatus.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Migration.testUnlockRepo.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Milestone.setUp.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Milestone.testDelete.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Milestone.testEditWithAllParameters.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Milestone.testEditWithMinimalParameters.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Milestone.testGetLabels.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/NamedUser.setUp.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/NamedUser.testAttributesOfOtherUser.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/NamedUser.testGetEvents.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/NamedUser.testGetFollowers.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/NamedUser.testGetFollowing.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/NamedUser.testGetGists.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/NamedUser.testGetKeys.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/NamedUser.testGetOrganizationMembership.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/NamedUser.testGetOrganizationMembershipNotMember.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/NamedUser.testGetOrgs.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/NamedUser.testGetPublicEvents.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/NamedUser.testGetPublicReceivedEvents.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/NamedUser.testGetReceivedEvents.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/NamedUser.testGetRepo.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/NamedUser.testGetRepos.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/NamedUser.testGetReposWithAllArgs.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/NamedUser.testGetStarred.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/NamedUser.testGetSubscriptions.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/NamedUser.testGetWatched.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/NamedUser.testHasInFollowing.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/NamedUser.testUserEquality.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/NamedUser1430.setUp.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/NamedUser1430.testGetProjects.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Notification.setUp.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Notification.testMarkAsDone.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Notification.testMarkAsRead.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Organization.setUp.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Organization.testAddMembersAdminRole.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Organization.testAddMembersDefaultRole.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Organization.testAttachDetachSecurityConfig.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Organization.testCreateActionsSecret.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Organization.testCreateCodeSecurityConfigs.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Organization.testCreateCustomProperties.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Organization.testCreateCustomProperty.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Organization.testCreateCustomPropertyValues.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Organization.testCreateDependabotSecret.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Organization.testCreateDependabotSecretSelected.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Organization.testCreateFork.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Organization.testCreateHookWithAllParameters.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Organization.testCreateHookWithMinimalParameters.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Organization.testCreateMigration.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Organization.testCreateRepoFromTemplate.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Organization.testCreateRepoFromTemplateWithAllArguments.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Organization.testCreateRepoWithAllArguments.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Organization.testCreateRepoWithMinimalArguments.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Organization.testCreateRepositoryWithAutoInit.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Organization.testCreateSecretSelected.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Organization.testCreateTeam.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Organization.testCreateTeamWithAllArguments.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Organization.testCreateVariable.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Organization.testCreateVariableSelected.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Organization.testDeleteHook.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Organization.testDeleteSelfHostedRunner.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Organization.testEditHookWithAllParameters.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Organization.testEditHookWithMinimalParameters.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Organization.testEditWithAllArguments.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Organization.testEditWithoutArguments.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Organization.testGetCodeSecurityConfig.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Organization.testGetCodeSecurityConfigs.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Organization.testGetCustomProperties.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Organization.testGetCustomProperty.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Organization.testGetDependabotAlerts.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Organization.testGetDependabotAlertsWithAllArguments.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Organization.testGetDependabotSecrets.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Organization.testGetEvents.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Organization.testGetHook.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Organization.testGetHookDeliveries.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Organization.testGetHookDelivery.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Organization.testGetHooks.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Organization.testGetInstallations.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Organization.testGetIssues.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Organization.testGetIssuesWithAllArguments.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Organization.testGetMembers.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Organization.testGetMigrations.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Organization.testGetOutsideCollaborators.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Organization.testGetPublicMembers.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Organization.testGetRepos.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Organization.testGetReposForCodeSecurityConfig.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Organization.testGetReposSorted.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Organization.testGetReposWithType.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Organization.testGetSecret.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Organization.testGetSecrets.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Organization.testGetSelfHostedRunnerApplications.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Organization.testGetSelfHostedRunners.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Organization.testGetTeamBySlug.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Organization.testGetTeams.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Organization.testGetVariable.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Organization.testGetVariables.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Organization.testInviteUserAsNonOwner.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Organization.testInviteUserByEmail.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Organization.testInviteUserByName.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Organization.testInviteUserWithBoth.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Organization.testInviteUserWithRoleAndTeam.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Organization.testIssue2030CreateProject.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Organization.testListCustomPropertyValues.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Organization.testMembers.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Organization.testOrgGetSecretAssertion.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Organization.testOrgSecretEdit.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Organization.testOrgVariable.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Organization.testOutsideCollaborators.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Organization.testPublicMembers.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Organization.testRemoveCustomProperty.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Organization.testSelfHostedRunnerGetRegistrationToken.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Organization.testSelfHostedRunnerGetRemoveToken.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Organization.testSelfHostedRunnerJitConfig.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Organization.testSetDefaultCodeSecurityConfig.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Organization1437.setUp.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Organization1437.testCreateProject.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/OrganizationHasInMembers.setUp.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/OrganizationInvitation.setUp.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/OrganizationInvitation.testCancel.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/PaginatedList.testCustomPerPage.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/PaginatedList.testCustomPerPageIteration.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/PaginatedList.testCustomPerPageReversedIteration.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/PaginatedList.testCustomPerPageWithGetPage.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/PaginatedList.testCustomPerPageWithNoUrlParams.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/PaginatedList.testGetFirstPage.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/PaginatedList.testGetThirdPage.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/PaginatedList.testGettingTheReversedListDoesNotModifyTheOriginalList.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/PaginatedList.testGraphQlPagination.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/PaginatedList.testIntIndexingInThirdPage.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/PaginatedList.testInterruptedIteration.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/PaginatedList.testIteration.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/PaginatedList.testIterationWithPrefetchedFirstPage.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/PaginatedList.testNoFirstPage.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/PaginatedList.testReversedIterationWithMultiplePages.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/PaginatedList.testReversedIterationWithSinglePage.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/PaginatedList.testSliceIndexingUntilFourthPage.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/PaginatedList.testTotalCountWithDictionary.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/PaginatedList.testTotalCountWithNoLastPage.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Permissions.setUp.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Persistence.setUp.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Persistence.testLoadAndUpdate.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Pickle.testPickleRepository.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/PoolSize.testReturnsRepoAfterSettingPoolSize.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/PoolSize.testReturnsRepoAfterSettingPoolSizeHttp.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Project.setUp.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Project.testGetOrganizationProjects.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Project.testGetRepositoryProjects.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Project1434.testDelete.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Project1434.testEditWithAllParameters.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Project1434.testEditWithoutParameters.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/ProjectCard.setUp.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/ProjectCard.testCreateFromIssue.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/ProjectCard.testCreateWithNote.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/ProjectCard.testDelete.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/ProjectCard.testEditArchived.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/ProjectCard.testEditNote.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/ProjectCard.testEditWithoutParameters.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/ProjectCard.testGetAll.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/ProjectCard.testGetContent.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/ProjectCard.testMove.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/ProjectColumn.setUp.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/ProjectColumn.testCreate.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/ProjectColumn.testCreateCard.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/ProjectColumn.testDelete.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/ProjectColumn.testEdit.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/ProjectColumn.testGetAllCards.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/ProjectColumn.testGetArchivedCards.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/ProjectColumn.testGetCards.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/ProjectColumn.testGetNotArchivedCards.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/ProjectColumn.testGetProjectColumn.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/ProjectColumn.testMoveAfter.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/ProjectColumn.testMoveFirst.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/ProjectColumn.testMoveLast.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/PublicKey.testAttributes.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/PublicKey.testAttributes_with_int_key_id.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/PublicReleaseAsset.setUp.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/PublicReleaseAsset.testAttributes.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/PublicReleaseAsset.testDownload.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/PullRequest.setUp.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/PullRequest.testAddAndRemoveAssignees.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/PullRequest.testAddAndRemoveLabels.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/PullRequest.testAddAndRemoveLabelsWithStringArguments.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/PullRequest.testConvertToDraft.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/PullRequest.testCreateIssueComment.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/PullRequest.testDeleteAndSetLabels.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/PullRequest.testDeleteAndSetLabelsWithStringArguments.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/PullRequest.testDeleteBranch.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/PullRequest.testDeleteOnMerge.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/PullRequest.testDisableAutomerge.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/PullRequest.testEditWithAllArguments.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/PullRequest.testEditWithoutArguments.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/PullRequest.testEnableAutomerge.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/PullRequest.testEnableAutomergeDefaultValues.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/PullRequest.testEnableAutomergeError.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/PullRequest.testForceDeleteBranch.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/PullRequest.testGetComments.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/PullRequest.testGetCommits.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/PullRequest.testGetFiles.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/PullRequest.testGetIssueComment.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/PullRequest.testGetIssueComments.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/PullRequest.testGetIssueEvents.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/PullRequest.testGetIssueTimeline.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/PullRequest.testGetLabels.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/PullRequest.testGetReviewComments.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/PullRequest.testMarkReadyForReview.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/PullRequest.testMerge.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/PullRequest.testMergeWithCommitMessage.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/PullRequest.testRestoreBranch.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/PullRequest.testReviewRequests.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/PullRequest.testUpdateBranch.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/PullRequest1168.setUp.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/PullRequest1168.testGetIssue.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/PullRequest1168.testGetPullRequest.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/PullRequest1169.setUp.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/PullRequest1169.testReviewApproveWithoutBody.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/PullRequest1375.setUp.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/PullRequest1375.testCreateReviewCommentReply.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/PullRequest1682.setUp.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/PullRequest1682.test_no_parameters.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/PullRequest1682.test_object_parameters.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/PullRequest1682.test_string_parameters.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/PullRequest1684.setUp.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/PullRequest1684.testDeleteRunnerId.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/PullRequest1684.testDeleteRunnerObject.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/PullRequest1684.testGetRunners.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/PullRequest2408.setUp.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/PullRequest2408.test_get_workflow_runs.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/PullRequestComment.setUp.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/PullRequestComment.testCreateReaction.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/PullRequestComment.testDelete.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/PullRequestComment.testDeleteReaction.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/PullRequestComment.testEdit.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/PullRequestComment.testGetReactions.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/PullRequestFile.setUp.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/PullRequestReview.testAttributes.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/PullRequestReview.testDismiss.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/PullRequestReview.testEdit.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/RateLimitOverview.setUp.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/RateLimiting.testGetRateLimit.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/RateLimiting.testRateLimiting.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/RateLimiting.testResetTime.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/RawData.testCompletedObject.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/RawData.testNonCompletableObject.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/RawData.testNotYetCompletedObject.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Reaction.setUp.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Reaction.testAttributes.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Reaction.testDelete.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/ReleaseAsset.setUp.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/ReleaseAsset.testDelete.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/ReleaseAsset.testUpdate.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/ReleaseModify.testCreateGitTagAndRelease.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/ReleaseModify.testDelete.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/ReleaseModify.testUpdate.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/ReleaseModify.testUploadAsset.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/ReleaseModify.testUploadAssetFileLike.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/ReleaseModify.testUploadAssetFromMemory.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/ReleaseModify.testUploadAssetWithName.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/ReleaseRead.testAttributes.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/ReleaseRead.testGetAssets.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/ReleaseRead.testGetLatestRelease.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/ReleaseRead.testGetRelease.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Repository.setUp.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Repository.testAddToCollaboratorsCustomRole.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Repository.testAssignees.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Repository.testBadSubscribePubSubHubbub.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Repository.testCodeScanAlerts.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Repository.testCollaboratorPermission.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Repository.testCollaboratorPermissionNoPushAccess.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Repository.testCollaboratorRoleName.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Repository.testCollaborators.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Repository.testCreateAutolink.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Repository.testCreateDeployment.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Repository.testCreateFile.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Repository.testCreateFork.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Repository.testCreateForkOrg.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Repository.testCreateGitBlob.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Repository.testCreateGitCommit.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Repository.testCreateGitCommitWithAllArguments.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Repository.testCreateGitCommitWithParents.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Repository.testCreateGitRef.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Repository.testCreateGitRelease.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Repository.testCreateGitReleaseGenerateReleaseNotes.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Repository.testCreateGitReleaseWithAllArguments.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Repository.testCreateGitTag.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Repository.testCreateGitTagWithAllArguments.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Repository.testCreateGitTree.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Repository.testCreateGitTreeWithBaseTree.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Repository.testCreateGitTreeWithNullSha.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Repository.testCreateGitTreeWithSha.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Repository.testCreateHookWithAllParameters.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Repository.testCreateHookWithMinimalParameters.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Repository.testCreateIssue.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Repository.testCreateIssueWithAllArguments.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Repository.testCreateIssueWithAllArgumentsStringLabel.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Repository.testCreateKey.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Repository.testCreateLabel.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Repository.testCreateMilestone.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Repository.testCreateMilestoneWithMinimalArguments.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Repository.testCreateProject.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Repository.testCreatePull.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Repository.testCreatePullFromIssue.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Repository.testCreateRepoActionsSecret.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Repository.testCreateRepoDependabotSecret.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Repository.testCreateRepositoryDispatch.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Repository.testCreateSourceImport.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Repository.testDelete.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Repository.testDeleteFile.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Repository.testDeleteSecret.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Repository.testEditWithDefaultBranch.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Repository.testEditWithoutArguments.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Repository.testGenerateReleaseNotes.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Repository.testGenerateReleaseNotesWithAllArguments.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Repository.testGetArchiveLink.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Repository.testGetAutolinks.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Repository.testGetAutomatedSecurityFixes.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Repository.testGetBranch.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Repository.testGetComments.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Repository.testGetCommits.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Repository.testGetCommitsWithArguments.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Repository.testGetCommitsWithAuthor.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Repository.testGetCommitsWithSinceUntil.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Repository.testGetContents.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Repository.testGetContentsDir.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Repository.testGetContentsDirWithSlash.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Repository.testGetContentsWithRef.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Repository.testGetContributors.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Repository.testGetCustomProperties.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Repository.testGetDeployments.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Repository.testGetDiscussion.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Repository.testGetDiscussions.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Repository.testGetDiscussionsByAnswered.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Repository.testGetDiscussionsByCategory.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Repository.testGetDiscussionsByStates.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Repository.testGetDownloads.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Repository.testGetEvents.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Repository.testGetForks.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Repository.testGetGitRef.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Repository.testGetGitRefWithIssue102Reverted.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Repository.testGetGitRefs.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Repository.testGetGitTreeWithRecursive.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Repository.testGetHookDeliveries.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Repository.testGetHookDelivery.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Repository.testGetHooks.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Repository.testGetIssues.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Repository.testGetIssuesComments.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Repository.testGetIssuesEvents.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Repository.testGetIssuesWithArguments.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Repository.testGetIssuesWithWildcards.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Repository.testGetKeys.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Repository.testGetLabel.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Repository.testGetLabels.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Repository.testGetLanguages.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Repository.testGetLicense.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Repository.testGetMatchingRefs.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Repository.testGetMilestones.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Repository.testGetMilestonesWithArguments.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Repository.testGetNetworkEvents.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Repository.testGetPendingInvitations.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Repository.testGetPulls.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Repository.testGetPullsComments.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Repository.testGetPullsWithArguments.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Repository.testGetRepositoryWith301Redirect.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Repository.testGetSourceImport.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Repository.testGetStargazers.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Repository.testGetStargazersWithDates.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Repository.testGetSubscribers.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Repository.testGetTeams.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Repository.testGetTopics.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Repository.testGetWatchers.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Repository.testGetWorkflowId.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Repository.testGetWorkflowRuns.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Repository.testGetWorkflowRunsCreated.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Repository.testGetWorkflows.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Repository.testLegacySearchIssues.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Repository.testMarkNotificationsAsRead.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Repository.testMergeUpstreamFailure.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Repository.testMergeUpstreamSuccess.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Repository.testMergeWithConflict.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Repository.testMergeWithMessage.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Repository.testMergeWithNothingToDo.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Repository.testMergeWithoutMessage.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Repository.testRemoveAutolink.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Repository.testRemoveInvitation.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Repository.testRenameBranchObject.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Repository.testRenameBranchString.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Repository.testReplaceTopics.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Repository.testRepoGetSecretAssertion.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Repository.testRepoSecrets.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Repository.testRepoVariable.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Repository.testRepoVariables.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Repository.testSearchIssues.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Repository.testStatisticsCodeFrequency.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Repository.testStatisticsCommitActivity.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Repository.testStatisticsContributors.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Repository.testStatisticsParticipation.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Repository.testStatisticsPunchCard.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Repository.testSubscribePubSubHubbub.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Repository.testTransferOwnership.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Repository.testTransferOwnershipInvalidOwner.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Repository.testUnsubscribePubSubHubbub.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Repository.testUpdateCustomProperties.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Repository.testUpdateFile.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/RepositoryAdvisory.setUp.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/RepositoryAdvisory.testAddVulnerability.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/RepositoryAdvisory.testCreateRepositoryAdvisory.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/RepositoryAdvisory.testGetAdvisories.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/RepositoryAdvisory.testOfferCredit.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/RepositoryAdvisory.testOfferCredits.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/RepositoryAdvisory.testRemoveCredit.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/RepositoryAdvisory.testRepositoryWithNoAdvisories.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/RepositoryAdvisory.testUpdateRepositoryAdvisory.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/RepositoryAdvisory.testUpdateSingleFieldDoesNotRemoveOtherFields.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/RepositoryDiscussion.setUp.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/RepositoryDiscussion.testAddAndDeleteComment.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/RepositoryDiscussion.testGetComments.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/RepositoryDiscussion.testGetCommentsWithoutNodeId.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/RepositoryKey.setUp.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/RepositoryKey.testDelete.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Requester.testBaseUrlHostRedirection.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Requester.testBaseUrlPortRedirection.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Requester.testBaseUrlPrefixRedirection.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Requester.testBaseUrlSchemeRedirection.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Requester.testLoggingRedirection.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/RequesterThrottleTestCase.testDeferRequests.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/RequesterThrottled.testShouldDeferWrites.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/RequiredPullRequestReviews.setUp.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/RequiredPullRequestReviews.testOrganizationOwnedTeam.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/RequiredStatusChecks.setUp.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Retry.testRaisesRetryErrorAfterMaxRetries.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Retry.testReturnsRepoAfter1Retry.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Retry.testReturnsRepoAfter3Retries.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Retry.testReturnsRepoAfterSettingRetryHttp.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Retry.testShouldNotRetryWhenStatusNotOnList.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Search.testGetPageOnSearchUsers.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Search.testPaginateSearchTopics.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Search.testPaginateSearchUsers.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Search.testSearchCode.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Search.testSearchCommits.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Search.testSearchCommitsOrder.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Search.testSearchHighlightingCode.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Search.testSearchIssues.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Search.testSearchRepos.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Search.testSearchReposWithNoResults.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Search.testSearchTopics.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Search.testSearchUsers.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Search.testUrlquotingOfQualifiers.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Search.testUrlquotingOfQuery.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/SecurityAndAnalysis.setUp.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/SelfHostedActionsRunner.setUp.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/SelfHostedActionsRunner.testAttributes.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/SourceImport.setUp.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/SourceImport.testUpdate.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/SpecificExceptions.test2FARequired.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/SpecificExceptions.testAuthenticatedRateLimitExceeded.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/SpecificExceptions.testBadCredentials.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/SpecificExceptions.testBadUserAgent.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/SpecificExceptions.testRateLimitExceeded.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/SpecificExceptions.testUnknownObject.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/SubIssue.setUp.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/SubIssue.testAddSubIssue.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/SubIssue.testListSubIssues.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/SubIssue.testPrioritizeSubIssue.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/SubIssue.testRemoveSubIssue.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Tag.setUp.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Team.setUp.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Team.testDelete.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Team.testDiscussions.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Team.testEditWithAllArguments.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Team.testEditWithoutArguments.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Team.testGetTeams.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Team.testRepoPermission.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Team.testRepos.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Team.testTeamMembership.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Team.testUpdateTeamRepository.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Topic.setUp.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Traffic.setUp.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Traffic.testGetClones.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Traffic.testGetPaths.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Traffic.testGetReferrers.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Traffic.testGetViews.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/UserKey.setUp.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/UserKey.testDelete.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Workflow.setUp.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Workflow.testCreateDispatchForNonTriggerEnabled.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Workflow.testCreateDispatchWithBranch.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Workflow.testCreateDispatchWithString.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Workflow.testCreateDispatchWithTag.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Workflow.testDisable.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Workflow.testDisabledWhenAlreadyDisabled.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Workflow.testEnable.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Workflow.testEnableWhenAlreadyEnabled.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Workflow.testGetRunsWithCreated.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Workflow.testGetRunsWithHeadSha.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Workflow.testGetRunsWithNoArguments.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Workflow.testGetRunsWithObjects.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/Workflow.testGetRunsWithStrings.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/WorkflowJob.setUp.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/WorkflowJob.testAttributes.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/WorkflowRun.setUp.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/WorkflowRun.test_cancel.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/WorkflowRun.test_delete.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/WorkflowRun.test_jobs.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/WorkflowRun.test_rerun.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/WorkflowRun.test_rerun_failed_jobs.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/WorkflowRun.test_rerun_with_successful_run.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/WorkflowRun.test_timing.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/ReplayData/WorkflowRun.test_timing_no_run_duration.txt +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/RepositoryAdvisory.py +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/RepositoryDiscussion.py +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/RequiredPullRequestReviews.py +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/RequiredStatusChecks.py +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/Retry.py +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/Search.py +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/SecurityAndAnalysis.py +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/SelfHostedActionsRunner.py +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/SourceImport.py +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/SubIssue.py +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/SubIssueSummary.py +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/Tag.py +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/Topic.py +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/Traffic.py +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/UserKey.py +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/WorkflowJob.py +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/WorkflowRun.py +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/__init__.py +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/conftest.py +0 -0
- {pygithub-2.8.1 → pygithub-2.9.0}/tests/test_release_notes.yml +0 -0
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
name: 'Pre-commit'
|
|
2
|
+
author: 'EnricoMi'
|
|
3
|
+
description: 'A GitHub Action that runs pre-commit'
|
|
4
|
+
|
|
5
|
+
runs:
|
|
6
|
+
using: 'composite'
|
|
7
|
+
steps:
|
|
8
|
+
- uses: actions/setup-python@v4
|
|
9
|
+
with:
|
|
10
|
+
python-version: "3.13"
|
|
11
|
+
# FIXME: pin pre-commit<4 pending PyCQA/docformatter#287
|
|
12
|
+
- name: install pre-commit
|
|
13
|
+
run: python -m pip install 'pre-commit<4'
|
|
14
|
+
shell: bash
|
|
15
|
+
- name: show environment
|
|
16
|
+
run: python -m pip freeze --local
|
|
17
|
+
shell: bash
|
|
18
|
+
- uses: actions/cache@v4
|
|
19
|
+
with:
|
|
20
|
+
path: ~/.cache/pre-commit
|
|
21
|
+
key: pre-commit-${{ hashFiles('.pre-commit-config.yaml') }}
|
|
22
|
+
- name: run pre-commit
|
|
23
|
+
run: pre-commit run --show-diff-on-failure --color=always --all-files
|
|
24
|
+
shell: bash
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
name: Build package
|
|
2
|
+
|
|
3
|
+
on:
|
|
4
|
+
workflow_call:
|
|
5
|
+
inputs:
|
|
6
|
+
artifact-name:
|
|
7
|
+
description: "Name of an artifact"
|
|
8
|
+
type: "string"
|
|
9
|
+
required: false
|
|
10
|
+
default: "package"
|
|
11
|
+
|
|
12
|
+
jobs:
|
|
13
|
+
build-pkg:
|
|
14
|
+
runs-on: ubuntu-latest
|
|
15
|
+
steps:
|
|
16
|
+
- uses: actions/checkout@v5
|
|
17
|
+
- name: Set up Python
|
|
18
|
+
uses: actions/setup-python@v6
|
|
19
|
+
with:
|
|
20
|
+
python-version: '3.x'
|
|
21
|
+
|
|
22
|
+
- name: Install dependencies
|
|
23
|
+
run: pip install -U build twine
|
|
24
|
+
- name: Build 📦 package
|
|
25
|
+
run: python -m build
|
|
26
|
+
- name: Check 📦 package
|
|
27
|
+
run: twine check dist/*
|
|
28
|
+
|
|
29
|
+
- uses: actions/upload-artifact@v5
|
|
30
|
+
with:
|
|
31
|
+
name: ${{ inputs.artifact-name }}
|
|
32
|
+
path: dist
|
|
@@ -0,0 +1,297 @@
|
|
|
1
|
+
name: CI
|
|
2
|
+
on:
|
|
3
|
+
push:
|
|
4
|
+
branches:
|
|
5
|
+
- main
|
|
6
|
+
- release-v*
|
|
7
|
+
pull_request:
|
|
8
|
+
merge_group:
|
|
9
|
+
env:
|
|
10
|
+
openapi_api: api.github.com
|
|
11
|
+
openapi_version: 2022-11-28
|
|
12
|
+
permissions: {}
|
|
13
|
+
|
|
14
|
+
jobs:
|
|
15
|
+
build:
|
|
16
|
+
uses: "./.github/workflows/_build-pkg.yml"
|
|
17
|
+
with:
|
|
18
|
+
artifact-name: package
|
|
19
|
+
|
|
20
|
+
test:
|
|
21
|
+
runs-on: ${{ matrix.os }}
|
|
22
|
+
name: test (Python ${{ matrix.python-version }} on ${{ matrix.os-label }})
|
|
23
|
+
strategy:
|
|
24
|
+
fail-fast: false
|
|
25
|
+
matrix:
|
|
26
|
+
# keep in sync with tox.ini [gh-actions] section
|
|
27
|
+
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13", "3.14"]
|
|
28
|
+
os: ["ubuntu-latest"]
|
|
29
|
+
os-label: ["Ubuntu"]
|
|
30
|
+
include:
|
|
31
|
+
- {python-version: "3.9", os: "windows-latest", os-label: "Windows"}
|
|
32
|
+
- {python-version: "3.9", os: "macos-latest", os-label: "macOS"}
|
|
33
|
+
steps:
|
|
34
|
+
- uses: actions/checkout@v5
|
|
35
|
+
- name: Set up Python
|
|
36
|
+
uses: actions/setup-python@v6
|
|
37
|
+
with:
|
|
38
|
+
python-version: "${{ matrix.python-version }}"
|
|
39
|
+
- name: Install tox
|
|
40
|
+
run: |
|
|
41
|
+
python -m pip install --upgrade pip
|
|
42
|
+
pip install tox tox-gh-actions
|
|
43
|
+
- name: Run tests
|
|
44
|
+
run: tox
|
|
45
|
+
- name: Upload Test Results
|
|
46
|
+
if: always()
|
|
47
|
+
uses: actions/upload-artifact@v5
|
|
48
|
+
with:
|
|
49
|
+
name: Test Results (Python ${{ matrix.python-version }} on ${{ matrix.os-label }})
|
|
50
|
+
path: pytest.xml
|
|
51
|
+
- name: Upload coverage to Codecov
|
|
52
|
+
uses: codecov/codecov-action@v5
|
|
53
|
+
|
|
54
|
+
test_success:
|
|
55
|
+
# this aggregates success state of all jobs listed in `needs`
|
|
56
|
+
# this is the only required check to pass CI
|
|
57
|
+
name: "Test success"
|
|
58
|
+
if: always()
|
|
59
|
+
runs-on: ubuntu-latest
|
|
60
|
+
needs: [test]
|
|
61
|
+
steps:
|
|
62
|
+
- name: "Success"
|
|
63
|
+
if: needs.test.result == 'success'
|
|
64
|
+
run: true
|
|
65
|
+
shell: bash
|
|
66
|
+
- name: "Failure"
|
|
67
|
+
if: needs.test.result != 'success'
|
|
68
|
+
run: false
|
|
69
|
+
shell: bash
|
|
70
|
+
|
|
71
|
+
index:
|
|
72
|
+
name: "Check verbs"
|
|
73
|
+
needs: "test_success"
|
|
74
|
+
if: github.event_name == 'pull_request'
|
|
75
|
+
runs-on: ubuntu-latest
|
|
76
|
+
steps:
|
|
77
|
+
- uses: actions/checkout@v5
|
|
78
|
+
with:
|
|
79
|
+
path: head
|
|
80
|
+
- uses: actions/checkout@v5
|
|
81
|
+
with:
|
|
82
|
+
ref: ${{ github.event.pull_request.base.sha }}
|
|
83
|
+
path: base
|
|
84
|
+
- name: Set up Python
|
|
85
|
+
uses: actions/setup-python@v6
|
|
86
|
+
with:
|
|
87
|
+
python-version: "3.12"
|
|
88
|
+
- name: Set up dependencies
|
|
89
|
+
run: |
|
|
90
|
+
pip install -r head/requirements/scripts.txt
|
|
91
|
+
- name: Check verbs
|
|
92
|
+
shell: bash
|
|
93
|
+
run: |
|
|
94
|
+
# Check verbs
|
|
95
|
+
set -euo pipefail
|
|
96
|
+
|
|
97
|
+
echo "::group::Head verb checking:"
|
|
98
|
+
python head/scripts/openapi.py --verbose index --check-verbs head/github openapi.head.index | tee verbs.head.txt
|
|
99
|
+
echo "::endgroup::"
|
|
100
|
+
|
|
101
|
+
echo "::group::Base verb checking:"
|
|
102
|
+
python head/scripts/openapi.py --verbose index --check-verbs base/github openapi.base.index | tee verbs.base.txt
|
|
103
|
+
echo "::endgroup::"
|
|
104
|
+
|
|
105
|
+
if ! (diff <(grep -v -E -e "^Index(ing|ed) " verbs.base.txt) <(grep -v -E -e "^Index(ing|ed) " verbs.head.txt) > diff.txt)
|
|
106
|
+
then
|
|
107
|
+
echo ""
|
|
108
|
+
echo "Difference:"
|
|
109
|
+
cat diff.txt
|
|
110
|
+
echo ""
|
|
111
|
+
echo "To fix this revisit the verbs in :calls: doc-string line of the respective method."
|
|
112
|
+
echo ""
|
|
113
|
+
echo "Fix warnings like 'Not found any … call in …' by adding the method name "
|
|
114
|
+
echo "and verb to the 'known method verbs' section in github/openapi.index.json."
|
|
115
|
+
echo ""
|
|
116
|
+
echo "Fix warnings like 'Method … is known to call …' by fixing "
|
|
117
|
+
echo "the doc-string or github/openapi.index.json."
|
|
118
|
+
false
|
|
119
|
+
fi
|
|
120
|
+
|
|
121
|
+
schemas:
|
|
122
|
+
name: "Add schemas"
|
|
123
|
+
needs: "test_success"
|
|
124
|
+
if: github.event_name == 'pull_request'
|
|
125
|
+
runs-on: ubuntu-latest
|
|
126
|
+
steps:
|
|
127
|
+
- uses: actions/checkout@v5
|
|
128
|
+
with:
|
|
129
|
+
path: head
|
|
130
|
+
- uses: actions/checkout@v5
|
|
131
|
+
with:
|
|
132
|
+
ref: ${{ github.event.pull_request.base.sha }}
|
|
133
|
+
path: base
|
|
134
|
+
- name: Set up Python
|
|
135
|
+
uses: actions/setup-python@v6
|
|
136
|
+
with:
|
|
137
|
+
python-version: "3.12"
|
|
138
|
+
- name: Set up dependencies
|
|
139
|
+
run: |
|
|
140
|
+
pip install -r head/requirements/scripts.txt
|
|
141
|
+
- name: Add schemas
|
|
142
|
+
shell: bash
|
|
143
|
+
run: |
|
|
144
|
+
# Add schemas
|
|
145
|
+
set -euo pipefail
|
|
146
|
+
|
|
147
|
+
python head/scripts/openapi.py --verbose fetch ${{ env.openapi_api }} ${{ env.openapi_version }} openapi.json
|
|
148
|
+
|
|
149
|
+
echo "::group::Head schema suggestions:"
|
|
150
|
+
python head/scripts/openapi.py --verbose index head/github openapi.json openapi.head.index
|
|
151
|
+
python head/scripts/openapi.py --verbose suggest schemas openapi.json openapi.head.index | tee schemas.head.txt
|
|
152
|
+
echo "::endgroup::"
|
|
153
|
+
|
|
154
|
+
echo "::group::Base schema suggestions:"
|
|
155
|
+
python head/scripts/openapi.py --verbose index base/github openapi.json openapi.base.index
|
|
156
|
+
python head/scripts/openapi.py --verbose suggest schemas openapi.json openapi.base.index | tee schemas.base.txt
|
|
157
|
+
echo "::endgroup::"
|
|
158
|
+
|
|
159
|
+
if ! (diff <(grep -v -E -e "^Index(ing|ed) " schemas.base.txt) <(grep -v -E -e "^Index(ing|ed) " schemas.head.txt) > diff.txt)
|
|
160
|
+
then
|
|
161
|
+
echo ""
|
|
162
|
+
echo "Difference:"
|
|
163
|
+
cat diff.txt
|
|
164
|
+
echo ""
|
|
165
|
+
(grep -E -e "^> Class \w+:$" diff.txt | sed -E -e "s/^> Class (\w+):$/\1/" || true) | while read class
|
|
166
|
+
do
|
|
167
|
+
echo "::group::Add schema to $class:"
|
|
168
|
+
python head/scripts/openapi.py --verbose suggest schemas --add openapi.json openapi.head.index "$class" > /dev/null
|
|
169
|
+
(cd head; git diff; git reset --hard --quiet HEAD)
|
|
170
|
+
echo "::endgroup::"
|
|
171
|
+
done
|
|
172
|
+
echo ""
|
|
173
|
+
echo "Run the following commands to add the suggested schemas:"
|
|
174
|
+
echo "python3 -m venv venv"
|
|
175
|
+
echo "source venv/bin/activate"
|
|
176
|
+
echo "pip install -r requirements/scripts.txt"
|
|
177
|
+
echo python scripts/openapi.py fetch api.github.com 2022-11-28 openapi.json
|
|
178
|
+
echo python scripts/openapi.py index github openapi.json openapi.index
|
|
179
|
+
echo python scripts/openapi.py suggest schemas --add openapi.json openapi.index $(grep -E -e "^> Class \w+:$" diff.txt | sed -E -e "s/^> Class (\w+):$/\1/")
|
|
180
|
+
false
|
|
181
|
+
fi
|
|
182
|
+
|
|
183
|
+
implementations:
|
|
184
|
+
name: "Implement schemas"
|
|
185
|
+
needs: "test_success"
|
|
186
|
+
if: github.event_name == 'pull_request'
|
|
187
|
+
runs-on: ubuntu-latest
|
|
188
|
+
steps:
|
|
189
|
+
- uses: actions/checkout@v5
|
|
190
|
+
with:
|
|
191
|
+
path: head
|
|
192
|
+
- uses: actions/checkout@v5
|
|
193
|
+
with:
|
|
194
|
+
ref: ${{ github.event.pull_request.base.sha }}
|
|
195
|
+
path: base
|
|
196
|
+
- name: Set up Python
|
|
197
|
+
uses: actions/setup-python@v6
|
|
198
|
+
with:
|
|
199
|
+
python-version: "3.12"
|
|
200
|
+
- name: Set up dependencies
|
|
201
|
+
run: |
|
|
202
|
+
pip install -r head/requirements/scripts.txt
|
|
203
|
+
- name: Add implementations
|
|
204
|
+
shell: bash
|
|
205
|
+
run: |
|
|
206
|
+
# Add implementations
|
|
207
|
+
set -euo pipefail
|
|
208
|
+
|
|
209
|
+
python head/scripts/openapi.py --verbose fetch ${{ env.openapi_api }} ${{ env.openapi_version }} openapi.json
|
|
210
|
+
|
|
211
|
+
echo "::group::Head implementations:"
|
|
212
|
+
python head/scripts/openapi.py --verbose index head/github openapi.json openapi.head.index
|
|
213
|
+
python head/scripts/openapi.py --verbose --dry-run apply --tests head/github openapi.json openapi.head.index | tee implementation.head.txt
|
|
214
|
+
echo "::endgroup::"
|
|
215
|
+
|
|
216
|
+
echo "::group::Base implementations:"
|
|
217
|
+
python head/scripts/openapi.py --verbose index base/github openapi.json openapi.base.index
|
|
218
|
+
python head/scripts/openapi.py --verbose --dry-run apply --tests base/github openapi.json openapi.base.index | tee implementation.base.txt
|
|
219
|
+
echo "::endgroup::"
|
|
220
|
+
|
|
221
|
+
if ! (diff <(sed -E -e "s/^[@]{2} .+ [@]{2}$/…/" -e "s%[(]base/github/%(github/%" -e "s%Test base/%Test %" implementation.base.txt) <(sed -E -e "s/^[@]{2} .+ [@]{2}$/…/" -e "s%[(]head/github/%(github/%" -e "s%Test head/%Test %" implementation.head.txt) > diff.txt)
|
|
222
|
+
then
|
|
223
|
+
echo ""
|
|
224
|
+
echo "Difference:"
|
|
225
|
+
cat diff.txt
|
|
226
|
+
echo ""
|
|
227
|
+
(grep -E -e "^> Class \w+ changed$" diff.txt | sed -E -e "s/^> Class (\w+) changed$/\1/" || true) | while read class
|
|
228
|
+
do
|
|
229
|
+
echo "::group::Apply schema to $class:"
|
|
230
|
+
python head/scripts/openapi.py --verbose apply --tests --new-schemas create-class head/github openapi.json openapi.head.index "$class" > /dev/null
|
|
231
|
+
(cd head; git diff; git reset --hard --quiet HEAD)
|
|
232
|
+
echo "::endgroup::"
|
|
233
|
+
done
|
|
234
|
+
echo ""
|
|
235
|
+
echo "Run the following commands to apply the schemas:"
|
|
236
|
+
echo "python3 -m venv venv"
|
|
237
|
+
echo "source venv/bin/activate"
|
|
238
|
+
echo "pip install -r requirements/scripts.txt"
|
|
239
|
+
echo python scripts/openapi.py fetch api.github.com 2022-11-28 openapi.json
|
|
240
|
+
echo python scripts/openapi.py index github openapi.index
|
|
241
|
+
echo python scripts/openapi.py apply --tests --new-schemas create-class github openapi.json openapi.index $(grep -E -e "^> Class \w+:$" diff.txt | sed -E -e "s/^> Class (\w+):$/\1/")
|
|
242
|
+
(grep -E -e "^> Test .+ changed$" diff.txt | sed -E -e "s/^> Test (.+) changed$/\1/" || true) | while read test
|
|
243
|
+
do
|
|
244
|
+
echo python scripts/prepare-for-update-assertions.py "$test" testAttributes
|
|
245
|
+
echo bash scripts/update-assertions.sh "$test" testAttributes
|
|
246
|
+
done
|
|
247
|
+
echo pre-commit run --all-files
|
|
248
|
+
echo ""
|
|
249
|
+
echo "You may need to fix the tests afterwards:"
|
|
250
|
+
echo pip install . -r requirements/test.txt
|
|
251
|
+
echo pytest tests
|
|
252
|
+
echo
|
|
253
|
+
false
|
|
254
|
+
fi
|
|
255
|
+
|
|
256
|
+
sort:
|
|
257
|
+
name: "Sort classes"
|
|
258
|
+
needs: "test_success"
|
|
259
|
+
runs-on: ubuntu-latest
|
|
260
|
+
steps:
|
|
261
|
+
- uses: actions/checkout@v5
|
|
262
|
+
- uses: ./.github/actions/sort-classes
|
|
263
|
+
- name: changes
|
|
264
|
+
run: |
|
|
265
|
+
if ! (git diff --exit-code > diff.txt)
|
|
266
|
+
then
|
|
267
|
+
echo ""
|
|
268
|
+
echo "Changes:"
|
|
269
|
+
cat diff.txt
|
|
270
|
+
git reset --hard --quiet HEAD
|
|
271
|
+
echo ""
|
|
272
|
+
echo "To fix this, run the following commands:"
|
|
273
|
+
echo "python3 -m venv venv"
|
|
274
|
+
echo "source venv/bin/activate"
|
|
275
|
+
echo "pip install -r requirements/scripts.txt"
|
|
276
|
+
echo python scripts/openapi.py index github openapi.index
|
|
277
|
+
for class in $(jq -r ".indices.class_to_descendants.GithubObject | @tsv" < openapi.index)
|
|
278
|
+
do
|
|
279
|
+
python scripts/sort_class.py openapi.index $class > /dev/null
|
|
280
|
+
if ! git diff --quiet --exit-code
|
|
281
|
+
then
|
|
282
|
+
echo python scripts/sort_class.py openapi.index $class
|
|
283
|
+
git reset --hard --quiet HEAD
|
|
284
|
+
fi
|
|
285
|
+
done
|
|
286
|
+
false
|
|
287
|
+
fi
|
|
288
|
+
|
|
289
|
+
event_file:
|
|
290
|
+
name: "Event File"
|
|
291
|
+
runs-on: ubuntu-latest
|
|
292
|
+
steps:
|
|
293
|
+
- name: Upload
|
|
294
|
+
uses: actions/upload-artifact@v5
|
|
295
|
+
with:
|
|
296
|
+
name: Event File
|
|
297
|
+
path: ${{ github.event_path }}
|
|
@@ -0,0 +1,100 @@
|
|
|
1
|
+
# For most projects, this workflow file will not need changing; you simply need
|
|
2
|
+
# to commit it to your repository.
|
|
3
|
+
#
|
|
4
|
+
# You may wish to alter this file to override the set of languages analyzed,
|
|
5
|
+
# or to provide custom queries or build logic.
|
|
6
|
+
#
|
|
7
|
+
# ******** NOTE ********
|
|
8
|
+
# We have attempted to detect the languages in your repository. Please check
|
|
9
|
+
# the `language` matrix defined below to confirm you have the correct set of
|
|
10
|
+
# supported CodeQL languages.
|
|
11
|
+
#
|
|
12
|
+
name: "CodeQL Advanced"
|
|
13
|
+
|
|
14
|
+
on:
|
|
15
|
+
push:
|
|
16
|
+
branches: [ "main", "openapi/main" ]
|
|
17
|
+
pull_request:
|
|
18
|
+
branches: [ "main", "openapi/main" ]
|
|
19
|
+
schedule:
|
|
20
|
+
- cron: '17 14 * * 0'
|
|
21
|
+
|
|
22
|
+
jobs:
|
|
23
|
+
analyze:
|
|
24
|
+
name: Analyze (${{ matrix.language }})
|
|
25
|
+
# Runner size impacts CodeQL analysis time. To learn more, please see:
|
|
26
|
+
# - https://gh.io/recommended-hardware-resources-for-running-codeql
|
|
27
|
+
# - https://gh.io/supported-runners-and-hardware-resources
|
|
28
|
+
# - https://gh.io/using-larger-runners (GitHub.com only)
|
|
29
|
+
# Consider using larger runners or machines with greater resources for possible analysis time improvements.
|
|
30
|
+
runs-on: ${{ (matrix.language == 'swift' && 'macos-latest') || 'ubuntu-latest' }}
|
|
31
|
+
permissions:
|
|
32
|
+
# required for all workflows
|
|
33
|
+
security-events: write
|
|
34
|
+
|
|
35
|
+
# required to fetch internal or private CodeQL packs
|
|
36
|
+
packages: read
|
|
37
|
+
|
|
38
|
+
# only required for workflows in private repositories
|
|
39
|
+
actions: read
|
|
40
|
+
contents: read
|
|
41
|
+
|
|
42
|
+
strategy:
|
|
43
|
+
fail-fast: false
|
|
44
|
+
matrix:
|
|
45
|
+
include:
|
|
46
|
+
- language: actions
|
|
47
|
+
build-mode: none
|
|
48
|
+
- language: python
|
|
49
|
+
build-mode: none
|
|
50
|
+
# CodeQL supports the following values keywords for 'language': 'actions', 'c-cpp', 'csharp', 'go', 'java-kotlin', 'javascript-typescript', 'python', 'ruby', 'swift'
|
|
51
|
+
# Use `c-cpp` to analyze code written in C, C++ or both
|
|
52
|
+
# Use 'java-kotlin' to analyze code written in Java, Kotlin or both
|
|
53
|
+
# Use 'javascript-typescript' to analyze code written in JavaScript, TypeScript or both
|
|
54
|
+
# To learn more about changing the languages that are analyzed or customizing the build mode for your analysis,
|
|
55
|
+
# see https://docs.github.com/en/code-security/code-scanning/creating-an-advanced-setup-for-code-scanning/customizing-your-advanced-setup-for-code-scanning.
|
|
56
|
+
# If you are analyzing a compiled language, you can modify the 'build-mode' for that language to customize how
|
|
57
|
+
# your codebase is analyzed, see https://docs.github.com/en/code-security/code-scanning/creating-an-advanced-setup-for-code-scanning/codeql-code-scanning-for-compiled-languages
|
|
58
|
+
steps:
|
|
59
|
+
- name: Checkout repository
|
|
60
|
+
uses: actions/checkout@v5
|
|
61
|
+
|
|
62
|
+
# Add any setup steps before running the `github/codeql-action/init` action.
|
|
63
|
+
# This includes steps like installing compilers or runtimes (`actions/setup-node`
|
|
64
|
+
# or others). This is typically only required for manual builds.
|
|
65
|
+
# - name: Setup runtime (example)
|
|
66
|
+
# uses: actions/setup-example@v1
|
|
67
|
+
|
|
68
|
+
# Initializes the CodeQL tools for scanning.
|
|
69
|
+
- name: Initialize CodeQL
|
|
70
|
+
uses: github/codeql-action/init@v4
|
|
71
|
+
with:
|
|
72
|
+
languages: ${{ matrix.language }}
|
|
73
|
+
build-mode: ${{ matrix.build-mode }}
|
|
74
|
+
# If you wish to specify custom queries, you can do so here or in a config file.
|
|
75
|
+
# By default, queries listed here will override any specified in a config file.
|
|
76
|
+
# Prefix the list here with "+" to use these queries and those in the config file.
|
|
77
|
+
|
|
78
|
+
# For more details on CodeQL's query packs, refer to: https://docs.github.com/en/code-security/code-scanning/automatically-scanning-your-code-for-vulnerabilities-and-errors/configuring-code-scanning#using-queries-in-ql-packs
|
|
79
|
+
# queries: security-extended,security-and-quality
|
|
80
|
+
|
|
81
|
+
# If the analyze step fails for one of the languages you are analyzing with
|
|
82
|
+
# "We were unable to automatically build your code", modify the matrix above
|
|
83
|
+
# to set the build mode to "manual" for that language. Then modify this step
|
|
84
|
+
# to build your code.
|
|
85
|
+
# ℹ️ Command-line programs to run using the OS shell.
|
|
86
|
+
# 📚 See https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#jobsjob_idstepsrun
|
|
87
|
+
- if: matrix.build-mode == 'manual'
|
|
88
|
+
shell: bash
|
|
89
|
+
run: |
|
|
90
|
+
echo 'If you are using a "manual" build mode for one or more of the' \
|
|
91
|
+
'languages you are analyzing, replace this with the commands to build' \
|
|
92
|
+
'your code, for example:'
|
|
93
|
+
echo ' make bootstrap'
|
|
94
|
+
echo ' make release'
|
|
95
|
+
exit 1
|
|
96
|
+
|
|
97
|
+
- name: Perform CodeQL Analysis
|
|
98
|
+
uses: github/codeql-action/analyze@v4
|
|
99
|
+
with:
|
|
100
|
+
category: "/language:${{matrix.language}}"
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
name: Lint
|
|
2
|
+
on:
|
|
3
|
+
push:
|
|
4
|
+
branches:
|
|
5
|
+
- main
|
|
6
|
+
- release-v*
|
|
7
|
+
pull_request:
|
|
8
|
+
merge_group:
|
|
9
|
+
permissions: {}
|
|
10
|
+
|
|
11
|
+
jobs:
|
|
12
|
+
mypy:
|
|
13
|
+
runs-on: ubuntu-latest
|
|
14
|
+
steps:
|
|
15
|
+
- uses: actions/checkout@v5
|
|
16
|
+
- uses: ./.github/actions/mypy
|
|
17
|
+
|
|
18
|
+
pre-commit:
|
|
19
|
+
runs-on: ubuntu-latest
|
|
20
|
+
steps:
|
|
21
|
+
- uses: actions/checkout@v5
|
|
22
|
+
- uses: ./.github/actions/pre-commit
|
|
23
|
+
|
|
24
|
+
docs:
|
|
25
|
+
runs-on: ubuntu-latest
|
|
26
|
+
steps:
|
|
27
|
+
- uses: actions/checkout@v5
|
|
28
|
+
- uses: actions/setup-python@v6
|
|
29
|
+
with:
|
|
30
|
+
python-version: "3.x"
|
|
31
|
+
|
|
32
|
+
- run: pip install -r requirements/docs.txt
|
|
33
|
+
- run: pip install -e .
|
|
34
|
+
- run: sphinx-build doc build
|
|
@@ -0,0 +1,161 @@
|
|
|
1
|
+
name: OpenAPI
|
|
2
|
+
on:
|
|
3
|
+
push:
|
|
4
|
+
schedule:
|
|
5
|
+
- cron: '10 8 * * *'
|
|
6
|
+
workflow_dispatch:
|
|
7
|
+
permissions: {}
|
|
8
|
+
|
|
9
|
+
jobs:
|
|
10
|
+
openapi-sync-branch:
|
|
11
|
+
name: OpenAPI sync branch
|
|
12
|
+
runs-on: ubuntu-latest
|
|
13
|
+
if: ( ! github.event.repository.fork )
|
|
14
|
+
outputs:
|
|
15
|
+
autosync-branch-exists: ${{ steps.checkout.outcome == 'success' }}
|
|
16
|
+
steps:
|
|
17
|
+
- name: Checkout Git
|
|
18
|
+
id: checkout
|
|
19
|
+
uses: actions/checkout@v5
|
|
20
|
+
with:
|
|
21
|
+
ref: openapi/autosync
|
|
22
|
+
continue-on-error: true
|
|
23
|
+
|
|
24
|
+
open-api:
|
|
25
|
+
name: Sync with OpenAPI
|
|
26
|
+
runs-on: ubuntu-latest
|
|
27
|
+
needs: openapi-sync-branch
|
|
28
|
+
if: needs.openapi-sync-branch.outputs.autosync-branch-exists == 'false'
|
|
29
|
+
permissions:
|
|
30
|
+
contents: write
|
|
31
|
+
steps:
|
|
32
|
+
- name: Checkout Git
|
|
33
|
+
uses: actions/checkout@v5
|
|
34
|
+
with:
|
|
35
|
+
fetch-depth: 0
|
|
36
|
+
- name: Set up Git
|
|
37
|
+
run: |
|
|
38
|
+
# Set up Git
|
|
39
|
+
git config --local user.name "${{ github.actor }}"
|
|
40
|
+
git config --local user.email "github-action-${{ github.actor }}@users.noreply.github.com"
|
|
41
|
+
- name: Set up Python
|
|
42
|
+
uses: actions/setup-python@v6
|
|
43
|
+
with:
|
|
44
|
+
python-version: "3.12"
|
|
45
|
+
- name: Set up dependencies
|
|
46
|
+
run: |
|
|
47
|
+
# Set up dependencies
|
|
48
|
+
pip install -e .
|
|
49
|
+
pip install -r requirements/test.txt
|
|
50
|
+
pip install -r requirements/types.txt
|
|
51
|
+
pip install -r requirements/scripts.txt
|
|
52
|
+
|
|
53
|
+
- name: Fetching OpenAPI spec
|
|
54
|
+
run: |
|
|
55
|
+
# Fetching OpenAPI spec
|
|
56
|
+
python scripts/openapi.py fetch api.github.com 2022-11-28 api.github.com.2022-11-28.json
|
|
57
|
+
|
|
58
|
+
- name: Sync with OpenAPI spec (ignore unimplemented schemas)
|
|
59
|
+
run: |
|
|
60
|
+
# Sync with OpenAPI spec (ignore unimplemented schemas)
|
|
61
|
+
git checkout -b openapi/main
|
|
62
|
+
./scripts/openapi-update-classes.sh --branch-prefix openapi/autosync 2> openapi-update-classes.log
|
|
63
|
+
- name: Changes
|
|
64
|
+
run: |
|
|
65
|
+
# Show changes
|
|
66
|
+
git branch -a | sed -e "s/^\s*//" | grep "^openapi/autosync-" | grep -v -E -e "-[0-9]+$" | while read branch; do
|
|
67
|
+
echo "::group::$branch"
|
|
68
|
+
git log --oneline "$branch...openapi/main"
|
|
69
|
+
git diff openapi/main "$branch"
|
|
70
|
+
echo "::endgroup::"
|
|
71
|
+
done
|
|
72
|
+
- name: Log on error
|
|
73
|
+
if: failure()
|
|
74
|
+
run: |
|
|
75
|
+
cat openapi-update-classes.log
|
|
76
|
+
- name: Upload logs
|
|
77
|
+
if: always()
|
|
78
|
+
uses: actions/upload-artifact@v5
|
|
79
|
+
with:
|
|
80
|
+
name: Sync logs
|
|
81
|
+
path: |
|
|
82
|
+
*.log
|
|
83
|
+
- name: Commit changes
|
|
84
|
+
run: |
|
|
85
|
+
# Commit changes
|
|
86
|
+
git checkout -b openapi/autosync
|
|
87
|
+
git branch -a | sed -e "s/^\s*//" | grep "^openapi/autosync-" | grep -v -E -e "-[0-9]+$" | while read branch; do
|
|
88
|
+
echo "::group::$branch"
|
|
89
|
+
git merge --squash "$branch"
|
|
90
|
+
echo "Squashed changes for ${branch#openapi/autosync-}" > git-msg
|
|
91
|
+
tail -n +2 .git/COMMIT_EDITMSG >> git-msg
|
|
92
|
+
mv git-msg .git/COMMIT_EDITMSG
|
|
93
|
+
git commit --no-edit
|
|
94
|
+
echo "::endgroup::"
|
|
95
|
+
done
|
|
96
|
+
|
|
97
|
+
# push if there are changes
|
|
98
|
+
if ! git diff --quiet openapi/main; then
|
|
99
|
+
if ! git diff --quiet origin/main .github/workflows/*; then
|
|
100
|
+
# this is needed to prevent this error:
|
|
101
|
+
# refusing to allow a GitHub App to create or update workflow `.github/workflows/openapi.yml` without `workflows` permission
|
|
102
|
+
echo "Revert changes done to workflows"
|
|
103
|
+
git restore --source origin/main .github/workflows/*
|
|
104
|
+
git commit -a -m "Revert workflow changes of this branch"
|
|
105
|
+
fi
|
|
106
|
+
echo "Pushing changes to origin openapi/autosync"
|
|
107
|
+
git push origin openapi/autosync
|
|
108
|
+
fi
|
|
109
|
+
|
|
110
|
+
- name: Sync with OpenAPI spec (create new classes)
|
|
111
|
+
run: |
|
|
112
|
+
# Sync with OpenAPI spec (create new classes)
|
|
113
|
+
git checkout openapi/autosync
|
|
114
|
+
./scripts/openapi-update-classes.sh --create-classes --branch-prefix openapi/autosync-new-classes 2> openapi-update-classes.log
|
|
115
|
+
- name: Changes
|
|
116
|
+
run: |
|
|
117
|
+
# Show changes
|
|
118
|
+
git branch -a | sed -e "s/^\s*//" | grep "^openapi/autosync-new-classes-" | grep -v -E -e "-[0-9]+$" | while read branch; do
|
|
119
|
+
echo "::group::$branch"
|
|
120
|
+
git log --oneline "$branch...openapi/main"
|
|
121
|
+
git diff openapi/autosync "$branch"
|
|
122
|
+
echo "::endgroup::"
|
|
123
|
+
done
|
|
124
|
+
- name: Log on error
|
|
125
|
+
if: failure()
|
|
126
|
+
run: |
|
|
127
|
+
cat openapi-update-classes.log
|
|
128
|
+
- name: Upload logs
|
|
129
|
+
if: always()
|
|
130
|
+
uses: actions/upload-artifact@v5
|
|
131
|
+
with:
|
|
132
|
+
name: Create new classes logs
|
|
133
|
+
path: |
|
|
134
|
+
*.log
|
|
135
|
+
- name: Commit changes
|
|
136
|
+
run: |
|
|
137
|
+
# Commit changes
|
|
138
|
+
git checkout -b openapi/autosync-new-classes
|
|
139
|
+
git branch -a | sed -e "s/^\s*//" | grep "^openapi/autosync-new-classes-" | grep -v -E -e "-[0-9]+$" | while read branch; do
|
|
140
|
+
echo "::group::$branch"
|
|
141
|
+
git merge --squash "$branch" || true
|
|
142
|
+
echo "Squashed changes for ${branch#openapi/autosync-new-classes-}" > git-msg
|
|
143
|
+
tail -n +2 .git/COMMIT_EDITMSG >> git-msg
|
|
144
|
+
mv git-msg .git/COMMIT_EDITMSG
|
|
145
|
+
git commit --no-edit || true
|
|
146
|
+
echo "::endgroup::"
|
|
147
|
+
done
|
|
148
|
+
|
|
149
|
+
# push if there are changes
|
|
150
|
+
if ! git diff --quiet openapi/autosync; then
|
|
151
|
+
echo "Pushing changes to origin openapi/autosync-new-classes"
|
|
152
|
+
git push origin openapi/autosync-new-classes
|
|
153
|
+
fi
|
|
154
|
+
|
|
155
|
+
- name: Fail on changes
|
|
156
|
+
run: |
|
|
157
|
+
# Fail on changes
|
|
158
|
+
if ! git diff --quiet openapi/main; then
|
|
159
|
+
echo "Changes exist, please investigate branches openapi/autosync and openapi/autosync-new-classes"
|
|
160
|
+
exit 1
|
|
161
|
+
fi
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
name: Publish to PyPI
|
|
2
|
+
permissions:
|
|
3
|
+
contents: read
|
|
4
|
+
on:
|
|
5
|
+
push:
|
|
6
|
+
tags: ["*"] # this will run full workflow including publish to PyPI
|
|
7
|
+
workflow_dispatch:
|
|
8
|
+
|
|
9
|
+
jobs:
|
|
10
|
+
build:
|
|
11
|
+
uses: "./.github/workflows/_build-pkg.yml"
|
|
12
|
+
with:
|
|
13
|
+
artifact-name: package
|
|
14
|
+
|
|
15
|
+
publish:
|
|
16
|
+
needs: [build]
|
|
17
|
+
runs-on: ubuntu-latest
|
|
18
|
+
steps:
|
|
19
|
+
- uses: actions/download-artifact@v6
|
|
20
|
+
with:
|
|
21
|
+
name: package
|
|
22
|
+
path: dist
|
|
23
|
+
- name: Install twine
|
|
24
|
+
run: pip install -U "twine>=6.1.0" "packaging>=24.2"
|
|
25
|
+
- name: Publish 📦 to PyPI
|
|
26
|
+
# only run this for tags
|
|
27
|
+
if: startsWith(github.event.ref, 'refs/tags/')
|
|
28
|
+
env:
|
|
29
|
+
TWINE_USERNAME: __token__
|
|
30
|
+
TWINE_PASSWORD: ${{ secrets.PYPI_PASSWORD }}
|
|
31
|
+
run: twine upload dist/*
|