From e8265e829bcaf0a742026098eda5ea353be6c4b1 Mon Sep 17 00:00:00 2001 From: Jiri Kyjovsky Date: Wed, 14 Sep 2022 15:04:06 +0200 Subject: [PATCH 1/2] Feat: list and decide who has write access to the repository --- ogr/abstract.py | 16 ++++++++++++++++ ogr/services/github/project.py | 3 +++ ogr/services/gitlab/project.py | 11 +++++++++++ ogr/services/pagure/project.py | 8 ++++++++ .../integration/github/test_generic_commands.py | 8 ++++++++ .../integration/gitlab/test_generic_commands.py | 8 ++++++++ .../integration/pagure/test_generic_commands.py | 8 ++++++++ 7 files changed, 62 insertions(+) diff --git a/ogr/abstract.py b/ogr/abstract.py index 50b398e8..d3ff8147 100644 --- a/ogr/abstract.py +++ b/ogr/abstract.py @@ -1905,6 +1905,22 @@ def get_contributors(self) -> Set[str]: """ raise NotImplementedError() + def users_with_write_access(self) -> Set[str]: + """ + Returns: + List of users who have write access to the project + """ + raise NotImplementedError("Use subclass instead.") + + def has_write_access(self, user: str) -> bool: + """ + Decides whether a given user has write access to the project. + + Args: + user: The user we are going to check to see if he/she has access + """ + return user in self.users_with_write_access() + class GitUser(OgrAbstractClass): """ diff --git a/ogr/services/github/project.py b/ogr/services/github/project.py index 60f12ef2..b7d69871 100644 --- a/ogr/services/github/project.py +++ b/ogr/services/github/project.py @@ -542,3 +542,6 @@ def get_contributors(self) -> Set[str]: Logins of contributors to the project. """ return set(map(lambda c: c.login, self.github_repo.get_contributors())) + + def users_with_write_access(self) -> Set[str]: + return self.__get_collaborators() diff --git a/ogr/services/gitlab/project.py b/ogr/services/gitlab/project.py index 17621533..c47cb9f0 100644 --- a/ogr/services/gitlab/project.py +++ b/ogr/services/gitlab/project.py @@ -511,3 +511,14 @@ def format_contributor(contributor: Dict[str, Any]) -> str: return set( map(format_contributor, self.gitlab_repo.repository_contributors(all=True)) ) + + def users_with_write_access(self) -> Set[str]: + return set( + self._get_collaborators_with_given_access( + access_levels=[ + gitlab.const.DEVELOPER_ACCESS, + gitlab.const.MAINTAINER_ACCESS, + gitlab.const.OWNER_ACCESS, + ] + ) + ) diff --git a/ogr/services/pagure/project.py b/ogr/services/pagure/project.py index bda272f3..4848f777 100644 --- a/ogr/services/pagure/project.py +++ b/ogr/services/pagure/project.py @@ -529,3 +529,11 @@ def get_sha_from_branch(self, branch: str) -> Optional[str]: def get_contributors(self) -> Set[str]: raise OperationNotSupported("Pagure doesn't provide list of contributors") + + def users_with_write_access(self) -> Set[str]: + users_with_access = self.get_project_info()["access_users"] + result = set() + for access_level in ["commit", "admin", "owner"]: + result.update(users_with_access[access_level]) + + return result diff --git a/tests/integration/github/test_generic_commands.py b/tests/integration/github/test_generic_commands.py index f4abd19f..cf6814c3 100644 --- a/tests/integration/github/test_generic_commands.py +++ b/tests/integration/github/test_generic_commands.py @@ -285,3 +285,11 @@ def test_get_contributors(self): owners = self.ogr_project.get_owners() contributors = self.ogr_project.get_contributors() assert len(owners) < len(contributors) + + def test_write_access_to_repo(self): + users = self.ogr_project.users_with_write_access() + assert "TomasTomecek" in users + assert "naruto" not in users + + assert self.ogr_project.has_write_access(user="csomh") + assert not self.ogr_project.has_write_access(user="miko") diff --git a/tests/integration/gitlab/test_generic_commands.py b/tests/integration/gitlab/test_generic_commands.py index a5b3504a..3999b9ba 100644 --- a/tests/integration/gitlab/test_generic_commands.py +++ b/tests/integration/gitlab/test_generic_commands.py @@ -253,3 +253,11 @@ def test_get_contributors(self): owners = project.get_owners() contributors = project.get_contributors() assert len(owners) < len(contributors) + + def test_write_access_to_repo(self): + users = self.project.users_with_write_access() + assert "lachmanfrantisek" in users + assert "Ei" not in users + + assert self.project.has_write_access(user="lbarcziova") + assert not self.project.has_write_access(user="Venti") diff --git a/tests/integration/pagure/test_generic_commands.py b/tests/integration/pagure/test_generic_commands.py index e71f72f6..0c79ae27 100644 --- a/tests/integration/pagure/test_generic_commands.py +++ b/tests/integration/pagure/test_generic_commands.py @@ -146,3 +146,11 @@ def test_get_sha_from_branch_non_existing(self): def test_has_issues(self): assert self.ogr_project.has_issues assert not self.ogr_project.get_fork().has_issues, "Forks don't have issues" + + def test_write_access_to_repo(self): + users = self.ogr_project.users_with_write_access() + assert "lbarczio" in users + assert "bart_simpson" not in users + + assert self.ogr_project.has_write_access(user="nikromen") + assert not self.ogr_project.has_write_access(user="kacer_donald") From a55ba114bd8a8f3e34e8bfc9814c2013b240531d Mon Sep 17 00:00:00 2001 From: Jiri Kyjovsky Date: Wed, 14 Sep 2022 15:39:12 +0200 Subject: [PATCH 2/2] Feat(test data): add test data for testing write access to repo --- ...ricCommands.test_write_access_to_repo.yaml | 4902 +++++++++++++++++ ...ricCommands.test_write_access_to_repo.yaml | 955 ++++ ...ricCommands.test_write_access_to_repo.yaml | 326 ++ 3 files changed, 6183 insertions(+) create mode 100644 tests/integration/github/test_data/test_generic_commands/GenericCommands.test_write_access_to_repo.yaml create mode 100644 tests/integration/gitlab/test_data/test_generic_commands/GenericCommands.test_write_access_to_repo.yaml create mode 100644 tests/integration/pagure/test_data/test_generic_commands/GenericCommands.test_write_access_to_repo.yaml diff --git a/tests/integration/github/test_data/test_generic_commands/GenericCommands.test_write_access_to_repo.yaml b/tests/integration/github/test_data/test_generic_commands/GenericCommands.test_write_access_to_repo.yaml new file mode 100644 index 00000000..94e3b55e --- /dev/null +++ b/tests/integration/github/test_data/test_generic_commands/GenericCommands.test_write_access_to_repo.yaml @@ -0,0 +1,4902 @@ +_requre: + DataTypes: 1 + key_strategy: StorageKeysInspectSimple + version_storage_file: 3 +requests.sessions: + send: + GET: + https://api.github.com:443/repos/packit/ogr: + - metadata: + latency: 0.4960644245147705 + module_call_list: + - unittest.case + - requre.record_and_replace + - tests.integration.github.test_generic_commands + - ogr.abstract + - ogr.services.github.project + - ogr.abstract + - ogr.services.github.project + - ogr.abstract + - ogr.services.github.project + - github.MainClass + - github.Requester + - requests.sessions + - requre.objects + - requre.cassette + - requests.sessions + - send + output: + __store_indicator: 2 + _content: + allow_auto_merge: false + allow_forking: true + allow_merge_commit: true + allow_rebase_merge: true + allow_squash_merge: true + allow_update_branch: true + archive_url: https://api.github.com/repos/packit/ogr/{archive_format}{/ref} + archived: false + assignees_url: https://api.github.com/repos/packit/ogr/assignees{/user} + blobs_url: https://api.github.com/repos/packit/ogr/git/blobs{/sha} + branches_url: https://api.github.com/repos/packit/ogr/branches{/branch} + clone_url: https://github.com/packit/ogr.git + collaborators_url: https://api.github.com/repos/packit/ogr/collaborators{/collaborator} + comments_url: https://api.github.com/repos/packit/ogr/comments{/number} + commits_url: https://api.github.com/repos/packit/ogr/commits{/sha} + compare_url: https://api.github.com/repos/packit/ogr/compare/{base}...{head} + contents_url: https://api.github.com/repos/packit/ogr/contents/{+path} + contributors_url: https://api.github.com/repos/packit/ogr/contributors + created_at: '2018-12-13T12:33:52Z' + default_branch: main + delete_branch_on_merge: false + deployments_url: https://api.github.com/repos/packit/ogr/deployments + description: One Git library to Rule -- one API for many git forges + disabled: false + downloads_url: https://api.github.com/repos/packit/ogr/downloads + events_url: https://api.github.com/repos/packit/ogr/events + fork: false + forks: 50 + forks_count: 50 + forks_url: https://api.github.com/repos/packit/ogr/forks + full_name: packit/ogr + git_commits_url: https://api.github.com/repos/packit/ogr/git/commits{/sha} + git_refs_url: https://api.github.com/repos/packit/ogr/git/refs{/sha} + git_tags_url: https://api.github.com/repos/packit/ogr/git/tags{/sha} + git_url: git://github.com/packit/ogr.git + has_downloads: true + has_issues: true + has_pages: true + has_projects: true + has_wiki: true + homepage: '' + hooks_url: https://api.github.com/repos/packit/ogr/hooks + html_url: https://github.com/packit/ogr + id: 161636700 + is_template: false + issue_comment_url: https://api.github.com/repos/packit/ogr/issues/comments{/number} + issue_events_url: https://api.github.com/repos/packit/ogr/issues/events{/number} + issues_url: https://api.github.com/repos/packit/ogr/issues{/number} + keys_url: https://api.github.com/repos/packit/ogr/keys{/key_id} + labels_url: https://api.github.com/repos/packit/ogr/labels{/name} + language: Python + languages_url: https://api.github.com/repos/packit/ogr/languages + license: + key: mit + name: MIT License + node_id: MDc6TGljZW5zZTEz + spdx_id: MIT + url: https://api.github.com/licenses/mit + merge_commit_message: PR_TITLE + merge_commit_title: MERGE_MESSAGE + merges_url: https://api.github.com/repos/packit/ogr/merges + milestones_url: https://api.github.com/repos/packit/ogr/milestones{/number} + mirror_url: null + name: ogr + network_count: 50 + node_id: MDEwOlJlcG9zaXRvcnkxNjE2MzY3MDA= + notifications_url: https://api.github.com/repos/packit/ogr/notifications{?since,all,participating} + open_issues: 11 + open_issues_count: 11 + organization: + avatar_url: https://avatars.githubusercontent.com/u/46870917?v=4 + events_url: https://api.github.com/users/packit/events{/privacy} + followers_url: https://api.github.com/users/packit/followers + following_url: https://api.github.com/users/packit/following{/other_user} + gists_url: https://api.github.com/users/packit/gists{/gist_id} + gravatar_id: '' + html_url: https://github.com/packit + id: 46870917 + login: packit + node_id: MDEyOk9yZ2FuaXphdGlvbjQ2ODcwOTE3 + organizations_url: https://api.github.com/users/packit/orgs + received_events_url: https://api.github.com/users/packit/received_events + repos_url: https://api.github.com/users/packit/repos + site_admin: false + starred_url: https://api.github.com/users/packit/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/packit/subscriptions + type: Organization + url: https://api.github.com/users/packit + owner: + avatar_url: https://avatars.githubusercontent.com/u/46870917?v=4 + events_url: https://api.github.com/users/packit/events{/privacy} + followers_url: https://api.github.com/users/packit/followers + following_url: https://api.github.com/users/packit/following{/other_user} + gists_url: https://api.github.com/users/packit/gists{/gist_id} + gravatar_id: '' + html_url: https://github.com/packit + id: 46870917 + login: packit + node_id: MDEyOk9yZ2FuaXphdGlvbjQ2ODcwOTE3 + organizations_url: https://api.github.com/users/packit/orgs + received_events_url: https://api.github.com/users/packit/received_events + repos_url: https://api.github.com/users/packit/repos + site_admin: false + starred_url: https://api.github.com/users/packit/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/packit/subscriptions + type: Organization + url: https://api.github.com/users/packit + permissions: + admin: true + maintain: true + pull: true + push: true + triage: true + private: false + pulls_url: https://api.github.com/repos/packit/ogr/pulls{/number} + pushed_at: '2022-09-12T11:24:36Z' + releases_url: https://api.github.com/repos/packit/ogr/releases{/id} + size: 13386 + squash_merge_commit_message: COMMIT_MESSAGES + squash_merge_commit_title: COMMIT_OR_PR_TITLE + ssh_url: git@github.com:packit/ogr.git + stargazers_count: 38 + stargazers_url: https://api.github.com/repos/packit/ogr/stargazers + statuses_url: https://api.github.com/repos/packit/ogr/statuses/{sha} + subscribers_count: 11 + subscribers_url: https://api.github.com/repos/packit/ogr/subscribers + subscription_url: https://api.github.com/repos/packit/ogr/subscription + svn_url: https://github.com/packit/ogr + tags_url: https://api.github.com/repos/packit/ogr/tags + teams_url: https://api.github.com/repos/packit/ogr/teams + temp_clone_token: '' + topics: + - git + - github + - hacktoberfest + - pagure + - python + - python3 + trees_url: https://api.github.com/repos/packit/ogr/git/trees{/sha} + updated_at: '2022-08-24T17:58:00Z' + url: https://api.github.com/repos/packit/ogr + use_squash_pr_title_as_default: false + visibility: public + watchers: 38 + watchers_count: 38 + web_commit_signoff_required: false + _next: null + elapsed: 0.495395 + encoding: utf-8 + headers: + Access-Control-Allow-Origin: '*' + Access-Control-Expose-Headers: ETag, Link, Location, Retry-After, X-GitHub-OTP, + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, + X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, + X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, + Sunset + Cache-Control: private, max-age=60, s-maxage=60 + Content-Encoding: gzip + Content-Security-Policy: default-src 'none' + Content-Type: application/json; charset=utf-8 + Date: Wed, 14 Sep 2022 13:24:48 GMT + ETag: W/"d21581e5f3e99dccbd8ddd963f17808c89f2d260c6e95a079c0748cfce9d209c" + Last-Modified: Wed, 24 Aug 2022 17:58:00 GMT + Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin + Server: GitHub.com + Strict-Transport-Security: max-age=31536000; includeSubdomains; preload + Transfer-Encoding: chunked + Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, + X-Requested-With + X-Accepted-OAuth-Scopes: repo + X-Content-Type-Options: nosniff + X-Frame-Options: deny + X-GitHub-Media-Type: github.v3; format=json + X-GitHub-Request-Id: D2AA:A997:18A208:18FFA7:6321D620 + X-OAuth-Scopes: read:discussion, read:enterprise, read:gpg_key, read:org, + read:packages, read:project, read:public_key, read:repo_hook, read:ssh_signing_key, + read:user, repo + X-RateLimit-Limit: '5000' + X-RateLimit-Remaining: '4970' + X-RateLimit-Reset: '1663165394' + X-RateLimit-Resource: core + X-RateLimit-Used: '30' + X-XSS-Protection: '0' + github-authentication-token-expiration: 2022-10-14 13:21:17 UTC + raw: !!binary "" + reason: OK + status_code: 200 + https://api.github.com:443/repos/packit/ogr/collaborators: + - metadata: + latency: 0.38005852699279785 + module_call_list: + - unittest.case + - requre.record_and_replace + - tests.integration.github.test_generic_commands + - ogr.abstract + - ogr.services.github.project + - ogr.abstract + - ogr.services.github.project + - ogr.abstract + - ogr.services.github.project + - github.PaginatedList + - github.Requester + - requests.sessions + - requre.objects + - requre.cassette + - requests.sessions + - send + output: + __store_indicator: 2 + _content: + - avatar_url: https://avatars.githubusercontent.com/u/85769?v=4 + events_url: https://api.github.com/users/xsuchy/events{/privacy} + followers_url: https://api.github.com/users/xsuchy/followers + following_url: https://api.github.com/users/xsuchy/following{/other_user} + gists_url: https://api.github.com/users/xsuchy/gists{/gist_id} + gravatar_id: '' + html_url: https://github.com/xsuchy + id: 85769 + login: xsuchy + node_id: MDQ6VXNlcjg1NzY5 + organizations_url: https://api.github.com/users/xsuchy/orgs + permissions: + admin: false + maintain: false + pull: true + push: true + triage: true + received_events_url: https://api.github.com/users/xsuchy/received_events + repos_url: https://api.github.com/users/xsuchy/repos + role_name: write + site_admin: false + starred_url: https://api.github.com/users/xsuchy/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/xsuchy/subscriptions + type: User + url: https://api.github.com/users/xsuchy + - avatar_url: https://avatars.githubusercontent.com/u/288686?v=4 + events_url: https://api.github.com/users/jpopelka/events{/privacy} + followers_url: https://api.github.com/users/jpopelka/followers + following_url: https://api.github.com/users/jpopelka/following{/other_user} + gists_url: https://api.github.com/users/jpopelka/gists{/gist_id} + gravatar_id: '' + html_url: https://github.com/jpopelka + id: 288686 + login: jpopelka + node_id: MDQ6VXNlcjI4ODY4Ng== + organizations_url: https://api.github.com/users/jpopelka/orgs + permissions: + admin: true + maintain: true + pull: true + push: true + triage: true + received_events_url: https://api.github.com/users/jpopelka/received_events + repos_url: https://api.github.com/users/jpopelka/repos + role_name: admin + site_admin: false + starred_url: https://api.github.com/users/jpopelka/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/jpopelka/subscriptions + type: User + url: https://api.github.com/users/jpopelka + - avatar_url: https://avatars.githubusercontent.com/u/1662493?v=4 + events_url: https://api.github.com/users/TomasTomecek/events{/privacy} + followers_url: https://api.github.com/users/TomasTomecek/followers + following_url: https://api.github.com/users/TomasTomecek/following{/other_user} + gists_url: https://api.github.com/users/TomasTomecek/gists{/gist_id} + gravatar_id: '' + html_url: https://github.com/TomasTomecek + id: 1662493 + login: TomasTomecek + node_id: MDQ6VXNlcjE2NjI0OTM= + organizations_url: https://api.github.com/users/TomasTomecek/orgs + permissions: + admin: true + maintain: true + pull: true + push: true + triage: true + received_events_url: https://api.github.com/users/TomasTomecek/received_events + repos_url: https://api.github.com/users/TomasTomecek/repos + role_name: admin + site_admin: false + starred_url: https://api.github.com/users/TomasTomecek/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/TomasTomecek/subscriptions + type: User + url: https://api.github.com/users/TomasTomecek + - avatar_url: https://avatars.githubusercontent.com/u/1866652?v=4 + events_url: https://api.github.com/users/eliskasl/events{/privacy} + followers_url: https://api.github.com/users/eliskasl/followers + following_url: https://api.github.com/users/eliskasl/following{/other_user} + gists_url: https://api.github.com/users/eliskasl/gists{/gist_id} + gravatar_id: '' + html_url: https://github.com/eliskasl + id: 1866652 + login: eliskasl + node_id: MDQ6VXNlcjE4NjY2NTI= + organizations_url: https://api.github.com/users/eliskasl/orgs + permissions: + admin: true + maintain: true + pull: true + push: true + triage: true + received_events_url: https://api.github.com/users/eliskasl/received_events + repos_url: https://api.github.com/users/eliskasl/repos + role_name: admin + site_admin: false + starred_url: https://api.github.com/users/eliskasl/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/eliskasl/subscriptions + type: User + url: https://api.github.com/users/eliskasl + - avatar_url: https://avatars.githubusercontent.com/u/2678400?v=4 + events_url: https://api.github.com/users/majamassarini/events{/privacy} + followers_url: https://api.github.com/users/majamassarini/followers + following_url: https://api.github.com/users/majamassarini/following{/other_user} + gists_url: https://api.github.com/users/majamassarini/gists{/gist_id} + gravatar_id: '' + html_url: https://github.com/majamassarini + id: 2678400 + login: majamassarini + node_id: MDQ6VXNlcjI2Nzg0MDA= + organizations_url: https://api.github.com/users/majamassarini/orgs + permissions: + admin: true + maintain: true + pull: true + push: true + triage: true + received_events_url: https://api.github.com/users/majamassarini/received_events + repos_url: https://api.github.com/users/majamassarini/repos + role_name: admin + site_admin: false + starred_url: https://api.github.com/users/majamassarini/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/majamassarini/subscriptions + type: User + url: https://api.github.com/users/majamassarini + - avatar_url: https://avatars.githubusercontent.com/u/8149784?v=4 + events_url: https://api.github.com/users/mfocko/events{/privacy} + followers_url: https://api.github.com/users/mfocko/followers + following_url: https://api.github.com/users/mfocko/following{/other_user} + gists_url: https://api.github.com/users/mfocko/gists{/gist_id} + gravatar_id: '' + html_url: https://github.com/mfocko + id: 8149784 + login: mfocko + node_id: MDQ6VXNlcjgxNDk3ODQ= + organizations_url: https://api.github.com/users/mfocko/orgs + permissions: + admin: true + maintain: true + pull: true + push: true + triage: true + received_events_url: https://api.github.com/users/mfocko/received_events + repos_url: https://api.github.com/users/mfocko/repos + role_name: admin + site_admin: false + starred_url: https://api.github.com/users/mfocko/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mfocko/subscriptions + type: User + url: https://api.github.com/users/mfocko + - avatar_url: https://avatars.githubusercontent.com/u/11816497?v=4 + events_url: https://api.github.com/users/csomh/events{/privacy} + followers_url: https://api.github.com/users/csomh/followers + following_url: https://api.github.com/users/csomh/following{/other_user} + gists_url: https://api.github.com/users/csomh/gists{/gist_id} + gravatar_id: '' + html_url: https://github.com/csomh + id: 11816497 + login: csomh + node_id: MDQ6VXNlcjExODE2NDk3 + organizations_url: https://api.github.com/users/csomh/orgs + permissions: + admin: true + maintain: true + pull: true + push: true + triage: true + received_events_url: https://api.github.com/users/csomh/received_events + repos_url: https://api.github.com/users/csomh/repos + role_name: admin + site_admin: false + starred_url: https://api.github.com/users/csomh/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/csomh/subscriptions + type: User + url: https://api.github.com/users/csomh + - avatar_url: https://avatars.githubusercontent.com/u/14923067?v=4 + events_url: https://api.github.com/users/nforro/events{/privacy} + followers_url: https://api.github.com/users/nforro/followers + following_url: https://api.github.com/users/nforro/following{/other_user} + gists_url: https://api.github.com/users/nforro/gists{/gist_id} + gravatar_id: '' + html_url: https://github.com/nforro + id: 14923067 + login: nforro + node_id: MDQ6VXNlcjE0OTIzMDY3 + organizations_url: https://api.github.com/users/nforro/orgs + permissions: + admin: false + maintain: false + pull: true + push: true + triage: true + received_events_url: https://api.github.com/users/nforro/received_events + repos_url: https://api.github.com/users/nforro/repos + role_name: write + site_admin: false + starred_url: https://api.github.com/users/nforro/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/nforro/subscriptions + type: User + url: https://api.github.com/users/nforro + - avatar_url: https://avatars.githubusercontent.com/u/20214043?v=4 + events_url: https://api.github.com/users/lachmanfrantisek/events{/privacy} + followers_url: https://api.github.com/users/lachmanfrantisek/followers + following_url: https://api.github.com/users/lachmanfrantisek/following{/other_user} + gists_url: https://api.github.com/users/lachmanfrantisek/gists{/gist_id} + gravatar_id: '' + html_url: https://github.com/lachmanfrantisek + id: 20214043 + login: lachmanfrantisek + node_id: MDQ6VXNlcjIwMjE0MDQz + organizations_url: https://api.github.com/users/lachmanfrantisek/orgs + permissions: + admin: true + maintain: true + pull: true + push: true + triage: true + received_events_url: https://api.github.com/users/lachmanfrantisek/received_events + repos_url: https://api.github.com/users/lachmanfrantisek/repos + role_name: admin + site_admin: false + starred_url: https://api.github.com/users/lachmanfrantisek/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/lachmanfrantisek/subscriptions + type: User + url: https://api.github.com/users/lachmanfrantisek + - avatar_url: https://avatars.githubusercontent.com/u/28452337?v=4 + events_url: https://api.github.com/users/FrNecas/events{/privacy} + followers_url: https://api.github.com/users/FrNecas/followers + following_url: https://api.github.com/users/FrNecas/following{/other_user} + gists_url: https://api.github.com/users/FrNecas/gists{/gist_id} + gravatar_id: '' + html_url: https://github.com/FrNecas + id: 28452337 + login: FrNecas + node_id: MDQ6VXNlcjI4NDUyMzM3 + organizations_url: https://api.github.com/users/FrNecas/orgs + permissions: + admin: true + maintain: true + pull: true + push: true + triage: true + received_events_url: https://api.github.com/users/FrNecas/received_events + repos_url: https://api.github.com/users/FrNecas/repos + role_name: admin + site_admin: false + starred_url: https://api.github.com/users/FrNecas/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/FrNecas/subscriptions + type: User + url: https://api.github.com/users/FrNecas + - avatar_url: https://avatars.githubusercontent.com/u/36231209?v=4 + events_url: https://api.github.com/users/usercont-release-bot/events{/privacy} + followers_url: https://api.github.com/users/usercont-release-bot/followers + following_url: https://api.github.com/users/usercont-release-bot/following{/other_user} + gists_url: https://api.github.com/users/usercont-release-bot/gists{/gist_id} + gravatar_id: '' + html_url: https://github.com/usercont-release-bot + id: 36231209 + login: usercont-release-bot + node_id: MDQ6VXNlcjM2MjMxMjA5 + organizations_url: https://api.github.com/users/usercont-release-bot/orgs + permissions: + admin: false + maintain: false + pull: true + push: true + triage: true + received_events_url: https://api.github.com/users/usercont-release-bot/received_events + repos_url: https://api.github.com/users/usercont-release-bot/repos + role_name: write + site_admin: false + starred_url: https://api.github.com/users/usercont-release-bot/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/usercont-release-bot/subscriptions + type: User + url: https://api.github.com/users/usercont-release-bot + - avatar_url: https://avatars.githubusercontent.com/u/49026743?v=4 + events_url: https://api.github.com/users/lbarcziova/events{/privacy} + followers_url: https://api.github.com/users/lbarcziova/followers + following_url: https://api.github.com/users/lbarcziova/following{/other_user} + gists_url: https://api.github.com/users/lbarcziova/gists{/gist_id} + gravatar_id: '' + html_url: https://github.com/lbarcziova + id: 49026743 + login: lbarcziova + node_id: MDQ6VXNlcjQ5MDI2NzQz + organizations_url: https://api.github.com/users/lbarcziova/orgs + permissions: + admin: true + maintain: true + pull: true + push: true + triage: true + received_events_url: https://api.github.com/users/lbarcziova/received_events + repos_url: https://api.github.com/users/lbarcziova/repos + role_name: admin + site_admin: false + starred_url: https://api.github.com/users/lbarcziova/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/lbarcziova/subscriptions + type: User + url: https://api.github.com/users/lbarcziova + - avatar_url: https://avatars.githubusercontent.com/u/70757578?v=4 + events_url: https://api.github.com/users/nikromen/events{/privacy} + followers_url: https://api.github.com/users/nikromen/followers + following_url: https://api.github.com/users/nikromen/following{/other_user} + gists_url: https://api.github.com/users/nikromen/gists{/gist_id} + gravatar_id: '' + html_url: https://github.com/nikromen + id: 70757578 + login: nikromen + node_id: MDQ6VXNlcjcwNzU3NTc4 + organizations_url: https://api.github.com/users/nikromen/orgs + permissions: + admin: true + maintain: true + pull: true + push: true + triage: true + received_events_url: https://api.github.com/users/nikromen/received_events + repos_url: https://api.github.com/users/nikromen/repos + role_name: admin + site_admin: false + starred_url: https://api.github.com/users/nikromen/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/nikromen/subscriptions + type: User + url: https://api.github.com/users/nikromen + _next: null + elapsed: 0.379265 + encoding: utf-8 + headers: + Access-Control-Allow-Origin: '*' + Access-Control-Expose-Headers: ETag, Link, Location, Retry-After, X-GitHub-OTP, + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, + X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, + X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, + Sunset + Cache-Control: private, max-age=60, s-maxage=60 + Content-Encoding: gzip + Content-Security-Policy: default-src 'none' + Content-Type: application/json; charset=utf-8 + Date: Wed, 14 Sep 2022 13:24:49 GMT + ETag: W/"187bac490621b8a449ed76219bd341f44c74d59adc0f3fac0472780630cf2f80" + Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin + Server: GitHub.com + Strict-Transport-Security: max-age=31536000; includeSubdomains; preload + Transfer-Encoding: chunked + Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, + X-Requested-With + X-Accepted-OAuth-Scopes: '' + X-Content-Type-Options: nosniff + X-Frame-Options: deny + X-GitHub-Media-Type: github.v3; format=json + X-GitHub-Request-Id: D2AA:A997:18A375:190141:6321D621 + X-OAuth-Scopes: read:discussion, read:enterprise, read:gpg_key, read:org, + read:packages, read:project, read:public_key, read:repo_hook, read:ssh_signing_key, + read:user, repo + X-RateLimit-Limit: '5000' + X-RateLimit-Remaining: '4969' + X-RateLimit-Reset: '1663165394' + X-RateLimit-Resource: core + X-RateLimit-Used: '31' + X-XSS-Protection: '0' + github-authentication-token-expiration: 2022-10-14 13:21:17 UTC + raw: !!binary "" + reason: OK + status_code: 200 + - metadata: + latency: 0.23512625694274902 + module_call_list: + - unittest.case + - requre.record_and_replace + - tests.integration.github.test_generic_commands + - ogr.abstract + - ogr.services.github.project + - ogr.abstract + - ogr.services.github.project + - ogr.abstract + - ogr.services.github.project + - github.PaginatedList + - github.Requester + - requests.sessions + - requre.objects + - requre.cassette + - requests.sessions + - send + output: + __store_indicator: 2 + _content: + - avatar_url: https://avatars.githubusercontent.com/u/85769?v=4 + events_url: https://api.github.com/users/xsuchy/events{/privacy} + followers_url: https://api.github.com/users/xsuchy/followers + following_url: https://api.github.com/users/xsuchy/following{/other_user} + gists_url: https://api.github.com/users/xsuchy/gists{/gist_id} + gravatar_id: '' + html_url: https://github.com/xsuchy + id: 85769 + login: xsuchy + node_id: MDQ6VXNlcjg1NzY5 + organizations_url: https://api.github.com/users/xsuchy/orgs + permissions: + admin: false + maintain: false + pull: true + push: true + triage: true + received_events_url: https://api.github.com/users/xsuchy/received_events + repos_url: https://api.github.com/users/xsuchy/repos + role_name: write + site_admin: false + starred_url: https://api.github.com/users/xsuchy/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/xsuchy/subscriptions + type: User + url: https://api.github.com/users/xsuchy + - avatar_url: https://avatars.githubusercontent.com/u/288686?v=4 + events_url: https://api.github.com/users/jpopelka/events{/privacy} + followers_url: https://api.github.com/users/jpopelka/followers + following_url: https://api.github.com/users/jpopelka/following{/other_user} + gists_url: https://api.github.com/users/jpopelka/gists{/gist_id} + gravatar_id: '' + html_url: https://github.com/jpopelka + id: 288686 + login: jpopelka + node_id: MDQ6VXNlcjI4ODY4Ng== + organizations_url: https://api.github.com/users/jpopelka/orgs + permissions: + admin: true + maintain: true + pull: true + push: true + triage: true + received_events_url: https://api.github.com/users/jpopelka/received_events + repos_url: https://api.github.com/users/jpopelka/repos + role_name: admin + site_admin: false + starred_url: https://api.github.com/users/jpopelka/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/jpopelka/subscriptions + type: User + url: https://api.github.com/users/jpopelka + - avatar_url: https://avatars.githubusercontent.com/u/1662493?v=4 + events_url: https://api.github.com/users/TomasTomecek/events{/privacy} + followers_url: https://api.github.com/users/TomasTomecek/followers + following_url: https://api.github.com/users/TomasTomecek/following{/other_user} + gists_url: https://api.github.com/users/TomasTomecek/gists{/gist_id} + gravatar_id: '' + html_url: https://github.com/TomasTomecek + id: 1662493 + login: TomasTomecek + node_id: MDQ6VXNlcjE2NjI0OTM= + organizations_url: https://api.github.com/users/TomasTomecek/orgs + permissions: + admin: true + maintain: true + pull: true + push: true + triage: true + received_events_url: https://api.github.com/users/TomasTomecek/received_events + repos_url: https://api.github.com/users/TomasTomecek/repos + role_name: admin + site_admin: false + starred_url: https://api.github.com/users/TomasTomecek/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/TomasTomecek/subscriptions + type: User + url: https://api.github.com/users/TomasTomecek + - avatar_url: https://avatars.githubusercontent.com/u/1866652?v=4 + events_url: https://api.github.com/users/eliskasl/events{/privacy} + followers_url: https://api.github.com/users/eliskasl/followers + following_url: https://api.github.com/users/eliskasl/following{/other_user} + gists_url: https://api.github.com/users/eliskasl/gists{/gist_id} + gravatar_id: '' + html_url: https://github.com/eliskasl + id: 1866652 + login: eliskasl + node_id: MDQ6VXNlcjE4NjY2NTI= + organizations_url: https://api.github.com/users/eliskasl/orgs + permissions: + admin: true + maintain: true + pull: true + push: true + triage: true + received_events_url: https://api.github.com/users/eliskasl/received_events + repos_url: https://api.github.com/users/eliskasl/repos + role_name: admin + site_admin: false + starred_url: https://api.github.com/users/eliskasl/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/eliskasl/subscriptions + type: User + url: https://api.github.com/users/eliskasl + - avatar_url: https://avatars.githubusercontent.com/u/2678400?v=4 + events_url: https://api.github.com/users/majamassarini/events{/privacy} + followers_url: https://api.github.com/users/majamassarini/followers + following_url: https://api.github.com/users/majamassarini/following{/other_user} + gists_url: https://api.github.com/users/majamassarini/gists{/gist_id} + gravatar_id: '' + html_url: https://github.com/majamassarini + id: 2678400 + login: majamassarini + node_id: MDQ6VXNlcjI2Nzg0MDA= + organizations_url: https://api.github.com/users/majamassarini/orgs + permissions: + admin: true + maintain: true + pull: true + push: true + triage: true + received_events_url: https://api.github.com/users/majamassarini/received_events + repos_url: https://api.github.com/users/majamassarini/repos + role_name: admin + site_admin: false + starred_url: https://api.github.com/users/majamassarini/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/majamassarini/subscriptions + type: User + url: https://api.github.com/users/majamassarini + - avatar_url: https://avatars.githubusercontent.com/u/8149784?v=4 + events_url: https://api.github.com/users/mfocko/events{/privacy} + followers_url: https://api.github.com/users/mfocko/followers + following_url: https://api.github.com/users/mfocko/following{/other_user} + gists_url: https://api.github.com/users/mfocko/gists{/gist_id} + gravatar_id: '' + html_url: https://github.com/mfocko + id: 8149784 + login: mfocko + node_id: MDQ6VXNlcjgxNDk3ODQ= + organizations_url: https://api.github.com/users/mfocko/orgs + permissions: + admin: true + maintain: true + pull: true + push: true + triage: true + received_events_url: https://api.github.com/users/mfocko/received_events + repos_url: https://api.github.com/users/mfocko/repos + role_name: admin + site_admin: false + starred_url: https://api.github.com/users/mfocko/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mfocko/subscriptions + type: User + url: https://api.github.com/users/mfocko + - avatar_url: https://avatars.githubusercontent.com/u/11816497?v=4 + events_url: https://api.github.com/users/csomh/events{/privacy} + followers_url: https://api.github.com/users/csomh/followers + following_url: https://api.github.com/users/csomh/following{/other_user} + gists_url: https://api.github.com/users/csomh/gists{/gist_id} + gravatar_id: '' + html_url: https://github.com/csomh + id: 11816497 + login: csomh + node_id: MDQ6VXNlcjExODE2NDk3 + organizations_url: https://api.github.com/users/csomh/orgs + permissions: + admin: true + maintain: true + pull: true + push: true + triage: true + received_events_url: https://api.github.com/users/csomh/received_events + repos_url: https://api.github.com/users/csomh/repos + role_name: admin + site_admin: false + starred_url: https://api.github.com/users/csomh/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/csomh/subscriptions + type: User + url: https://api.github.com/users/csomh + - avatar_url: https://avatars.githubusercontent.com/u/14923067?v=4 + events_url: https://api.github.com/users/nforro/events{/privacy} + followers_url: https://api.github.com/users/nforro/followers + following_url: https://api.github.com/users/nforro/following{/other_user} + gists_url: https://api.github.com/users/nforro/gists{/gist_id} + gravatar_id: '' + html_url: https://github.com/nforro + id: 14923067 + login: nforro + node_id: MDQ6VXNlcjE0OTIzMDY3 + organizations_url: https://api.github.com/users/nforro/orgs + permissions: + admin: false + maintain: false + pull: true + push: true + triage: true + received_events_url: https://api.github.com/users/nforro/received_events + repos_url: https://api.github.com/users/nforro/repos + role_name: write + site_admin: false + starred_url: https://api.github.com/users/nforro/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/nforro/subscriptions + type: User + url: https://api.github.com/users/nforro + - avatar_url: https://avatars.githubusercontent.com/u/20214043?v=4 + events_url: https://api.github.com/users/lachmanfrantisek/events{/privacy} + followers_url: https://api.github.com/users/lachmanfrantisek/followers + following_url: https://api.github.com/users/lachmanfrantisek/following{/other_user} + gists_url: https://api.github.com/users/lachmanfrantisek/gists{/gist_id} + gravatar_id: '' + html_url: https://github.com/lachmanfrantisek + id: 20214043 + login: lachmanfrantisek + node_id: MDQ6VXNlcjIwMjE0MDQz + organizations_url: https://api.github.com/users/lachmanfrantisek/orgs + permissions: + admin: true + maintain: true + pull: true + push: true + triage: true + received_events_url: https://api.github.com/users/lachmanfrantisek/received_events + repos_url: https://api.github.com/users/lachmanfrantisek/repos + role_name: admin + site_admin: false + starred_url: https://api.github.com/users/lachmanfrantisek/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/lachmanfrantisek/subscriptions + type: User + url: https://api.github.com/users/lachmanfrantisek + - avatar_url: https://avatars.githubusercontent.com/u/28452337?v=4 + events_url: https://api.github.com/users/FrNecas/events{/privacy} + followers_url: https://api.github.com/users/FrNecas/followers + following_url: https://api.github.com/users/FrNecas/following{/other_user} + gists_url: https://api.github.com/users/FrNecas/gists{/gist_id} + gravatar_id: '' + html_url: https://github.com/FrNecas + id: 28452337 + login: FrNecas + node_id: MDQ6VXNlcjI4NDUyMzM3 + organizations_url: https://api.github.com/users/FrNecas/orgs + permissions: + admin: true + maintain: true + pull: true + push: true + triage: true + received_events_url: https://api.github.com/users/FrNecas/received_events + repos_url: https://api.github.com/users/FrNecas/repos + role_name: admin + site_admin: false + starred_url: https://api.github.com/users/FrNecas/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/FrNecas/subscriptions + type: User + url: https://api.github.com/users/FrNecas + - avatar_url: https://avatars.githubusercontent.com/u/36231209?v=4 + events_url: https://api.github.com/users/usercont-release-bot/events{/privacy} + followers_url: https://api.github.com/users/usercont-release-bot/followers + following_url: https://api.github.com/users/usercont-release-bot/following{/other_user} + gists_url: https://api.github.com/users/usercont-release-bot/gists{/gist_id} + gravatar_id: '' + html_url: https://github.com/usercont-release-bot + id: 36231209 + login: usercont-release-bot + node_id: MDQ6VXNlcjM2MjMxMjA5 + organizations_url: https://api.github.com/users/usercont-release-bot/orgs + permissions: + admin: false + maintain: false + pull: true + push: true + triage: true + received_events_url: https://api.github.com/users/usercont-release-bot/received_events + repos_url: https://api.github.com/users/usercont-release-bot/repos + role_name: write + site_admin: false + starred_url: https://api.github.com/users/usercont-release-bot/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/usercont-release-bot/subscriptions + type: User + url: https://api.github.com/users/usercont-release-bot + - avatar_url: https://avatars.githubusercontent.com/u/49026743?v=4 + events_url: https://api.github.com/users/lbarcziova/events{/privacy} + followers_url: https://api.github.com/users/lbarcziova/followers + following_url: https://api.github.com/users/lbarcziova/following{/other_user} + gists_url: https://api.github.com/users/lbarcziova/gists{/gist_id} + gravatar_id: '' + html_url: https://github.com/lbarcziova + id: 49026743 + login: lbarcziova + node_id: MDQ6VXNlcjQ5MDI2NzQz + organizations_url: https://api.github.com/users/lbarcziova/orgs + permissions: + admin: true + maintain: true + pull: true + push: true + triage: true + received_events_url: https://api.github.com/users/lbarcziova/received_events + repos_url: https://api.github.com/users/lbarcziova/repos + role_name: admin + site_admin: false + starred_url: https://api.github.com/users/lbarcziova/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/lbarcziova/subscriptions + type: User + url: https://api.github.com/users/lbarcziova + - avatar_url: https://avatars.githubusercontent.com/u/70757578?v=4 + events_url: https://api.github.com/users/nikromen/events{/privacy} + followers_url: https://api.github.com/users/nikromen/followers + following_url: https://api.github.com/users/nikromen/following{/other_user} + gists_url: https://api.github.com/users/nikromen/gists{/gist_id} + gravatar_id: '' + html_url: https://github.com/nikromen + id: 70757578 + login: nikromen + node_id: MDQ6VXNlcjcwNzU3NTc4 + organizations_url: https://api.github.com/users/nikromen/orgs + permissions: + admin: true + maintain: true + pull: true + push: true + triage: true + received_events_url: https://api.github.com/users/nikromen/received_events + repos_url: https://api.github.com/users/nikromen/repos + role_name: admin + site_admin: false + starred_url: https://api.github.com/users/nikromen/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/nikromen/subscriptions + type: User + url: https://api.github.com/users/nikromen + _next: null + elapsed: 0.23451 + encoding: utf-8 + headers: + Access-Control-Allow-Origin: '*' + Access-Control-Expose-Headers: ETag, Link, Location, Retry-After, X-GitHub-OTP, + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, + X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, + X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, + Sunset + Cache-Control: private, max-age=60, s-maxage=60 + Content-Encoding: gzip + Content-Security-Policy: default-src 'none' + Content-Type: application/json; charset=utf-8 + Date: Wed, 14 Sep 2022 13:24:53 GMT + ETag: W/"187bac490621b8a449ed76219bd341f44c74d59adc0f3fac0472780630cf2f80" + Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin + Server: GitHub.com + Strict-Transport-Security: max-age=31536000; includeSubdomains; preload + Transfer-Encoding: chunked + Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, + X-Requested-With + X-Accepted-OAuth-Scopes: '' + X-Content-Type-Options: nosniff + X-Frame-Options: deny + X-GitHub-Media-Type: github.v3; format=json + X-GitHub-Request-Id: D2AA:A997:18B431:191248:6321D625 + X-OAuth-Scopes: read:discussion, read:enterprise, read:gpg_key, read:org, + read:packages, read:project, read:public_key, read:repo_hook, read:ssh_signing_key, + read:user, repo + X-RateLimit-Limit: '5000' + X-RateLimit-Remaining: '4955' + X-RateLimit-Reset: '1663165394' + X-RateLimit-Resource: core + X-RateLimit-Used: '45' + X-XSS-Protection: '0' + github-authentication-token-expiration: 2022-10-14 13:21:17 UTC + raw: !!binary "" + reason: OK + status_code: 200 + - metadata: + latency: 0.4071071147918701 + module_call_list: + - unittest.case + - requre.record_and_replace + - tests.integration.github.test_generic_commands + - ogr.abstract + - ogr.services.github.project + - ogr.abstract + - ogr.services.github.project + - ogr.abstract + - ogr.services.github.project + - github.PaginatedList + - github.Requester + - requests.sessions + - requre.objects + - requre.cassette + - requests.sessions + - send + output: + __store_indicator: 2 + _content: + - avatar_url: https://avatars.githubusercontent.com/u/85769?v=4 + events_url: https://api.github.com/users/xsuchy/events{/privacy} + followers_url: https://api.github.com/users/xsuchy/followers + following_url: https://api.github.com/users/xsuchy/following{/other_user} + gists_url: https://api.github.com/users/xsuchy/gists{/gist_id} + gravatar_id: '' + html_url: https://github.com/xsuchy + id: 85769 + login: xsuchy + node_id: MDQ6VXNlcjg1NzY5 + organizations_url: https://api.github.com/users/xsuchy/orgs + permissions: + admin: false + maintain: false + pull: true + push: true + triage: true + received_events_url: https://api.github.com/users/xsuchy/received_events + repos_url: https://api.github.com/users/xsuchy/repos + role_name: write + site_admin: false + starred_url: https://api.github.com/users/xsuchy/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/xsuchy/subscriptions + type: User + url: https://api.github.com/users/xsuchy + - avatar_url: https://avatars.githubusercontent.com/u/288686?v=4 + events_url: https://api.github.com/users/jpopelka/events{/privacy} + followers_url: https://api.github.com/users/jpopelka/followers + following_url: https://api.github.com/users/jpopelka/following{/other_user} + gists_url: https://api.github.com/users/jpopelka/gists{/gist_id} + gravatar_id: '' + html_url: https://github.com/jpopelka + id: 288686 + login: jpopelka + node_id: MDQ6VXNlcjI4ODY4Ng== + organizations_url: https://api.github.com/users/jpopelka/orgs + permissions: + admin: true + maintain: true + pull: true + push: true + triage: true + received_events_url: https://api.github.com/users/jpopelka/received_events + repos_url: https://api.github.com/users/jpopelka/repos + role_name: admin + site_admin: false + starred_url: https://api.github.com/users/jpopelka/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/jpopelka/subscriptions + type: User + url: https://api.github.com/users/jpopelka + - avatar_url: https://avatars.githubusercontent.com/u/1662493?v=4 + events_url: https://api.github.com/users/TomasTomecek/events{/privacy} + followers_url: https://api.github.com/users/TomasTomecek/followers + following_url: https://api.github.com/users/TomasTomecek/following{/other_user} + gists_url: https://api.github.com/users/TomasTomecek/gists{/gist_id} + gravatar_id: '' + html_url: https://github.com/TomasTomecek + id: 1662493 + login: TomasTomecek + node_id: MDQ6VXNlcjE2NjI0OTM= + organizations_url: https://api.github.com/users/TomasTomecek/orgs + permissions: + admin: true + maintain: true + pull: true + push: true + triage: true + received_events_url: https://api.github.com/users/TomasTomecek/received_events + repos_url: https://api.github.com/users/TomasTomecek/repos + role_name: admin + site_admin: false + starred_url: https://api.github.com/users/TomasTomecek/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/TomasTomecek/subscriptions + type: User + url: https://api.github.com/users/TomasTomecek + - avatar_url: https://avatars.githubusercontent.com/u/1866652?v=4 + events_url: https://api.github.com/users/eliskasl/events{/privacy} + followers_url: https://api.github.com/users/eliskasl/followers + following_url: https://api.github.com/users/eliskasl/following{/other_user} + gists_url: https://api.github.com/users/eliskasl/gists{/gist_id} + gravatar_id: '' + html_url: https://github.com/eliskasl + id: 1866652 + login: eliskasl + node_id: MDQ6VXNlcjE4NjY2NTI= + organizations_url: https://api.github.com/users/eliskasl/orgs + permissions: + admin: true + maintain: true + pull: true + push: true + triage: true + received_events_url: https://api.github.com/users/eliskasl/received_events + repos_url: https://api.github.com/users/eliskasl/repos + role_name: admin + site_admin: false + starred_url: https://api.github.com/users/eliskasl/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/eliskasl/subscriptions + type: User + url: https://api.github.com/users/eliskasl + - avatar_url: https://avatars.githubusercontent.com/u/2678400?v=4 + events_url: https://api.github.com/users/majamassarini/events{/privacy} + followers_url: https://api.github.com/users/majamassarini/followers + following_url: https://api.github.com/users/majamassarini/following{/other_user} + gists_url: https://api.github.com/users/majamassarini/gists{/gist_id} + gravatar_id: '' + html_url: https://github.com/majamassarini + id: 2678400 + login: majamassarini + node_id: MDQ6VXNlcjI2Nzg0MDA= + organizations_url: https://api.github.com/users/majamassarini/orgs + permissions: + admin: true + maintain: true + pull: true + push: true + triage: true + received_events_url: https://api.github.com/users/majamassarini/received_events + repos_url: https://api.github.com/users/majamassarini/repos + role_name: admin + site_admin: false + starred_url: https://api.github.com/users/majamassarini/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/majamassarini/subscriptions + type: User + url: https://api.github.com/users/majamassarini + - avatar_url: https://avatars.githubusercontent.com/u/8149784?v=4 + events_url: https://api.github.com/users/mfocko/events{/privacy} + followers_url: https://api.github.com/users/mfocko/followers + following_url: https://api.github.com/users/mfocko/following{/other_user} + gists_url: https://api.github.com/users/mfocko/gists{/gist_id} + gravatar_id: '' + html_url: https://github.com/mfocko + id: 8149784 + login: mfocko + node_id: MDQ6VXNlcjgxNDk3ODQ= + organizations_url: https://api.github.com/users/mfocko/orgs + permissions: + admin: true + maintain: true + pull: true + push: true + triage: true + received_events_url: https://api.github.com/users/mfocko/received_events + repos_url: https://api.github.com/users/mfocko/repos + role_name: admin + site_admin: false + starred_url: https://api.github.com/users/mfocko/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mfocko/subscriptions + type: User + url: https://api.github.com/users/mfocko + - avatar_url: https://avatars.githubusercontent.com/u/11816497?v=4 + events_url: https://api.github.com/users/csomh/events{/privacy} + followers_url: https://api.github.com/users/csomh/followers + following_url: https://api.github.com/users/csomh/following{/other_user} + gists_url: https://api.github.com/users/csomh/gists{/gist_id} + gravatar_id: '' + html_url: https://github.com/csomh + id: 11816497 + login: csomh + node_id: MDQ6VXNlcjExODE2NDk3 + organizations_url: https://api.github.com/users/csomh/orgs + permissions: + admin: true + maintain: true + pull: true + push: true + triage: true + received_events_url: https://api.github.com/users/csomh/received_events + repos_url: https://api.github.com/users/csomh/repos + role_name: admin + site_admin: false + starred_url: https://api.github.com/users/csomh/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/csomh/subscriptions + type: User + url: https://api.github.com/users/csomh + - avatar_url: https://avatars.githubusercontent.com/u/14923067?v=4 + events_url: https://api.github.com/users/nforro/events{/privacy} + followers_url: https://api.github.com/users/nforro/followers + following_url: https://api.github.com/users/nforro/following{/other_user} + gists_url: https://api.github.com/users/nforro/gists{/gist_id} + gravatar_id: '' + html_url: https://github.com/nforro + id: 14923067 + login: nforro + node_id: MDQ6VXNlcjE0OTIzMDY3 + organizations_url: https://api.github.com/users/nforro/orgs + permissions: + admin: false + maintain: false + pull: true + push: true + triage: true + received_events_url: https://api.github.com/users/nforro/received_events + repos_url: https://api.github.com/users/nforro/repos + role_name: write + site_admin: false + starred_url: https://api.github.com/users/nforro/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/nforro/subscriptions + type: User + url: https://api.github.com/users/nforro + - avatar_url: https://avatars.githubusercontent.com/u/20214043?v=4 + events_url: https://api.github.com/users/lachmanfrantisek/events{/privacy} + followers_url: https://api.github.com/users/lachmanfrantisek/followers + following_url: https://api.github.com/users/lachmanfrantisek/following{/other_user} + gists_url: https://api.github.com/users/lachmanfrantisek/gists{/gist_id} + gravatar_id: '' + html_url: https://github.com/lachmanfrantisek + id: 20214043 + login: lachmanfrantisek + node_id: MDQ6VXNlcjIwMjE0MDQz + organizations_url: https://api.github.com/users/lachmanfrantisek/orgs + permissions: + admin: true + maintain: true + pull: true + push: true + triage: true + received_events_url: https://api.github.com/users/lachmanfrantisek/received_events + repos_url: https://api.github.com/users/lachmanfrantisek/repos + role_name: admin + site_admin: false + starred_url: https://api.github.com/users/lachmanfrantisek/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/lachmanfrantisek/subscriptions + type: User + url: https://api.github.com/users/lachmanfrantisek + - avatar_url: https://avatars.githubusercontent.com/u/28452337?v=4 + events_url: https://api.github.com/users/FrNecas/events{/privacy} + followers_url: https://api.github.com/users/FrNecas/followers + following_url: https://api.github.com/users/FrNecas/following{/other_user} + gists_url: https://api.github.com/users/FrNecas/gists{/gist_id} + gravatar_id: '' + html_url: https://github.com/FrNecas + id: 28452337 + login: FrNecas + node_id: MDQ6VXNlcjI4NDUyMzM3 + organizations_url: https://api.github.com/users/FrNecas/orgs + permissions: + admin: true + maintain: true + pull: true + push: true + triage: true + received_events_url: https://api.github.com/users/FrNecas/received_events + repos_url: https://api.github.com/users/FrNecas/repos + role_name: admin + site_admin: false + starred_url: https://api.github.com/users/FrNecas/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/FrNecas/subscriptions + type: User + url: https://api.github.com/users/FrNecas + - avatar_url: https://avatars.githubusercontent.com/u/36231209?v=4 + events_url: https://api.github.com/users/usercont-release-bot/events{/privacy} + followers_url: https://api.github.com/users/usercont-release-bot/followers + following_url: https://api.github.com/users/usercont-release-bot/following{/other_user} + gists_url: https://api.github.com/users/usercont-release-bot/gists{/gist_id} + gravatar_id: '' + html_url: https://github.com/usercont-release-bot + id: 36231209 + login: usercont-release-bot + node_id: MDQ6VXNlcjM2MjMxMjA5 + organizations_url: https://api.github.com/users/usercont-release-bot/orgs + permissions: + admin: false + maintain: false + pull: true + push: true + triage: true + received_events_url: https://api.github.com/users/usercont-release-bot/received_events + repos_url: https://api.github.com/users/usercont-release-bot/repos + role_name: write + site_admin: false + starred_url: https://api.github.com/users/usercont-release-bot/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/usercont-release-bot/subscriptions + type: User + url: https://api.github.com/users/usercont-release-bot + - avatar_url: https://avatars.githubusercontent.com/u/49026743?v=4 + events_url: https://api.github.com/users/lbarcziova/events{/privacy} + followers_url: https://api.github.com/users/lbarcziova/followers + following_url: https://api.github.com/users/lbarcziova/following{/other_user} + gists_url: https://api.github.com/users/lbarcziova/gists{/gist_id} + gravatar_id: '' + html_url: https://github.com/lbarcziova + id: 49026743 + login: lbarcziova + node_id: MDQ6VXNlcjQ5MDI2NzQz + organizations_url: https://api.github.com/users/lbarcziova/orgs + permissions: + admin: true + maintain: true + pull: true + push: true + triage: true + received_events_url: https://api.github.com/users/lbarcziova/received_events + repos_url: https://api.github.com/users/lbarcziova/repos + role_name: admin + site_admin: false + starred_url: https://api.github.com/users/lbarcziova/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/lbarcziova/subscriptions + type: User + url: https://api.github.com/users/lbarcziova + - avatar_url: https://avatars.githubusercontent.com/u/70757578?v=4 + events_url: https://api.github.com/users/nikromen/events{/privacy} + followers_url: https://api.github.com/users/nikromen/followers + following_url: https://api.github.com/users/nikromen/following{/other_user} + gists_url: https://api.github.com/users/nikromen/gists{/gist_id} + gravatar_id: '' + html_url: https://github.com/nikromen + id: 70757578 + login: nikromen + node_id: MDQ6VXNlcjcwNzU3NTc4 + organizations_url: https://api.github.com/users/nikromen/orgs + permissions: + admin: true + maintain: true + pull: true + push: true + triage: true + received_events_url: https://api.github.com/users/nikromen/received_events + repos_url: https://api.github.com/users/nikromen/repos + role_name: admin + site_admin: false + starred_url: https://api.github.com/users/nikromen/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/nikromen/subscriptions + type: User + url: https://api.github.com/users/nikromen + _next: null + elapsed: 0.40644 + encoding: utf-8 + headers: + Access-Control-Allow-Origin: '*' + Access-Control-Expose-Headers: ETag, Link, Location, Retry-After, X-GitHub-OTP, + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, + X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, + X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, + Sunset + Cache-Control: private, max-age=60, s-maxage=60 + Content-Encoding: gzip + Content-Security-Policy: default-src 'none' + Content-Type: application/json; charset=utf-8 + Date: Wed, 14 Sep 2022 13:24:56 GMT + ETag: W/"187bac490621b8a449ed76219bd341f44c74d59adc0f3fac0472780630cf2f80" + Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin + Server: GitHub.com + Strict-Transport-Security: max-age=31536000; includeSubdomains; preload + Transfer-Encoding: chunked + Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, + X-Requested-With + X-Accepted-OAuth-Scopes: '' + X-Content-Type-Options: nosniff + X-Frame-Options: deny + X-GitHub-Media-Type: github.v3; format=json + X-GitHub-Request-Id: D2AA:A997:18C127:191F52:6321D628 + X-OAuth-Scopes: read:discussion, read:enterprise, read:gpg_key, read:org, + read:packages, read:project, read:public_key, read:repo_hook, read:ssh_signing_key, + read:user, repo + X-RateLimit-Limit: '5000' + X-RateLimit-Remaining: '4941' + X-RateLimit-Reset: '1663165394' + X-RateLimit-Resource: core + X-RateLimit-Used: '59' + X-XSS-Protection: '0' + github-authentication-token-expiration: 2022-10-14 13:21:17 UTC + raw: !!binary "" + reason: OK + status_code: 200 + https://api.github.com:443/repos/packit/ogr/collaborators/FrNecas/permission: + - metadata: + latency: 0.20032882690429688 + module_call_list: + - unittest.case + - requre.record_and_replace + - tests.integration.github.test_generic_commands + - ogr.abstract + - ogr.services.github.project + - ogr.abstract + - ogr.services.github.project + - ogr.abstract + - ogr.services.github.project + - github.Repository + - github.Requester + - requests.sessions + - requre.objects + - requre.cassette + - requests.sessions + - send + output: + __store_indicator: 2 + _content: + permission: admin + role_name: admin + user: + avatar_url: https://avatars.githubusercontent.com/u/28452337?v=4 + events_url: https://api.github.com/users/FrNecas/events{/privacy} + followers_url: https://api.github.com/users/FrNecas/followers + following_url: https://api.github.com/users/FrNecas/following{/other_user} + gists_url: https://api.github.com/users/FrNecas/gists{/gist_id} + gravatar_id: '' + html_url: https://github.com/FrNecas + id: 28452337 + login: FrNecas + node_id: MDQ6VXNlcjI4NDUyMzM3 + organizations_url: https://api.github.com/users/FrNecas/orgs + permissions: + admin: true + maintain: true + pull: true + push: true + triage: true + received_events_url: https://api.github.com/users/FrNecas/received_events + repos_url: https://api.github.com/users/FrNecas/repos + role_name: admin + site_admin: false + starred_url: https://api.github.com/users/FrNecas/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/FrNecas/subscriptions + type: User + url: https://api.github.com/users/FrNecas + _next: null + elapsed: 0.199855 + encoding: utf-8 + headers: + Access-Control-Allow-Origin: '*' + Access-Control-Expose-Headers: ETag, Link, Location, Retry-After, X-GitHub-OTP, + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, + X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, + X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, + Sunset + Cache-Control: private, max-age=60, s-maxage=60 + Content-Encoding: gzip + Content-Security-Policy: default-src 'none' + Content-Type: application/json; charset=utf-8 + Date: Wed, 14 Sep 2022 13:24:52 GMT + ETag: W/"f01c0f60dcd0929954454d8ed02d7b9dadec69a23d6a7a45f86ec58477b0b3ee" + Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin + Server: GitHub.com + Strict-Transport-Security: max-age=31536000; includeSubdomains; preload + Transfer-Encoding: chunked + Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, + X-Requested-With + X-Accepted-OAuth-Scopes: '' + X-Content-Type-Options: nosniff + X-Frame-Options: deny + X-GitHub-Media-Type: github.v3; format=json + X-GitHub-Request-Id: D2AA:A997:18AFC2:190DBF:6321D624 + X-OAuth-Scopes: read:discussion, read:enterprise, read:gpg_key, read:org, + read:packages, read:project, read:public_key, read:repo_hook, read:ssh_signing_key, + read:user, repo + X-RateLimit-Limit: '5000' + X-RateLimit-Remaining: '4959' + X-RateLimit-Reset: '1663165394' + X-RateLimit-Resource: core + X-RateLimit-Used: '41' + X-XSS-Protection: '0' + github-authentication-token-expiration: 2022-10-14 13:21:17 UTC + raw: !!binary "" + reason: OK + status_code: 200 + - metadata: + latency: 0.1992509365081787 + module_call_list: + - unittest.case + - requre.record_and_replace + - tests.integration.github.test_generic_commands + - ogr.abstract + - ogr.services.github.project + - ogr.abstract + - ogr.services.github.project + - ogr.abstract + - ogr.services.github.project + - github.Repository + - github.Requester + - requests.sessions + - requre.objects + - requre.cassette + - requests.sessions + - send + output: + __store_indicator: 2 + _content: + permission: admin + role_name: admin + user: + avatar_url: https://avatars.githubusercontent.com/u/28452337?v=4 + events_url: https://api.github.com/users/FrNecas/events{/privacy} + followers_url: https://api.github.com/users/FrNecas/followers + following_url: https://api.github.com/users/FrNecas/following{/other_user} + gists_url: https://api.github.com/users/FrNecas/gists{/gist_id} + gravatar_id: '' + html_url: https://github.com/FrNecas + id: 28452337 + login: FrNecas + node_id: MDQ6VXNlcjI4NDUyMzM3 + organizations_url: https://api.github.com/users/FrNecas/orgs + permissions: + admin: true + maintain: true + pull: true + push: true + triage: true + received_events_url: https://api.github.com/users/FrNecas/received_events + repos_url: https://api.github.com/users/FrNecas/repos + role_name: admin + site_admin: false + starred_url: https://api.github.com/users/FrNecas/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/FrNecas/subscriptions + type: User + url: https://api.github.com/users/FrNecas + _next: null + elapsed: 0.198768 + encoding: utf-8 + headers: + Access-Control-Allow-Origin: '*' + Access-Control-Expose-Headers: ETag, Link, Location, Retry-After, X-GitHub-OTP, + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, + X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, + X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, + Sunset + Cache-Control: private, max-age=60, s-maxage=60 + Content-Encoding: gzip + Content-Security-Policy: default-src 'none' + Content-Type: application/json; charset=utf-8 + Date: Wed, 14 Sep 2022 13:24:56 GMT + ETag: W/"f01c0f60dcd0929954454d8ed02d7b9dadec69a23d6a7a45f86ec58477b0b3ee" + Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin + Server: GitHub.com + Strict-Transport-Security: max-age=31536000; includeSubdomains; preload + Transfer-Encoding: chunked + Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, + X-Requested-With + X-Accepted-OAuth-Scopes: '' + X-Content-Type-Options: nosniff + X-Frame-Options: deny + X-GitHub-Media-Type: github.v3; format=json + X-GitHub-Request-Id: D2AA:A997:18BDFA:191C34:6321D627 + X-OAuth-Scopes: read:discussion, read:enterprise, read:gpg_key, read:org, + read:packages, read:project, read:public_key, read:repo_hook, read:ssh_signing_key, + read:user, repo + X-RateLimit-Limit: '5000' + X-RateLimit-Remaining: '4945' + X-RateLimit-Reset: '1663165394' + X-RateLimit-Resource: core + X-RateLimit-Used: '55' + X-XSS-Protection: '0' + github-authentication-token-expiration: 2022-10-14 13:21:17 UTC + raw: !!binary "" + reason: OK + status_code: 200 + - metadata: + latency: 0.40054965019226074 + module_call_list: + - unittest.case + - requre.record_and_replace + - tests.integration.github.test_generic_commands + - ogr.abstract + - ogr.services.github.project + - ogr.abstract + - ogr.services.github.project + - ogr.abstract + - ogr.services.github.project + - github.Repository + - github.Requester + - requests.sessions + - requre.objects + - requre.cassette + - requests.sessions + - send + output: + __store_indicator: 2 + _content: + permission: admin + role_name: admin + user: + avatar_url: https://avatars.githubusercontent.com/u/28452337?v=4 + events_url: https://api.github.com/users/FrNecas/events{/privacy} + followers_url: https://api.github.com/users/FrNecas/followers + following_url: https://api.github.com/users/FrNecas/following{/other_user} + gists_url: https://api.github.com/users/FrNecas/gists{/gist_id} + gravatar_id: '' + html_url: https://github.com/FrNecas + id: 28452337 + login: FrNecas + node_id: MDQ6VXNlcjI4NDUyMzM3 + organizations_url: https://api.github.com/users/FrNecas/orgs + permissions: + admin: true + maintain: true + pull: true + push: true + triage: true + received_events_url: https://api.github.com/users/FrNecas/received_events + repos_url: https://api.github.com/users/FrNecas/repos + role_name: admin + site_admin: false + starred_url: https://api.github.com/users/FrNecas/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/FrNecas/subscriptions + type: User + url: https://api.github.com/users/FrNecas + _next: null + elapsed: 0.40008 + encoding: utf-8 + headers: + Access-Control-Allow-Origin: '*' + Access-Control-Expose-Headers: ETag, Link, Location, Retry-After, X-GitHub-OTP, + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, + X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, + X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, + Sunset + Cache-Control: private, max-age=60, s-maxage=60 + Content-Encoding: gzip + Content-Security-Policy: default-src 'none' + Content-Type: application/json; charset=utf-8 + Date: Wed, 14 Sep 2022 13:25:00 GMT + ETag: W/"f01c0f60dcd0929954454d8ed02d7b9dadec69a23d6a7a45f86ec58477b0b3ee" + Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin + Server: GitHub.com + Strict-Transport-Security: max-age=31536000; includeSubdomains; preload + Transfer-Encoding: chunked + Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, + X-Requested-With + X-Accepted-OAuth-Scopes: '' + X-Content-Type-Options: nosniff + X-Frame-Options: deny + X-GitHub-Media-Type: github.v3; format=json + X-GitHub-Request-Id: D2AA:A997:18CECC:192D46:6321D62C + X-OAuth-Scopes: read:discussion, read:enterprise, read:gpg_key, read:org, + read:packages, read:project, read:public_key, read:repo_hook, read:ssh_signing_key, + read:user, repo + X-RateLimit-Limit: '5000' + X-RateLimit-Remaining: '4931' + X-RateLimit-Reset: '1663165394' + X-RateLimit-Resource: core + X-RateLimit-Used: '69' + X-XSS-Protection: '0' + github-authentication-token-expiration: 2022-10-14 13:21:17 UTC + raw: !!binary "" + reason: OK + status_code: 200 + https://api.github.com:443/repos/packit/ogr/collaborators/TomasTomecek/permission: + - metadata: + latency: 0.19422626495361328 + module_call_list: + - unittest.case + - requre.record_and_replace + - tests.integration.github.test_generic_commands + - ogr.abstract + - ogr.services.github.project + - ogr.abstract + - ogr.services.github.project + - ogr.abstract + - ogr.services.github.project + - github.Repository + - github.Requester + - requests.sessions + - requre.objects + - requre.cassette + - requests.sessions + - send + output: + __store_indicator: 2 + _content: + permission: admin + role_name: admin + user: + avatar_url: https://avatars.githubusercontent.com/u/1662493?v=4 + events_url: https://api.github.com/users/TomasTomecek/events{/privacy} + followers_url: https://api.github.com/users/TomasTomecek/followers + following_url: https://api.github.com/users/TomasTomecek/following{/other_user} + gists_url: https://api.github.com/users/TomasTomecek/gists{/gist_id} + gravatar_id: '' + html_url: https://github.com/TomasTomecek + id: 1662493 + login: TomasTomecek + node_id: MDQ6VXNlcjE2NjI0OTM= + organizations_url: https://api.github.com/users/TomasTomecek/orgs + permissions: + admin: true + maintain: true + pull: true + push: true + triage: true + received_events_url: https://api.github.com/users/TomasTomecek/received_events + repos_url: https://api.github.com/users/TomasTomecek/repos + role_name: admin + site_admin: false + starred_url: https://api.github.com/users/TomasTomecek/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/TomasTomecek/subscriptions + type: User + url: https://api.github.com/users/TomasTomecek + _next: null + elapsed: 0.193793 + encoding: utf-8 + headers: + Access-Control-Allow-Origin: '*' + Access-Control-Expose-Headers: ETag, Link, Location, Retry-After, X-GitHub-OTP, + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, + X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, + X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, + Sunset + Cache-Control: private, max-age=60, s-maxage=60 + Content-Encoding: gzip + Content-Security-Policy: default-src 'none' + Content-Type: application/json; charset=utf-8 + Date: Wed, 14 Sep 2022 13:24:50 GMT + ETag: W/"46dad092b98f1e32a2c3328dd0957b140a4622d5255733df410a26fa61e7cdf7" + Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin + Server: GitHub.com + Strict-Transport-Security: max-age=31536000; includeSubdomains; preload + Transfer-Encoding: chunked + Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, + X-Requested-With + X-Accepted-OAuth-Scopes: '' + X-Content-Type-Options: nosniff + X-Frame-Options: deny + X-GitHub-Media-Type: github.v3; format=json + X-GitHub-Request-Id: D2AA:A997:18A824:190609:6321D622 + X-OAuth-Scopes: read:discussion, read:enterprise, read:gpg_key, read:org, + read:packages, read:project, read:public_key, read:repo_hook, read:ssh_signing_key, + read:user, repo + X-RateLimit-Limit: '5000' + X-RateLimit-Remaining: '4966' + X-RateLimit-Reset: '1663165394' + X-RateLimit-Resource: core + X-RateLimit-Used: '34' + X-XSS-Protection: '0' + github-authentication-token-expiration: 2022-10-14 13:21:17 UTC + raw: !!binary "" + reason: OK + status_code: 200 + - metadata: + latency: 0.3939199447631836 + module_call_list: + - unittest.case + - requre.record_and_replace + - tests.integration.github.test_generic_commands + - ogr.abstract + - ogr.services.github.project + - ogr.abstract + - ogr.services.github.project + - ogr.abstract + - ogr.services.github.project + - github.Repository + - github.Requester + - requests.sessions + - requre.objects + - requre.cassette + - requests.sessions + - send + output: + __store_indicator: 2 + _content: + permission: admin + role_name: admin + user: + avatar_url: https://avatars.githubusercontent.com/u/1662493?v=4 + events_url: https://api.github.com/users/TomasTomecek/events{/privacy} + followers_url: https://api.github.com/users/TomasTomecek/followers + following_url: https://api.github.com/users/TomasTomecek/following{/other_user} + gists_url: https://api.github.com/users/TomasTomecek/gists{/gist_id} + gravatar_id: '' + html_url: https://github.com/TomasTomecek + id: 1662493 + login: TomasTomecek + node_id: MDQ6VXNlcjE2NjI0OTM= + organizations_url: https://api.github.com/users/TomasTomecek/orgs + permissions: + admin: true + maintain: true + pull: true + push: true + triage: true + received_events_url: https://api.github.com/users/TomasTomecek/received_events + repos_url: https://api.github.com/users/TomasTomecek/repos + role_name: admin + site_admin: false + starred_url: https://api.github.com/users/TomasTomecek/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/TomasTomecek/subscriptions + type: User + url: https://api.github.com/users/TomasTomecek + _next: null + elapsed: 0.393441 + encoding: utf-8 + headers: + Access-Control-Allow-Origin: '*' + Access-Control-Expose-Headers: ETag, Link, Location, Retry-After, X-GitHub-OTP, + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, + X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, + X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, + Sunset + Cache-Control: private, max-age=60, s-maxage=60 + Content-Encoding: gzip + Content-Security-Policy: default-src 'none' + Content-Type: application/json; charset=utf-8 + Date: Wed, 14 Sep 2022 13:24:54 GMT + ETag: W/"46dad092b98f1e32a2c3328dd0957b140a4622d5255733df410a26fa61e7cdf7" + Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin + Server: GitHub.com + Strict-Transport-Security: max-age=31536000; includeSubdomains; preload + Transfer-Encoding: chunked + Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, + X-Requested-With + X-Accepted-OAuth-Scopes: '' + X-Content-Type-Options: nosniff + X-Frame-Options: deny + X-GitHub-Media-Type: github.v3; format=json + X-GitHub-Request-Id: D2AA:A997:18B6F2:191517:6321D626 + X-OAuth-Scopes: read:discussion, read:enterprise, read:gpg_key, read:org, + read:packages, read:project, read:public_key, read:repo_hook, read:ssh_signing_key, + read:user, repo + X-RateLimit-Limit: '5000' + X-RateLimit-Remaining: '4952' + X-RateLimit-Reset: '1663165394' + X-RateLimit-Resource: core + X-RateLimit-Used: '48' + X-XSS-Protection: '0' + github-authentication-token-expiration: 2022-10-14 13:21:17 UTC + raw: !!binary "" + reason: OK + status_code: 200 + - metadata: + latency: 0.1981494426727295 + module_call_list: + - unittest.case + - requre.record_and_replace + - tests.integration.github.test_generic_commands + - ogr.abstract + - ogr.services.github.project + - ogr.abstract + - ogr.services.github.project + - ogr.abstract + - ogr.services.github.project + - github.Repository + - github.Requester + - requests.sessions + - requre.objects + - requre.cassette + - requests.sessions + - send + output: + __store_indicator: 2 + _content: + permission: admin + role_name: admin + user: + avatar_url: https://avatars.githubusercontent.com/u/1662493?v=4 + events_url: https://api.github.com/users/TomasTomecek/events{/privacy} + followers_url: https://api.github.com/users/TomasTomecek/followers + following_url: https://api.github.com/users/TomasTomecek/following{/other_user} + gists_url: https://api.github.com/users/TomasTomecek/gists{/gist_id} + gravatar_id: '' + html_url: https://github.com/TomasTomecek + id: 1662493 + login: TomasTomecek + node_id: MDQ6VXNlcjE2NjI0OTM= + organizations_url: https://api.github.com/users/TomasTomecek/orgs + permissions: + admin: true + maintain: true + pull: true + push: true + triage: true + received_events_url: https://api.github.com/users/TomasTomecek/received_events + repos_url: https://api.github.com/users/TomasTomecek/repos + role_name: admin + site_admin: false + starred_url: https://api.github.com/users/TomasTomecek/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/TomasTomecek/subscriptions + type: User + url: https://api.github.com/users/TomasTomecek + _next: null + elapsed: 0.197736 + encoding: utf-8 + headers: + Access-Control-Allow-Origin: '*' + Access-Control-Expose-Headers: ETag, Link, Location, Retry-After, X-GitHub-OTP, + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, + X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, + X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, + Sunset + Cache-Control: private, max-age=60, s-maxage=60 + Content-Encoding: gzip + Content-Security-Policy: default-src 'none' + Content-Type: application/json; charset=utf-8 + Date: Wed, 14 Sep 2022 13:24:58 GMT + ETag: W/"46dad092b98f1e32a2c3328dd0957b140a4622d5255733df410a26fa61e7cdf7" + Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin + Server: GitHub.com + Strict-Transport-Security: max-age=31536000; includeSubdomains; preload + Transfer-Encoding: chunked + Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, + X-Requested-With + X-Accepted-OAuth-Scopes: '' + X-Content-Type-Options: nosniff + X-Frame-Options: deny + X-GitHub-Media-Type: github.v3; format=json + X-GitHub-Request-Id: D2AA:A997:18C5EF:192456:6321D629 + X-OAuth-Scopes: read:discussion, read:enterprise, read:gpg_key, read:org, + read:packages, read:project, read:public_key, read:repo_hook, read:ssh_signing_key, + read:user, repo + X-RateLimit-Limit: '5000' + X-RateLimit-Remaining: '4938' + X-RateLimit-Reset: '1663165394' + X-RateLimit-Resource: core + X-RateLimit-Used: '62' + X-XSS-Protection: '0' + github-authentication-token-expiration: 2022-10-14 13:21:17 UTC + raw: !!binary "" + reason: OK + status_code: 200 + https://api.github.com:443/repos/packit/ogr/collaborators/csomh/permission: + - metadata: + latency: 0.39974546432495117 + module_call_list: + - unittest.case + - requre.record_and_replace + - tests.integration.github.test_generic_commands + - ogr.abstract + - ogr.services.github.project + - ogr.abstract + - ogr.services.github.project + - ogr.abstract + - ogr.services.github.project + - github.Repository + - github.Requester + - requests.sessions + - requre.objects + - requre.cassette + - requests.sessions + - send + output: + __store_indicator: 2 + _content: + permission: admin + role_name: admin + user: + avatar_url: https://avatars.githubusercontent.com/u/11816497?v=4 + events_url: https://api.github.com/users/csomh/events{/privacy} + followers_url: https://api.github.com/users/csomh/followers + following_url: https://api.github.com/users/csomh/following{/other_user} + gists_url: https://api.github.com/users/csomh/gists{/gist_id} + gravatar_id: '' + html_url: https://github.com/csomh + id: 11816497 + login: csomh + node_id: MDQ6VXNlcjExODE2NDk3 + organizations_url: https://api.github.com/users/csomh/orgs + permissions: + admin: true + maintain: true + pull: true + push: true + triage: true + received_events_url: https://api.github.com/users/csomh/received_events + repos_url: https://api.github.com/users/csomh/repos + role_name: admin + site_admin: false + starred_url: https://api.github.com/users/csomh/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/csomh/subscriptions + type: User + url: https://api.github.com/users/csomh + _next: null + elapsed: 0.399287 + encoding: utf-8 + headers: + Access-Control-Allow-Origin: '*' + Access-Control-Expose-Headers: ETag, Link, Location, Retry-After, X-GitHub-OTP, + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, + X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, + X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, + Sunset + Cache-Control: private, max-age=60, s-maxage=60 + Content-Encoding: gzip + Content-Security-Policy: default-src 'none' + Content-Type: application/json; charset=utf-8 + Date: Wed, 14 Sep 2022 13:24:51 GMT + ETag: W/"13c44339121220185be929cebef694ad12f4af9b084ca34c8cddaeaa620e124a" + Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin + Server: GitHub.com + Strict-Transport-Security: max-age=31536000; includeSubdomains; preload + Transfer-Encoding: chunked + Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, + X-Requested-With + X-Accepted-OAuth-Scopes: '' + X-Content-Type-Options: nosniff + X-Frame-Options: deny + X-GitHub-Media-Type: github.v3; format=json + X-GitHub-Request-Id: D2AA:A997:18ACB8:190A97:6321D623 + X-OAuth-Scopes: read:discussion, read:enterprise, read:gpg_key, read:org, + read:packages, read:project, read:public_key, read:repo_hook, read:ssh_signing_key, + read:user, repo + X-RateLimit-Limit: '5000' + X-RateLimit-Remaining: '4962' + X-RateLimit-Reset: '1663165394' + X-RateLimit-Resource: core + X-RateLimit-Used: '38' + X-XSS-Protection: '0' + github-authentication-token-expiration: 2022-10-14 13:21:17 UTC + raw: !!binary "" + reason: OK + status_code: 200 + - metadata: + latency: 0.17473912239074707 + module_call_list: + - unittest.case + - requre.record_and_replace + - tests.integration.github.test_generic_commands + - ogr.abstract + - ogr.services.github.project + - ogr.abstract + - ogr.services.github.project + - ogr.abstract + - ogr.services.github.project + - github.Repository + - github.Requester + - requests.sessions + - requre.objects + - requre.cassette + - requests.sessions + - send + output: + __store_indicator: 2 + _content: + permission: admin + role_name: admin + user: + avatar_url: https://avatars.githubusercontent.com/u/11816497?v=4 + events_url: https://api.github.com/users/csomh/events{/privacy} + followers_url: https://api.github.com/users/csomh/followers + following_url: https://api.github.com/users/csomh/following{/other_user} + gists_url: https://api.github.com/users/csomh/gists{/gist_id} + gravatar_id: '' + html_url: https://github.com/csomh + id: 11816497 + login: csomh + node_id: MDQ6VXNlcjExODE2NDk3 + organizations_url: https://api.github.com/users/csomh/orgs + permissions: + admin: true + maintain: true + pull: true + push: true + triage: true + received_events_url: https://api.github.com/users/csomh/received_events + repos_url: https://api.github.com/users/csomh/repos + role_name: admin + site_admin: false + starred_url: https://api.github.com/users/csomh/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/csomh/subscriptions + type: User + url: https://api.github.com/users/csomh + _next: null + elapsed: 0.174217 + encoding: utf-8 + headers: + Access-Control-Allow-Origin: '*' + Access-Control-Expose-Headers: ETag, Link, Location, Retry-After, X-GitHub-OTP, + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, + X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, + X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, + Sunset + Cache-Control: private, max-age=60, s-maxage=60 + Content-Encoding: gzip + Content-Security-Policy: default-src 'none' + Content-Type: application/json; charset=utf-8 + Date: Wed, 14 Sep 2022 13:24:55 GMT + ETag: W/"13c44339121220185be929cebef694ad12f4af9b084ca34c8cddaeaa620e124a" + Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin + Server: GitHub.com + Strict-Transport-Security: max-age=31536000; includeSubdomains; preload + Transfer-Encoding: chunked + Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, + X-Requested-With + X-Accepted-OAuth-Scopes: '' + X-Content-Type-Options: nosniff + X-Frame-Options: deny + X-GitHub-Media-Type: github.v3; format=json + X-GitHub-Request-Id: D2AA:A997:18BAA9:1918CE:6321D627 + X-OAuth-Scopes: read:discussion, read:enterprise, read:gpg_key, read:org, + read:packages, read:project, read:public_key, read:repo_hook, read:ssh_signing_key, + read:user, repo + X-RateLimit-Limit: '5000' + X-RateLimit-Remaining: '4948' + X-RateLimit-Reset: '1663165394' + X-RateLimit-Resource: core + X-RateLimit-Used: '52' + X-XSS-Protection: '0' + github-authentication-token-expiration: 2022-10-14 13:21:17 UTC + raw: !!binary "" + reason: OK + status_code: 200 + - metadata: + latency: 0.4002671241760254 + module_call_list: + - unittest.case + - requre.record_and_replace + - tests.integration.github.test_generic_commands + - ogr.abstract + - ogr.services.github.project + - ogr.abstract + - ogr.services.github.project + - ogr.abstract + - ogr.services.github.project + - github.Repository + - github.Requester + - requests.sessions + - requre.objects + - requre.cassette + - requests.sessions + - send + output: + __store_indicator: 2 + _content: + permission: admin + role_name: admin + user: + avatar_url: https://avatars.githubusercontent.com/u/11816497?v=4 + events_url: https://api.github.com/users/csomh/events{/privacy} + followers_url: https://api.github.com/users/csomh/followers + following_url: https://api.github.com/users/csomh/following{/other_user} + gists_url: https://api.github.com/users/csomh/gists{/gist_id} + gravatar_id: '' + html_url: https://github.com/csomh + id: 11816497 + login: csomh + node_id: MDQ6VXNlcjExODE2NDk3 + organizations_url: https://api.github.com/users/csomh/orgs + permissions: + admin: true + maintain: true + pull: true + push: true + triage: true + received_events_url: https://api.github.com/users/csomh/received_events + repos_url: https://api.github.com/users/csomh/repos + role_name: admin + site_admin: false + starred_url: https://api.github.com/users/csomh/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/csomh/subscriptions + type: User + url: https://api.github.com/users/csomh + _next: null + elapsed: 0.399768 + encoding: utf-8 + headers: + Access-Control-Allow-Origin: '*' + Access-Control-Expose-Headers: ETag, Link, Location, Retry-After, X-GitHub-OTP, + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, + X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, + X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, + Sunset + Cache-Control: private, max-age=60, s-maxage=60 + Content-Encoding: gzip + Content-Security-Policy: default-src 'none' + Content-Type: application/json; charset=utf-8 + Date: Wed, 14 Sep 2022 13:24:59 GMT + ETag: W/"13c44339121220185be929cebef694ad12f4af9b084ca34c8cddaeaa620e124a" + Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin + Server: GitHub.com + Strict-Transport-Security: max-age=31536000; includeSubdomains; preload + Transfer-Encoding: chunked + Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, + X-Requested-With + X-Accepted-OAuth-Scopes: '' + X-Content-Type-Options: nosniff + X-Frame-Options: deny + X-GitHub-Media-Type: github.v3; format=json + X-GitHub-Request-Id: D2AA:A997:18CAB9:192929:6321D62B + X-OAuth-Scopes: read:discussion, read:enterprise, read:gpg_key, read:org, + read:packages, read:project, read:public_key, read:repo_hook, read:ssh_signing_key, + read:user, repo + X-RateLimit-Limit: '5000' + X-RateLimit-Remaining: '4934' + X-RateLimit-Reset: '1663165394' + X-RateLimit-Resource: core + X-RateLimit-Used: '66' + X-XSS-Protection: '0' + github-authentication-token-expiration: 2022-10-14 13:21:17 UTC + raw: !!binary "" + reason: OK + status_code: 200 + https://api.github.com:443/repos/packit/ogr/collaborators/eliskasl/permission: + - metadata: + latency: 0.19646573066711426 + module_call_list: + - unittest.case + - requre.record_and_replace + - tests.integration.github.test_generic_commands + - ogr.abstract + - ogr.services.github.project + - ogr.abstract + - ogr.services.github.project + - ogr.abstract + - ogr.services.github.project + - github.Repository + - github.Requester + - requests.sessions + - requre.objects + - requre.cassette + - requests.sessions + - send + output: + __store_indicator: 2 + _content: + permission: admin + role_name: admin + user: + avatar_url: https://avatars.githubusercontent.com/u/1866652?v=4 + events_url: https://api.github.com/users/eliskasl/events{/privacy} + followers_url: https://api.github.com/users/eliskasl/followers + following_url: https://api.github.com/users/eliskasl/following{/other_user} + gists_url: https://api.github.com/users/eliskasl/gists{/gist_id} + gravatar_id: '' + html_url: https://github.com/eliskasl + id: 1866652 + login: eliskasl + node_id: MDQ6VXNlcjE4NjY2NTI= + organizations_url: https://api.github.com/users/eliskasl/orgs + permissions: + admin: true + maintain: true + pull: true + push: true + triage: true + received_events_url: https://api.github.com/users/eliskasl/received_events + repos_url: https://api.github.com/users/eliskasl/repos + role_name: admin + site_admin: false + starred_url: https://api.github.com/users/eliskasl/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/eliskasl/subscriptions + type: User + url: https://api.github.com/users/eliskasl + _next: null + elapsed: 0.195995 + encoding: utf-8 + headers: + Access-Control-Allow-Origin: '*' + Access-Control-Expose-Headers: ETag, Link, Location, Retry-After, X-GitHub-OTP, + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, + X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, + X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, + Sunset + Cache-Control: private, max-age=60, s-maxage=60 + Content-Encoding: gzip + Content-Security-Policy: default-src 'none' + Content-Type: application/json; charset=utf-8 + Date: Wed, 14 Sep 2022 13:24:50 GMT + ETag: W/"6b08740fa3c5577968f529c23d388597d5e049bd46dc03842efede8d54a90e1d" + Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin + Server: GitHub.com + Strict-Transport-Security: max-age=31536000; includeSubdomains; preload + Transfer-Encoding: chunked + Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, + X-Requested-With + X-Accepted-OAuth-Scopes: '' + X-Content-Type-Options: nosniff + X-Frame-Options: deny + X-GitHub-Media-Type: github.v3; format=json + X-GitHub-Request-Id: D2AA:A997:18A8FA:1906E6:6321D622 + X-OAuth-Scopes: read:discussion, read:enterprise, read:gpg_key, read:org, + read:packages, read:project, read:public_key, read:repo_hook, read:ssh_signing_key, + read:user, repo + X-RateLimit-Limit: '5000' + X-RateLimit-Remaining: '4965' + X-RateLimit-Reset: '1663165394' + X-RateLimit-Resource: core + X-RateLimit-Used: '35' + X-XSS-Protection: '0' + github-authentication-token-expiration: 2022-10-14 13:21:17 UTC + raw: !!binary "" + reason: OK + status_code: 200 + - metadata: + latency: 0.19337844848632812 + module_call_list: + - unittest.case + - requre.record_and_replace + - tests.integration.github.test_generic_commands + - ogr.abstract + - ogr.services.github.project + - ogr.abstract + - ogr.services.github.project + - ogr.abstract + - ogr.services.github.project + - github.Repository + - github.Requester + - requests.sessions + - requre.objects + - requre.cassette + - requests.sessions + - send + output: + __store_indicator: 2 + _content: + permission: admin + role_name: admin + user: + avatar_url: https://avatars.githubusercontent.com/u/1866652?v=4 + events_url: https://api.github.com/users/eliskasl/events{/privacy} + followers_url: https://api.github.com/users/eliskasl/followers + following_url: https://api.github.com/users/eliskasl/following{/other_user} + gists_url: https://api.github.com/users/eliskasl/gists{/gist_id} + gravatar_id: '' + html_url: https://github.com/eliskasl + id: 1866652 + login: eliskasl + node_id: MDQ6VXNlcjE4NjY2NTI= + organizations_url: https://api.github.com/users/eliskasl/orgs + permissions: + admin: true + maintain: true + pull: true + push: true + triage: true + received_events_url: https://api.github.com/users/eliskasl/received_events + repos_url: https://api.github.com/users/eliskasl/repos + role_name: admin + site_admin: false + starred_url: https://api.github.com/users/eliskasl/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/eliskasl/subscriptions + type: User + url: https://api.github.com/users/eliskasl + _next: null + elapsed: 0.192907 + encoding: utf-8 + headers: + Access-Control-Allow-Origin: '*' + Access-Control-Expose-Headers: ETag, Link, Location, Retry-After, X-GitHub-OTP, + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, + X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, + X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, + Sunset + Cache-Control: private, max-age=60, s-maxage=60 + Content-Encoding: gzip + Content-Security-Policy: default-src 'none' + Content-Type: application/json; charset=utf-8 + Date: Wed, 14 Sep 2022 13:24:54 GMT + ETag: W/"6b08740fa3c5577968f529c23d388597d5e049bd46dc03842efede8d54a90e1d" + Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin + Server: GitHub.com + Strict-Transport-Security: max-age=31536000; includeSubdomains; preload + Transfer-Encoding: chunked + Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, + X-Requested-With + X-Accepted-OAuth-Scopes: '' + X-Content-Type-Options: nosniff + X-Frame-Options: deny + X-GitHub-Media-Type: github.v3; format=json + X-GitHub-Request-Id: D2AA:A997:18B882:1916A6:6321D626 + X-OAuth-Scopes: read:discussion, read:enterprise, read:gpg_key, read:org, + read:packages, read:project, read:public_key, read:repo_hook, read:ssh_signing_key, + read:user, repo + X-RateLimit-Limit: '5000' + X-RateLimit-Remaining: '4951' + X-RateLimit-Reset: '1663165394' + X-RateLimit-Resource: core + X-RateLimit-Used: '49' + X-XSS-Protection: '0' + github-authentication-token-expiration: 2022-10-14 13:21:17 UTC + raw: !!binary "" + reason: OK + status_code: 200 + - metadata: + latency: 0.40253186225891113 + module_call_list: + - unittest.case + - requre.record_and_replace + - tests.integration.github.test_generic_commands + - ogr.abstract + - ogr.services.github.project + - ogr.abstract + - ogr.services.github.project + - ogr.abstract + - ogr.services.github.project + - github.Repository + - github.Requester + - requests.sessions + - requre.objects + - requre.cassette + - requests.sessions + - send + output: + __store_indicator: 2 + _content: + permission: admin + role_name: admin + user: + avatar_url: https://avatars.githubusercontent.com/u/1866652?v=4 + events_url: https://api.github.com/users/eliskasl/events{/privacy} + followers_url: https://api.github.com/users/eliskasl/followers + following_url: https://api.github.com/users/eliskasl/following{/other_user} + gists_url: https://api.github.com/users/eliskasl/gists{/gist_id} + gravatar_id: '' + html_url: https://github.com/eliskasl + id: 1866652 + login: eliskasl + node_id: MDQ6VXNlcjE4NjY2NTI= + organizations_url: https://api.github.com/users/eliskasl/orgs + permissions: + admin: true + maintain: true + pull: true + push: true + triage: true + received_events_url: https://api.github.com/users/eliskasl/received_events + repos_url: https://api.github.com/users/eliskasl/repos + role_name: admin + site_admin: false + starred_url: https://api.github.com/users/eliskasl/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/eliskasl/subscriptions + type: User + url: https://api.github.com/users/eliskasl + _next: null + elapsed: 0.402083 + encoding: utf-8 + headers: + Access-Control-Allow-Origin: '*' + Access-Control-Expose-Headers: ETag, Link, Location, Retry-After, X-GitHub-OTP, + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, + X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, + X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, + Sunset + Cache-Control: private, max-age=60, s-maxage=60 + Content-Encoding: gzip + Content-Security-Policy: default-src 'none' + Content-Type: application/json; charset=utf-8 + Date: Wed, 14 Sep 2022 13:24:58 GMT + ETag: W/"6b08740fa3c5577968f529c23d388597d5e049bd46dc03842efede8d54a90e1d" + Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin + Server: GitHub.com + Strict-Transport-Security: max-age=31536000; includeSubdomains; preload + Transfer-Encoding: chunked + Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, + X-Requested-With + X-Accepted-OAuth-Scopes: '' + X-Content-Type-Options: nosniff + X-Frame-Options: deny + X-GitHub-Media-Type: github.v3; format=json + X-GitHub-Request-Id: D2AA:A997:18C6C0:192529:6321D62A + X-OAuth-Scopes: read:discussion, read:enterprise, read:gpg_key, read:org, + read:packages, read:project, read:public_key, read:repo_hook, read:ssh_signing_key, + read:user, repo + X-RateLimit-Limit: '5000' + X-RateLimit-Remaining: '4937' + X-RateLimit-Reset: '1663165394' + X-RateLimit-Resource: core + X-RateLimit-Used: '63' + X-XSS-Protection: '0' + github-authentication-token-expiration: 2022-10-14 13:21:17 UTC + raw: !!binary "" + reason: OK + status_code: 200 + https://api.github.com:443/repos/packit/ogr/collaborators/jpopelka/permission: + - metadata: + latency: 0.3969871997833252 + module_call_list: + - unittest.case + - requre.record_and_replace + - tests.integration.github.test_generic_commands + - ogr.abstract + - ogr.services.github.project + - ogr.abstract + - ogr.services.github.project + - ogr.abstract + - ogr.services.github.project + - github.Repository + - github.Requester + - requests.sessions + - requre.objects + - requre.cassette + - requests.sessions + - send + output: + __store_indicator: 2 + _content: + permission: admin + role_name: admin + user: + avatar_url: https://avatars.githubusercontent.com/u/288686?v=4 + events_url: https://api.github.com/users/jpopelka/events{/privacy} + followers_url: https://api.github.com/users/jpopelka/followers + following_url: https://api.github.com/users/jpopelka/following{/other_user} + gists_url: https://api.github.com/users/jpopelka/gists{/gist_id} + gravatar_id: '' + html_url: https://github.com/jpopelka + id: 288686 + login: jpopelka + node_id: MDQ6VXNlcjI4ODY4Ng== + organizations_url: https://api.github.com/users/jpopelka/orgs + permissions: + admin: true + maintain: true + pull: true + push: true + triage: true + received_events_url: https://api.github.com/users/jpopelka/received_events + repos_url: https://api.github.com/users/jpopelka/repos + role_name: admin + site_admin: false + starred_url: https://api.github.com/users/jpopelka/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/jpopelka/subscriptions + type: User + url: https://api.github.com/users/jpopelka + _next: null + elapsed: 0.396501 + encoding: utf-8 + headers: + Access-Control-Allow-Origin: '*' + Access-Control-Expose-Headers: ETag, Link, Location, Retry-After, X-GitHub-OTP, + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, + X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, + X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, + Sunset + Cache-Control: private, max-age=60, s-maxage=60 + Content-Encoding: gzip + Content-Security-Policy: default-src 'none' + Content-Type: application/json; charset=utf-8 + Date: Wed, 14 Sep 2022 13:24:49 GMT + ETag: W/"8a169a4797595a610e359f55eda43ae02f6dd557b60e129e35dc209a31120662" + Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin + Server: GitHub.com + Strict-Transport-Security: max-age=31536000; includeSubdomains; preload + Transfer-Encoding: chunked + Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, + X-Requested-With + X-Accepted-OAuth-Scopes: '' + X-Content-Type-Options: nosniff + X-Frame-Options: deny + X-GitHub-Media-Type: github.v3; format=json + X-GitHub-Request-Id: D2AA:A997:18A681:190451:6321D621 + X-OAuth-Scopes: read:discussion, read:enterprise, read:gpg_key, read:org, + read:packages, read:project, read:public_key, read:repo_hook, read:ssh_signing_key, + read:user, repo + X-RateLimit-Limit: '5000' + X-RateLimit-Remaining: '4967' + X-RateLimit-Reset: '1663165394' + X-RateLimit-Resource: core + X-RateLimit-Used: '33' + X-XSS-Protection: '0' + github-authentication-token-expiration: 2022-10-14 13:21:17 UTC + raw: !!binary "" + reason: OK + status_code: 200 + - metadata: + latency: 0.19972681999206543 + module_call_list: + - unittest.case + - requre.record_and_replace + - tests.integration.github.test_generic_commands + - ogr.abstract + - ogr.services.github.project + - ogr.abstract + - ogr.services.github.project + - ogr.abstract + - ogr.services.github.project + - github.Repository + - github.Requester + - requests.sessions + - requre.objects + - requre.cassette + - requests.sessions + - send + output: + __store_indicator: 2 + _content: + permission: admin + role_name: admin + user: + avatar_url: https://avatars.githubusercontent.com/u/288686?v=4 + events_url: https://api.github.com/users/jpopelka/events{/privacy} + followers_url: https://api.github.com/users/jpopelka/followers + following_url: https://api.github.com/users/jpopelka/following{/other_user} + gists_url: https://api.github.com/users/jpopelka/gists{/gist_id} + gravatar_id: '' + html_url: https://github.com/jpopelka + id: 288686 + login: jpopelka + node_id: MDQ6VXNlcjI4ODY4Ng== + organizations_url: https://api.github.com/users/jpopelka/orgs + permissions: + admin: true + maintain: true + pull: true + push: true + triage: true + received_events_url: https://api.github.com/users/jpopelka/received_events + repos_url: https://api.github.com/users/jpopelka/repos + role_name: admin + site_admin: false + starred_url: https://api.github.com/users/jpopelka/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/jpopelka/subscriptions + type: User + url: https://api.github.com/users/jpopelka + _next: null + elapsed: 0.199222 + encoding: utf-8 + headers: + Access-Control-Allow-Origin: '*' + Access-Control-Expose-Headers: ETag, Link, Location, Retry-After, X-GitHub-OTP, + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, + X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, + X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, + Sunset + Cache-Control: private, max-age=60, s-maxage=60 + Content-Encoding: gzip + Content-Security-Policy: default-src 'none' + Content-Type: application/json; charset=utf-8 + Date: Wed, 14 Sep 2022 13:24:53 GMT + ETag: W/"8a169a4797595a610e359f55eda43ae02f6dd557b60e129e35dc209a31120662" + Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin + Server: GitHub.com + Strict-Transport-Security: max-age=31536000; includeSubdomains; preload + Transfer-Encoding: chunked + Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, + X-Requested-With + X-Accepted-OAuth-Scopes: '' + X-Content-Type-Options: nosniff + X-Frame-Options: deny + X-GitHub-Media-Type: github.v3; format=json + X-GitHub-Request-Id: D2AA:A997:18B62D:19145C:6321D625 + X-OAuth-Scopes: read:discussion, read:enterprise, read:gpg_key, read:org, + read:packages, read:project, read:public_key, read:repo_hook, read:ssh_signing_key, + read:user, repo + X-RateLimit-Limit: '5000' + X-RateLimit-Remaining: '4953' + X-RateLimit-Reset: '1663165394' + X-RateLimit-Resource: core + X-RateLimit-Used: '47' + X-XSS-Protection: '0' + github-authentication-token-expiration: 2022-10-14 13:21:17 UTC + raw: !!binary "" + reason: OK + status_code: 200 + - metadata: + latency: 0.3984067440032959 + module_call_list: + - unittest.case + - requre.record_and_replace + - tests.integration.github.test_generic_commands + - ogr.abstract + - ogr.services.github.project + - ogr.abstract + - ogr.services.github.project + - ogr.abstract + - ogr.services.github.project + - github.Repository + - github.Requester + - requests.sessions + - requre.objects + - requre.cassette + - requests.sessions + - send + output: + __store_indicator: 2 + _content: + permission: admin + role_name: admin + user: + avatar_url: https://avatars.githubusercontent.com/u/288686?v=4 + events_url: https://api.github.com/users/jpopelka/events{/privacy} + followers_url: https://api.github.com/users/jpopelka/followers + following_url: https://api.github.com/users/jpopelka/following{/other_user} + gists_url: https://api.github.com/users/jpopelka/gists{/gist_id} + gravatar_id: '' + html_url: https://github.com/jpopelka + id: 288686 + login: jpopelka + node_id: MDQ6VXNlcjI4ODY4Ng== + organizations_url: https://api.github.com/users/jpopelka/orgs + permissions: + admin: true + maintain: true + pull: true + push: true + triage: true + received_events_url: https://api.github.com/users/jpopelka/received_events + repos_url: https://api.github.com/users/jpopelka/repos + role_name: admin + site_admin: false + starred_url: https://api.github.com/users/jpopelka/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/jpopelka/subscriptions + type: User + url: https://api.github.com/users/jpopelka + _next: null + elapsed: 0.397892 + encoding: utf-8 + headers: + Access-Control-Allow-Origin: '*' + Access-Control-Expose-Headers: ETag, Link, Location, Retry-After, X-GitHub-OTP, + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, + X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, + X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, + Sunset + Cache-Control: private, max-age=60, s-maxage=60 + Content-Encoding: gzip + Content-Security-Policy: default-src 'none' + Content-Type: application/json; charset=utf-8 + Date: Wed, 14 Sep 2022 13:24:57 GMT + ETag: W/"8a169a4797595a610e359f55eda43ae02f6dd557b60e129e35dc209a31120662" + Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin + Server: GitHub.com + Strict-Transport-Security: max-age=31536000; includeSubdomains; preload + Transfer-Encoding: chunked + Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, + X-Requested-With + X-Accepted-OAuth-Scopes: '' + X-Content-Type-Options: nosniff + X-Frame-Options: deny + X-GitHub-Media-Type: github.v3; format=json + X-GitHub-Request-Id: D2AA:A997:18C454:1922A2:6321D629 + X-OAuth-Scopes: read:discussion, read:enterprise, read:gpg_key, read:org, + read:packages, read:project, read:public_key, read:repo_hook, read:ssh_signing_key, + read:user, repo + X-RateLimit-Limit: '5000' + X-RateLimit-Remaining: '4939' + X-RateLimit-Reset: '1663165394' + X-RateLimit-Resource: core + X-RateLimit-Used: '61' + X-XSS-Protection: '0' + github-authentication-token-expiration: 2022-10-14 13:21:17 UTC + raw: !!binary "" + reason: OK + status_code: 200 + https://api.github.com:443/repos/packit/ogr/collaborators/lachmanfrantisek/permission: + - metadata: + latency: 0.18857622146606445 + module_call_list: + - unittest.case + - requre.record_and_replace + - tests.integration.github.test_generic_commands + - ogr.abstract + - ogr.services.github.project + - ogr.abstract + - ogr.services.github.project + - ogr.abstract + - ogr.services.github.project + - github.Repository + - github.Requester + - requests.sessions + - requre.objects + - requre.cassette + - requests.sessions + - send + output: + __store_indicator: 2 + _content: + permission: admin + role_name: admin + user: + avatar_url: https://avatars.githubusercontent.com/u/20214043?v=4 + events_url: https://api.github.com/users/lachmanfrantisek/events{/privacy} + followers_url: https://api.github.com/users/lachmanfrantisek/followers + following_url: https://api.github.com/users/lachmanfrantisek/following{/other_user} + gists_url: https://api.github.com/users/lachmanfrantisek/gists{/gist_id} + gravatar_id: '' + html_url: https://github.com/lachmanfrantisek + id: 20214043 + login: lachmanfrantisek + node_id: MDQ6VXNlcjIwMjE0MDQz + organizations_url: https://api.github.com/users/lachmanfrantisek/orgs + permissions: + admin: true + maintain: true + pull: true + push: true + triage: true + received_events_url: https://api.github.com/users/lachmanfrantisek/received_events + repos_url: https://api.github.com/users/lachmanfrantisek/repos + role_name: admin + site_admin: false + starred_url: https://api.github.com/users/lachmanfrantisek/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/lachmanfrantisek/subscriptions + type: User + url: https://api.github.com/users/lachmanfrantisek + _next: null + elapsed: 0.188077 + encoding: utf-8 + headers: + Access-Control-Allow-Origin: '*' + Access-Control-Expose-Headers: ETag, Link, Location, Retry-After, X-GitHub-OTP, + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, + X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, + X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, + Sunset + Cache-Control: private, max-age=60, s-maxage=60 + Content-Encoding: gzip + Content-Security-Policy: default-src 'none' + Content-Type: application/json; charset=utf-8 + Date: Wed, 14 Sep 2022 13:24:52 GMT + ETag: W/"83d40a7ecb06216fe9e3015ad84f9853b5d6f96e5a5bfc004ce46ebdf1e4990e" + Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin + Server: GitHub.com + Strict-Transport-Security: max-age=31536000; includeSubdomains; preload + Transfer-Encoding: chunked + Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, + X-Requested-With + X-Accepted-OAuth-Scopes: '' + X-Content-Type-Options: nosniff + X-Frame-Options: deny + X-GitHub-Media-Type: github.v3; format=json + X-GitHub-Request-Id: D2AA:A997:18AEF5:190CEF:6321D623 + X-OAuth-Scopes: read:discussion, read:enterprise, read:gpg_key, read:org, + read:packages, read:project, read:public_key, read:repo_hook, read:ssh_signing_key, + read:user, repo + X-RateLimit-Limit: '5000' + X-RateLimit-Remaining: '4960' + X-RateLimit-Reset: '1663165394' + X-RateLimit-Resource: core + X-RateLimit-Used: '40' + X-XSS-Protection: '0' + github-authentication-token-expiration: 2022-10-14 13:21:17 UTC + raw: !!binary "" + reason: OK + status_code: 200 + - metadata: + latency: 0.3994901180267334 + module_call_list: + - unittest.case + - requre.record_and_replace + - tests.integration.github.test_generic_commands + - ogr.abstract + - ogr.services.github.project + - ogr.abstract + - ogr.services.github.project + - ogr.abstract + - ogr.services.github.project + - github.Repository + - github.Requester + - requests.sessions + - requre.objects + - requre.cassette + - requests.sessions + - send + output: + __store_indicator: 2 + _content: + permission: admin + role_name: admin + user: + avatar_url: https://avatars.githubusercontent.com/u/20214043?v=4 + events_url: https://api.github.com/users/lachmanfrantisek/events{/privacy} + followers_url: https://api.github.com/users/lachmanfrantisek/followers + following_url: https://api.github.com/users/lachmanfrantisek/following{/other_user} + gists_url: https://api.github.com/users/lachmanfrantisek/gists{/gist_id} + gravatar_id: '' + html_url: https://github.com/lachmanfrantisek + id: 20214043 + login: lachmanfrantisek + node_id: MDQ6VXNlcjIwMjE0MDQz + organizations_url: https://api.github.com/users/lachmanfrantisek/orgs + permissions: + admin: true + maintain: true + pull: true + push: true + triage: true + received_events_url: https://api.github.com/users/lachmanfrantisek/received_events + repos_url: https://api.github.com/users/lachmanfrantisek/repos + role_name: admin + site_admin: false + starred_url: https://api.github.com/users/lachmanfrantisek/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/lachmanfrantisek/subscriptions + type: User + url: https://api.github.com/users/lachmanfrantisek + _next: null + elapsed: 0.399054 + encoding: utf-8 + headers: + Access-Control-Allow-Origin: '*' + Access-Control-Expose-Headers: ETag, Link, Location, Retry-After, X-GitHub-OTP, + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, + X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, + X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, + Sunset + Cache-Control: private, max-age=60, s-maxage=60 + Content-Encoding: gzip + Content-Security-Policy: default-src 'none' + Content-Type: application/json; charset=utf-8 + Date: Wed, 14 Sep 2022 13:24:55 GMT + ETag: W/"83d40a7ecb06216fe9e3015ad84f9853b5d6f96e5a5bfc004ce46ebdf1e4990e" + Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin + Server: GitHub.com + Strict-Transport-Security: max-age=31536000; includeSubdomains; preload + Transfer-Encoding: chunked + Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, + X-Requested-With + X-Accepted-OAuth-Scopes: '' + X-Content-Type-Options: nosniff + X-Frame-Options: deny + X-GitHub-Media-Type: github.v3; format=json + X-GitHub-Request-Id: D2AA:A997:18BC3F:191A79:6321D627 + X-OAuth-Scopes: read:discussion, read:enterprise, read:gpg_key, read:org, + read:packages, read:project, read:public_key, read:repo_hook, read:ssh_signing_key, + read:user, repo + X-RateLimit-Limit: '5000' + X-RateLimit-Remaining: '4946' + X-RateLimit-Reset: '1663165394' + X-RateLimit-Resource: core + X-RateLimit-Used: '54' + X-XSS-Protection: '0' + github-authentication-token-expiration: 2022-10-14 13:21:17 UTC + raw: !!binary "" + reason: OK + status_code: 200 + - metadata: + latency: 0.19030523300170898 + module_call_list: + - unittest.case + - requre.record_and_replace + - tests.integration.github.test_generic_commands + - ogr.abstract + - ogr.services.github.project + - ogr.abstract + - ogr.services.github.project + - ogr.abstract + - ogr.services.github.project + - github.Repository + - github.Requester + - requests.sessions + - requre.objects + - requre.cassette + - requests.sessions + - send + output: + __store_indicator: 2 + _content: + permission: admin + role_name: admin + user: + avatar_url: https://avatars.githubusercontent.com/u/20214043?v=4 + events_url: https://api.github.com/users/lachmanfrantisek/events{/privacy} + followers_url: https://api.github.com/users/lachmanfrantisek/followers + following_url: https://api.github.com/users/lachmanfrantisek/following{/other_user} + gists_url: https://api.github.com/users/lachmanfrantisek/gists{/gist_id} + gravatar_id: '' + html_url: https://github.com/lachmanfrantisek + id: 20214043 + login: lachmanfrantisek + node_id: MDQ6VXNlcjIwMjE0MDQz + organizations_url: https://api.github.com/users/lachmanfrantisek/orgs + permissions: + admin: true + maintain: true + pull: true + push: true + triage: true + received_events_url: https://api.github.com/users/lachmanfrantisek/received_events + repos_url: https://api.github.com/users/lachmanfrantisek/repos + role_name: admin + site_admin: false + starred_url: https://api.github.com/users/lachmanfrantisek/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/lachmanfrantisek/subscriptions + type: User + url: https://api.github.com/users/lachmanfrantisek + _next: null + elapsed: 0.189808 + encoding: utf-8 + headers: + Access-Control-Allow-Origin: '*' + Access-Control-Expose-Headers: ETag, Link, Location, Retry-After, X-GitHub-OTP, + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, + X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, + X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, + Sunset + Cache-Control: private, max-age=60, s-maxage=60 + Content-Encoding: gzip + Content-Security-Policy: default-src 'none' + Content-Type: application/json; charset=utf-8 + Date: Wed, 14 Sep 2022 13:25:00 GMT + ETag: W/"83d40a7ecb06216fe9e3015ad84f9853b5d6f96e5a5bfc004ce46ebdf1e4990e" + Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin + Server: GitHub.com + Strict-Transport-Security: max-age=31536000; includeSubdomains; preload + Transfer-Encoding: chunked + Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, + X-Requested-With + X-Accepted-OAuth-Scopes: '' + X-Content-Type-Options: nosniff + X-Frame-Options: deny + X-GitHub-Media-Type: github.v3; format=json + X-GitHub-Request-Id: D2AA:A997:18CDFA:192C6D:6321D62C + X-OAuth-Scopes: read:discussion, read:enterprise, read:gpg_key, read:org, + read:packages, read:project, read:public_key, read:repo_hook, read:ssh_signing_key, + read:user, repo + X-RateLimit-Limit: '5000' + X-RateLimit-Remaining: '4932' + X-RateLimit-Reset: '1663165394' + X-RateLimit-Resource: core + X-RateLimit-Used: '68' + X-XSS-Protection: '0' + github-authentication-token-expiration: 2022-10-14 13:21:17 UTC + raw: !!binary "" + reason: OK + status_code: 200 + https://api.github.com:443/repos/packit/ogr/collaborators/lbarcziova/permission: + - metadata: + latency: 0.3950386047363281 + module_call_list: + - unittest.case + - requre.record_and_replace + - tests.integration.github.test_generic_commands + - ogr.abstract + - ogr.services.github.project + - ogr.abstract + - ogr.services.github.project + - ogr.abstract + - ogr.services.github.project + - github.Repository + - github.Requester + - requests.sessions + - requre.objects + - requre.cassette + - requests.sessions + - send + output: + __store_indicator: 2 + _content: + permission: admin + role_name: admin + user: + avatar_url: https://avatars.githubusercontent.com/u/49026743?v=4 + events_url: https://api.github.com/users/lbarcziova/events{/privacy} + followers_url: https://api.github.com/users/lbarcziova/followers + following_url: https://api.github.com/users/lbarcziova/following{/other_user} + gists_url: https://api.github.com/users/lbarcziova/gists{/gist_id} + gravatar_id: '' + html_url: https://github.com/lbarcziova + id: 49026743 + login: lbarcziova + node_id: MDQ6VXNlcjQ5MDI2NzQz + organizations_url: https://api.github.com/users/lbarcziova/orgs + permissions: + admin: true + maintain: true + pull: true + push: true + triage: true + received_events_url: https://api.github.com/users/lbarcziova/received_events + repos_url: https://api.github.com/users/lbarcziova/repos + role_name: admin + site_admin: false + starred_url: https://api.github.com/users/lbarcziova/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/lbarcziova/subscriptions + type: User + url: https://api.github.com/users/lbarcziova + _next: null + elapsed: 0.39458 + encoding: utf-8 + headers: + Access-Control-Allow-Origin: '*' + Access-Control-Expose-Headers: ETag, Link, Location, Retry-After, X-GitHub-OTP, + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, + X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, + X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, + Sunset + Cache-Control: private, max-age=60, s-maxage=60 + Content-Encoding: gzip + Content-Security-Policy: default-src 'none' + Content-Type: application/json; charset=utf-8 + Date: Wed, 14 Sep 2022 13:24:52 GMT + ETag: W/"e7d5281663d7406e2f6e060f0ac451b4122e0ce1b0c99548bfc24af51c3aca7a" + Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin + Server: GitHub.com + Strict-Transport-Security: max-age=31536000; includeSubdomains; preload + Transfer-Encoding: chunked + Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, + X-Requested-With + X-Accepted-OAuth-Scopes: '' + X-Content-Type-Options: nosniff + X-Frame-Options: deny + X-GitHub-Media-Type: github.v3; format=json + X-GitHub-Request-Id: D2AA:A997:18B205:19100A:6321D624 + X-OAuth-Scopes: read:discussion, read:enterprise, read:gpg_key, read:org, + read:packages, read:project, read:public_key, read:repo_hook, read:ssh_signing_key, + read:user, repo + X-RateLimit-Limit: '5000' + X-RateLimit-Remaining: '4957' + X-RateLimit-Reset: '1663165394' + X-RateLimit-Resource: core + X-RateLimit-Used: '43' + X-XSS-Protection: '0' + github-authentication-token-expiration: 2022-10-14 13:21:17 UTC + raw: !!binary "" + reason: OK + status_code: 200 + - metadata: + latency: 0.19476008415222168 + module_call_list: + - unittest.case + - requre.record_and_replace + - tests.integration.github.test_generic_commands + - ogr.abstract + - ogr.services.github.project + - ogr.abstract + - ogr.services.github.project + - ogr.abstract + - ogr.services.github.project + - github.Repository + - github.Requester + - requests.sessions + - requre.objects + - requre.cassette + - requests.sessions + - send + output: + __store_indicator: 2 + _content: + permission: admin + role_name: admin + user: + avatar_url: https://avatars.githubusercontent.com/u/49026743?v=4 + events_url: https://api.github.com/users/lbarcziova/events{/privacy} + followers_url: https://api.github.com/users/lbarcziova/followers + following_url: https://api.github.com/users/lbarcziova/following{/other_user} + gists_url: https://api.github.com/users/lbarcziova/gists{/gist_id} + gravatar_id: '' + html_url: https://github.com/lbarcziova + id: 49026743 + login: lbarcziova + node_id: MDQ6VXNlcjQ5MDI2NzQz + organizations_url: https://api.github.com/users/lbarcziova/orgs + permissions: + admin: true + maintain: true + pull: true + push: true + triage: true + received_events_url: https://api.github.com/users/lbarcziova/received_events + repos_url: https://api.github.com/users/lbarcziova/repos + role_name: admin + site_admin: false + starred_url: https://api.github.com/users/lbarcziova/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/lbarcziova/subscriptions + type: User + url: https://api.github.com/users/lbarcziova + _next: null + elapsed: 0.194308 + encoding: utf-8 + headers: + Access-Control-Allow-Origin: '*' + Access-Control-Expose-Headers: ETag, Link, Location, Retry-After, X-GitHub-OTP, + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, + X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, + X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, + Sunset + Cache-Control: private, max-age=60, s-maxage=60 + Content-Encoding: gzip + Content-Security-Policy: default-src 'none' + Content-Type: application/json; charset=utf-8 + Date: Wed, 14 Sep 2022 13:24:56 GMT + ETag: W/"e7d5281663d7406e2f6e060f0ac451b4122e0ce1b0c99548bfc24af51c3aca7a" + Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin + Server: GitHub.com + Strict-Transport-Security: max-age=31536000; includeSubdomains; preload + Transfer-Encoding: chunked + Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, + X-Requested-With + X-Accepted-OAuth-Scopes: '' + X-Content-Type-Options: nosniff + X-Frame-Options: deny + X-GitHub-Media-Type: github.v3; format=json + X-GitHub-Request-Id: D2AA:A997:18BF9E:191DC5:6321D628 + X-OAuth-Scopes: read:discussion, read:enterprise, read:gpg_key, read:org, + read:packages, read:project, read:public_key, read:repo_hook, read:ssh_signing_key, + read:user, repo + X-RateLimit-Limit: '5000' + X-RateLimit-Remaining: '4943' + X-RateLimit-Reset: '1663165394' + X-RateLimit-Resource: core + X-RateLimit-Used: '57' + X-XSS-Protection: '0' + github-authentication-token-expiration: 2022-10-14 13:21:17 UTC + raw: !!binary "" + reason: OK + status_code: 200 + - metadata: + latency: 0.302262544631958 + module_call_list: + - unittest.case + - requre.record_and_replace + - tests.integration.github.test_generic_commands + - ogr.abstract + - ogr.services.github.project + - ogr.abstract + - ogr.services.github.project + - ogr.abstract + - ogr.services.github.project + - github.Repository + - github.Requester + - requests.sessions + - requre.objects + - requre.cassette + - requests.sessions + - send + output: + __store_indicator: 2 + _content: + permission: admin + role_name: admin + user: + avatar_url: https://avatars.githubusercontent.com/u/49026743?v=4 + events_url: https://api.github.com/users/lbarcziova/events{/privacy} + followers_url: https://api.github.com/users/lbarcziova/followers + following_url: https://api.github.com/users/lbarcziova/following{/other_user} + gists_url: https://api.github.com/users/lbarcziova/gists{/gist_id} + gravatar_id: '' + html_url: https://github.com/lbarcziova + id: 49026743 + login: lbarcziova + node_id: MDQ6VXNlcjQ5MDI2NzQz + organizations_url: https://api.github.com/users/lbarcziova/orgs + permissions: + admin: true + maintain: true + pull: true + push: true + triage: true + received_events_url: https://api.github.com/users/lbarcziova/received_events + repos_url: https://api.github.com/users/lbarcziova/repos + role_name: admin + site_admin: false + starred_url: https://api.github.com/users/lbarcziova/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/lbarcziova/subscriptions + type: User + url: https://api.github.com/users/lbarcziova + _next: null + elapsed: 0.301727 + encoding: utf-8 + headers: + Access-Control-Allow-Origin: '*' + Access-Control-Expose-Headers: ETag, Link, Location, Retry-After, X-GitHub-OTP, + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, + X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, + X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, + Sunset + Cache-Control: private, max-age=60, s-maxage=60 + Content-Encoding: gzip + Content-Security-Policy: default-src 'none' + Content-Type: application/json; charset=utf-8 + Date: Wed, 14 Sep 2022 13:25:01 GMT + ETag: W/"e7d5281663d7406e2f6e060f0ac451b4122e0ce1b0c99548bfc24af51c3aca7a" + Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin + Server: GitHub.com + Strict-Transport-Security: max-age=31536000; includeSubdomains; preload + Transfer-Encoding: chunked + Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, + X-Requested-With + X-Accepted-OAuth-Scopes: '' + X-Content-Type-Options: nosniff + X-Frame-Options: deny + X-GitHub-Media-Type: github.v3; format=json + X-GitHub-Request-Id: D2AA:A997:18D2B8:1931E4:6321D62D + X-OAuth-Scopes: read:discussion, read:enterprise, read:gpg_key, read:org, + read:packages, read:project, read:public_key, read:repo_hook, read:ssh_signing_key, + read:user, repo + X-RateLimit-Limit: '5000' + X-RateLimit-Remaining: '4929' + X-RateLimit-Reset: '1663165394' + X-RateLimit-Resource: core + X-RateLimit-Used: '71' + X-XSS-Protection: '0' + github-authentication-token-expiration: 2022-10-14 13:21:17 UTC + raw: !!binary "" + reason: OK + status_code: 200 + https://api.github.com:443/repos/packit/ogr/collaborators/majamassarini/permission: + - metadata: + latency: 0.4010050296783447 + module_call_list: + - unittest.case + - requre.record_and_replace + - tests.integration.github.test_generic_commands + - ogr.abstract + - ogr.services.github.project + - ogr.abstract + - ogr.services.github.project + - ogr.abstract + - ogr.services.github.project + - github.Repository + - github.Requester + - requests.sessions + - requre.objects + - requre.cassette + - requests.sessions + - send + output: + __store_indicator: 2 + _content: + permission: admin + role_name: admin + user: + avatar_url: https://avatars.githubusercontent.com/u/2678400?v=4 + events_url: https://api.github.com/users/majamassarini/events{/privacy} + followers_url: https://api.github.com/users/majamassarini/followers + following_url: https://api.github.com/users/majamassarini/following{/other_user} + gists_url: https://api.github.com/users/majamassarini/gists{/gist_id} + gravatar_id: '' + html_url: https://github.com/majamassarini + id: 2678400 + login: majamassarini + node_id: MDQ6VXNlcjI2Nzg0MDA= + organizations_url: https://api.github.com/users/majamassarini/orgs + permissions: + admin: true + maintain: true + pull: true + push: true + triage: true + received_events_url: https://api.github.com/users/majamassarini/received_events + repos_url: https://api.github.com/users/majamassarini/repos + role_name: admin + site_admin: false + starred_url: https://api.github.com/users/majamassarini/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/majamassarini/subscriptions + type: User + url: https://api.github.com/users/majamassarini + _next: null + elapsed: 0.400486 + encoding: utf-8 + headers: + Access-Control-Allow-Origin: '*' + Access-Control-Expose-Headers: ETag, Link, Location, Retry-After, X-GitHub-OTP, + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, + X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, + X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, + Sunset + Cache-Control: private, max-age=60, s-maxage=60 + Content-Encoding: gzip + Content-Security-Policy: default-src 'none' + Content-Type: application/json; charset=utf-8 + Date: Wed, 14 Sep 2022 13:24:50 GMT + ETag: W/"4e35432a6cac305abcf2aed8030b54a66412e175892f5b18a8dd7293607e6db6" + Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin + Server: GitHub.com + Strict-Transport-Security: max-age=31536000; includeSubdomains; preload + Transfer-Encoding: chunked + Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, + X-Requested-With + X-Accepted-OAuth-Scopes: '' + X-Content-Type-Options: nosniff + X-Frame-Options: deny + X-GitHub-Media-Type: github.v3; format=json + X-GitHub-Request-Id: D2AA:A997:18A9D4:1907BD:6321D622 + X-OAuth-Scopes: read:discussion, read:enterprise, read:gpg_key, read:org, + read:packages, read:project, read:public_key, read:repo_hook, read:ssh_signing_key, + read:user, repo + X-RateLimit-Limit: '5000' + X-RateLimit-Remaining: '4964' + X-RateLimit-Reset: '1663165394' + X-RateLimit-Resource: core + X-RateLimit-Used: '36' + X-XSS-Protection: '0' + github-authentication-token-expiration: 2022-10-14 13:21:17 UTC + raw: !!binary "" + reason: OK + status_code: 200 + - metadata: + latency: 0.19661593437194824 + module_call_list: + - unittest.case + - requre.record_and_replace + - tests.integration.github.test_generic_commands + - ogr.abstract + - ogr.services.github.project + - ogr.abstract + - ogr.services.github.project + - ogr.abstract + - ogr.services.github.project + - github.Repository + - github.Requester + - requests.sessions + - requre.objects + - requre.cassette + - requests.sessions + - send + output: + __store_indicator: 2 + _content: + permission: admin + role_name: admin + user: + avatar_url: https://avatars.githubusercontent.com/u/2678400?v=4 + events_url: https://api.github.com/users/majamassarini/events{/privacy} + followers_url: https://api.github.com/users/majamassarini/followers + following_url: https://api.github.com/users/majamassarini/following{/other_user} + gists_url: https://api.github.com/users/majamassarini/gists{/gist_id} + gravatar_id: '' + html_url: https://github.com/majamassarini + id: 2678400 + login: majamassarini + node_id: MDQ6VXNlcjI2Nzg0MDA= + organizations_url: https://api.github.com/users/majamassarini/orgs + permissions: + admin: true + maintain: true + pull: true + push: true + triage: true + received_events_url: https://api.github.com/users/majamassarini/received_events + repos_url: https://api.github.com/users/majamassarini/repos + role_name: admin + site_admin: false + starred_url: https://api.github.com/users/majamassarini/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/majamassarini/subscriptions + type: User + url: https://api.github.com/users/majamassarini + _next: null + elapsed: 0.196085 + encoding: utf-8 + headers: + Access-Control-Allow-Origin: '*' + Access-Control-Expose-Headers: ETag, Link, Location, Retry-After, X-GitHub-OTP, + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, + X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, + X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, + Sunset + Cache-Control: private, max-age=60, s-maxage=60 + Content-Encoding: gzip + Content-Security-Policy: default-src 'none' + Content-Type: application/json; charset=utf-8 + Date: Wed, 14 Sep 2022 13:24:54 GMT + ETag: W/"4e35432a6cac305abcf2aed8030b54a66412e175892f5b18a8dd7293607e6db6" + Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin + Server: GitHub.com + Strict-Transport-Security: max-age=31536000; includeSubdomains; preload + Transfer-Encoding: chunked + Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, + X-Requested-With + X-Accepted-OAuth-Scopes: '' + X-Content-Type-Options: nosniff + X-Frame-Options: deny + X-GitHub-Media-Type: github.v3; format=json + X-GitHub-Request-Id: D2AA:A997:18B94A:191777:6321D626 + X-OAuth-Scopes: read:discussion, read:enterprise, read:gpg_key, read:org, + read:packages, read:project, read:public_key, read:repo_hook, read:ssh_signing_key, + read:user, repo + X-RateLimit-Limit: '5000' + X-RateLimit-Remaining: '4950' + X-RateLimit-Reset: '1663165394' + X-RateLimit-Resource: core + X-RateLimit-Used: '50' + X-XSS-Protection: '0' + github-authentication-token-expiration: 2022-10-14 13:21:17 UTC + raw: !!binary "" + reason: OK + status_code: 200 + - metadata: + latency: 0.3951263427734375 + module_call_list: + - unittest.case + - requre.record_and_replace + - tests.integration.github.test_generic_commands + - ogr.abstract + - ogr.services.github.project + - ogr.abstract + - ogr.services.github.project + - ogr.abstract + - ogr.services.github.project + - github.Repository + - github.Requester + - requests.sessions + - requre.objects + - requre.cassette + - requests.sessions + - send + output: + __store_indicator: 2 + _content: + permission: admin + role_name: admin + user: + avatar_url: https://avatars.githubusercontent.com/u/2678400?v=4 + events_url: https://api.github.com/users/majamassarini/events{/privacy} + followers_url: https://api.github.com/users/majamassarini/followers + following_url: https://api.github.com/users/majamassarini/following{/other_user} + gists_url: https://api.github.com/users/majamassarini/gists{/gist_id} + gravatar_id: '' + html_url: https://github.com/majamassarini + id: 2678400 + login: majamassarini + node_id: MDQ6VXNlcjI2Nzg0MDA= + organizations_url: https://api.github.com/users/majamassarini/orgs + permissions: + admin: true + maintain: true + pull: true + push: true + triage: true + received_events_url: https://api.github.com/users/majamassarini/received_events + repos_url: https://api.github.com/users/majamassarini/repos + role_name: admin + site_admin: false + starred_url: https://api.github.com/users/majamassarini/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/majamassarini/subscriptions + type: User + url: https://api.github.com/users/majamassarini + _next: null + elapsed: 0.394633 + encoding: utf-8 + headers: + Access-Control-Allow-Origin: '*' + Access-Control-Expose-Headers: ETag, Link, Location, Retry-After, X-GitHub-OTP, + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, + X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, + X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, + Sunset + Cache-Control: private, max-age=60, s-maxage=60 + Content-Encoding: gzip + Content-Security-Policy: default-src 'none' + Content-Type: application/json; charset=utf-8 + Date: Wed, 14 Sep 2022 13:24:58 GMT + ETag: W/"4e35432a6cac305abcf2aed8030b54a66412e175892f5b18a8dd7293607e6db6" + Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin + Server: GitHub.com + Strict-Transport-Security: max-age=31536000; includeSubdomains; preload + Transfer-Encoding: chunked + Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, + X-Requested-With + X-Accepted-OAuth-Scopes: '' + X-Content-Type-Options: nosniff + X-Frame-Options: deny + X-GitHub-Media-Type: github.v3; format=json + X-GitHub-Request-Id: D2AA:A997:18C870:1926DA:6321D62A + X-OAuth-Scopes: read:discussion, read:enterprise, read:gpg_key, read:org, + read:packages, read:project, read:public_key, read:repo_hook, read:ssh_signing_key, + read:user, repo + X-RateLimit-Limit: '5000' + X-RateLimit-Remaining: '4936' + X-RateLimit-Reset: '1663165394' + X-RateLimit-Resource: core + X-RateLimit-Used: '64' + X-XSS-Protection: '0' + github-authentication-token-expiration: 2022-10-14 13:21:17 UTC + raw: !!binary "" + reason: OK + status_code: 200 + https://api.github.com:443/repos/packit/ogr/collaborators/mfocko/permission: + - metadata: + latency: 0.2957322597503662 + module_call_list: + - unittest.case + - requre.record_and_replace + - tests.integration.github.test_generic_commands + - ogr.abstract + - ogr.services.github.project + - ogr.abstract + - ogr.services.github.project + - ogr.abstract + - ogr.services.github.project + - github.Repository + - github.Requester + - requests.sessions + - requre.objects + - requre.cassette + - requests.sessions + - send + output: + __store_indicator: 2 + _content: + permission: admin + role_name: admin + user: + avatar_url: https://avatars.githubusercontent.com/u/8149784?v=4 + events_url: https://api.github.com/users/mfocko/events{/privacy} + followers_url: https://api.github.com/users/mfocko/followers + following_url: https://api.github.com/users/mfocko/following{/other_user} + gists_url: https://api.github.com/users/mfocko/gists{/gist_id} + gravatar_id: '' + html_url: https://github.com/mfocko + id: 8149784 + login: mfocko + node_id: MDQ6VXNlcjgxNDk3ODQ= + organizations_url: https://api.github.com/users/mfocko/orgs + permissions: + admin: true + maintain: true + pull: true + push: true + triage: true + received_events_url: https://api.github.com/users/mfocko/received_events + repos_url: https://api.github.com/users/mfocko/repos + role_name: admin + site_admin: false + starred_url: https://api.github.com/users/mfocko/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mfocko/subscriptions + type: User + url: https://api.github.com/users/mfocko + _next: null + elapsed: 0.29528 + encoding: utf-8 + headers: + Access-Control-Allow-Origin: '*' + Access-Control-Expose-Headers: ETag, Link, Location, Retry-After, X-GitHub-OTP, + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, + X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, + X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, + Sunset + Cache-Control: private, max-age=60, s-maxage=60 + Content-Encoding: gzip + Content-Security-Policy: default-src 'none' + Content-Type: application/json; charset=utf-8 + Date: Wed, 14 Sep 2022 13:24:51 GMT + ETag: W/"37205d8a1d770af5dcf502e05dd5606edc819e914253fd11a4177036c14c1f70" + Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin + Server: GitHub.com + Strict-Transport-Security: max-age=31536000; includeSubdomains; preload + Transfer-Encoding: chunked + Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, + X-Requested-With + X-Accepted-OAuth-Scopes: '' + X-Content-Type-Options: nosniff + X-Frame-Options: deny + X-GitHub-Media-Type: github.v3; format=json + X-GitHub-Request-Id: D2AA:A997:18AB94:190971:6321D623 + X-OAuth-Scopes: read:discussion, read:enterprise, read:gpg_key, read:org, + read:packages, read:project, read:public_key, read:repo_hook, read:ssh_signing_key, + read:user, repo + X-RateLimit-Limit: '5000' + X-RateLimit-Remaining: '4963' + X-RateLimit-Reset: '1663165394' + X-RateLimit-Resource: core + X-RateLimit-Used: '37' + X-XSS-Protection: '0' + github-authentication-token-expiration: 2022-10-14 13:21:17 UTC + raw: !!binary "" + reason: OK + status_code: 200 + - metadata: + latency: 0.1696469783782959 + module_call_list: + - unittest.case + - requre.record_and_replace + - tests.integration.github.test_generic_commands + - ogr.abstract + - ogr.services.github.project + - ogr.abstract + - ogr.services.github.project + - ogr.abstract + - ogr.services.github.project + - github.Repository + - github.Requester + - requests.sessions + - requre.objects + - requre.cassette + - requests.sessions + - send + output: + __store_indicator: 2 + _content: + permission: admin + role_name: admin + user: + avatar_url: https://avatars.githubusercontent.com/u/8149784?v=4 + events_url: https://api.github.com/users/mfocko/events{/privacy} + followers_url: https://api.github.com/users/mfocko/followers + following_url: https://api.github.com/users/mfocko/following{/other_user} + gists_url: https://api.github.com/users/mfocko/gists{/gist_id} + gravatar_id: '' + html_url: https://github.com/mfocko + id: 8149784 + login: mfocko + node_id: MDQ6VXNlcjgxNDk3ODQ= + organizations_url: https://api.github.com/users/mfocko/orgs + permissions: + admin: true + maintain: true + pull: true + push: true + triage: true + received_events_url: https://api.github.com/users/mfocko/received_events + repos_url: https://api.github.com/users/mfocko/repos + role_name: admin + site_admin: false + starred_url: https://api.github.com/users/mfocko/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mfocko/subscriptions + type: User + url: https://api.github.com/users/mfocko + _next: null + elapsed: 0.169174 + encoding: utf-8 + headers: + Access-Control-Allow-Origin: '*' + Access-Control-Expose-Headers: ETag, Link, Location, Retry-After, X-GitHub-OTP, + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, + X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, + X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, + Sunset + Cache-Control: private, max-age=60, s-maxage=60 + Content-Encoding: gzip + Content-Security-Policy: default-src 'none' + Content-Type: application/json; charset=utf-8 + Date: Wed, 14 Sep 2022 13:24:55 GMT + ETag: W/"37205d8a1d770af5dcf502e05dd5606edc819e914253fd11a4177036c14c1f70" + Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin + Server: GitHub.com + Strict-Transport-Security: max-age=31536000; includeSubdomains; preload + Transfer-Encoding: chunked + Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, + X-Requested-With + X-Accepted-OAuth-Scopes: '' + X-Content-Type-Options: nosniff + X-Frame-Options: deny + X-GitHub-Media-Type: github.v3; format=json + X-GitHub-Request-Id: D2AA:A997:18BA07:191837:6321D626 + X-OAuth-Scopes: read:discussion, read:enterprise, read:gpg_key, read:org, + read:packages, read:project, read:public_key, read:repo_hook, read:ssh_signing_key, + read:user, repo + X-RateLimit-Limit: '5000' + X-RateLimit-Remaining: '4949' + X-RateLimit-Reset: '1663165394' + X-RateLimit-Resource: core + X-RateLimit-Used: '51' + X-XSS-Protection: '0' + github-authentication-token-expiration: 2022-10-14 13:21:17 UTC + raw: !!binary "" + reason: OK + status_code: 200 + - metadata: + latency: 0.19486069679260254 + module_call_list: + - unittest.case + - requre.record_and_replace + - tests.integration.github.test_generic_commands + - ogr.abstract + - ogr.services.github.project + - ogr.abstract + - ogr.services.github.project + - ogr.abstract + - ogr.services.github.project + - github.Repository + - github.Requester + - requests.sessions + - requre.objects + - requre.cassette + - requests.sessions + - send + output: + __store_indicator: 2 + _content: + permission: admin + role_name: admin + user: + avatar_url: https://avatars.githubusercontent.com/u/8149784?v=4 + events_url: https://api.github.com/users/mfocko/events{/privacy} + followers_url: https://api.github.com/users/mfocko/followers + following_url: https://api.github.com/users/mfocko/following{/other_user} + gists_url: https://api.github.com/users/mfocko/gists{/gist_id} + gravatar_id: '' + html_url: https://github.com/mfocko + id: 8149784 + login: mfocko + node_id: MDQ6VXNlcjgxNDk3ODQ= + organizations_url: https://api.github.com/users/mfocko/orgs + permissions: + admin: true + maintain: true + pull: true + push: true + triage: true + received_events_url: https://api.github.com/users/mfocko/received_events + repos_url: https://api.github.com/users/mfocko/repos + role_name: admin + site_admin: false + starred_url: https://api.github.com/users/mfocko/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mfocko/subscriptions + type: User + url: https://api.github.com/users/mfocko + _next: null + elapsed: 0.194383 + encoding: utf-8 + headers: + Access-Control-Allow-Origin: '*' + Access-Control-Expose-Headers: ETag, Link, Location, Retry-After, X-GitHub-OTP, + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, + X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, + X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, + Sunset + Cache-Control: private, max-age=60, s-maxage=60 + Content-Encoding: gzip + Content-Security-Policy: default-src 'none' + Content-Type: application/json; charset=utf-8 + Date: Wed, 14 Sep 2022 13:24:59 GMT + ETag: W/"37205d8a1d770af5dcf502e05dd5606edc819e914253fd11a4177036c14c1f70" + Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin + Server: GitHub.com + Strict-Transport-Security: max-age=31536000; includeSubdomains; preload + Transfer-Encoding: chunked + Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, + X-Requested-With + X-Accepted-OAuth-Scopes: '' + X-Content-Type-Options: nosniff + X-Frame-Options: deny + X-GitHub-Media-Type: github.v3; format=json + X-GitHub-Request-Id: D2AA:A997:18CA08:192862:6321D62B + X-OAuth-Scopes: read:discussion, read:enterprise, read:gpg_key, read:org, + read:packages, read:project, read:public_key, read:repo_hook, read:ssh_signing_key, + read:user, repo + X-RateLimit-Limit: '5000' + X-RateLimit-Remaining: '4935' + X-RateLimit-Reset: '1663165394' + X-RateLimit-Resource: core + X-RateLimit-Used: '65' + X-XSS-Protection: '0' + github-authentication-token-expiration: 2022-10-14 13:21:17 UTC + raw: !!binary "" + reason: OK + status_code: 200 + https://api.github.com:443/repos/packit/ogr/collaborators/nforro/permission: + - metadata: + latency: 0.19611096382141113 + module_call_list: + - unittest.case + - requre.record_and_replace + - tests.integration.github.test_generic_commands + - ogr.abstract + - ogr.services.github.project + - ogr.abstract + - ogr.services.github.project + - ogr.abstract + - ogr.services.github.project + - github.Repository + - github.Requester + - requests.sessions + - requre.objects + - requre.cassette + - requests.sessions + - send + output: + __store_indicator: 2 + _content: + permission: write + role_name: write + user: + avatar_url: https://avatars.githubusercontent.com/u/14923067?v=4 + events_url: https://api.github.com/users/nforro/events{/privacy} + followers_url: https://api.github.com/users/nforro/followers + following_url: https://api.github.com/users/nforro/following{/other_user} + gists_url: https://api.github.com/users/nforro/gists{/gist_id} + gravatar_id: '' + html_url: https://github.com/nforro + id: 14923067 + login: nforro + node_id: MDQ6VXNlcjE0OTIzMDY3 + organizations_url: https://api.github.com/users/nforro/orgs + permissions: + admin: false + maintain: false + pull: true + push: true + triage: true + received_events_url: https://api.github.com/users/nforro/received_events + repos_url: https://api.github.com/users/nforro/repos + role_name: write + site_admin: false + starred_url: https://api.github.com/users/nforro/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/nforro/subscriptions + type: User + url: https://api.github.com/users/nforro + _next: null + elapsed: 0.195652 + encoding: utf-8 + headers: + Access-Control-Allow-Origin: '*' + Access-Control-Expose-Headers: ETag, Link, Location, Retry-After, X-GitHub-OTP, + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, + X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, + X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, + Sunset + Cache-Control: private, max-age=60, s-maxage=60 + Content-Encoding: gzip + Content-Security-Policy: default-src 'none' + Content-Type: application/json; charset=utf-8 + Date: Wed, 14 Sep 2022 13:24:51 GMT + ETag: W/"249c06c4a715da97d96bae458cdf1e72c22b4df30303bcbefe05c5ab0b9df26b" + Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin + Server: GitHub.com + Strict-Transport-Security: max-age=31536000; includeSubdomains; preload + Transfer-Encoding: chunked + Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, + X-Requested-With + X-Accepted-OAuth-Scopes: '' + X-Content-Type-Options: nosniff + X-Frame-Options: deny + X-GitHub-Media-Type: github.v3; format=json + X-GitHub-Request-Id: D2AA:A997:18AE2F:190C29:6321D623 + X-OAuth-Scopes: read:discussion, read:enterprise, read:gpg_key, read:org, + read:packages, read:project, read:public_key, read:repo_hook, read:ssh_signing_key, + read:user, repo + X-RateLimit-Limit: '5000' + X-RateLimit-Remaining: '4961' + X-RateLimit-Reset: '1663165394' + X-RateLimit-Resource: core + X-RateLimit-Used: '39' + X-XSS-Protection: '0' + github-authentication-token-expiration: 2022-10-14 13:21:17 UTC + raw: !!binary "" + reason: OK + status_code: 200 + - metadata: + latency: 0.23823928833007812 + module_call_list: + - unittest.case + - requre.record_and_replace + - tests.integration.github.test_generic_commands + - ogr.abstract + - ogr.services.github.project + - ogr.abstract + - ogr.services.github.project + - ogr.abstract + - ogr.services.github.project + - github.Repository + - github.Requester + - requests.sessions + - requre.objects + - requre.cassette + - requests.sessions + - send + output: + __store_indicator: 2 + _content: + permission: write + role_name: write + user: + avatar_url: https://avatars.githubusercontent.com/u/14923067?v=4 + events_url: https://api.github.com/users/nforro/events{/privacy} + followers_url: https://api.github.com/users/nforro/followers + following_url: https://api.github.com/users/nforro/following{/other_user} + gists_url: https://api.github.com/users/nforro/gists{/gist_id} + gravatar_id: '' + html_url: https://github.com/nforro + id: 14923067 + login: nforro + node_id: MDQ6VXNlcjE0OTIzMDY3 + organizations_url: https://api.github.com/users/nforro/orgs + permissions: + admin: false + maintain: false + pull: true + push: true + triage: true + received_events_url: https://api.github.com/users/nforro/received_events + repos_url: https://api.github.com/users/nforro/repos + role_name: write + site_admin: false + starred_url: https://api.github.com/users/nforro/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/nforro/subscriptions + type: User + url: https://api.github.com/users/nforro + _next: null + elapsed: 0.237789 + encoding: utf-8 + headers: + Access-Control-Allow-Origin: '*' + Access-Control-Expose-Headers: ETag, Link, Location, Retry-After, X-GitHub-OTP, + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, + X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, + X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, + Sunset + Cache-Control: private, max-age=60, s-maxage=60 + Content-Encoding: gzip + Content-Security-Policy: default-src 'none' + Content-Type: application/json; charset=utf-8 + Date: Wed, 14 Sep 2022 13:24:55 GMT + ETag: W/"249c06c4a715da97d96bae458cdf1e72c22b4df30303bcbefe05c5ab0b9df26b" + Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin + Server: GitHub.com + Strict-Transport-Security: max-age=31536000; includeSubdomains; preload + Transfer-Encoding: chunked + Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, + X-Requested-With + X-Accepted-OAuth-Scopes: '' + X-Content-Type-Options: nosniff + X-Frame-Options: deny + X-GitHub-Media-Type: github.v3; format=json + X-GitHub-Request-Id: D2AA:A997:18BB62:19197F:6321D627 + X-OAuth-Scopes: read:discussion, read:enterprise, read:gpg_key, read:org, + read:packages, read:project, read:public_key, read:repo_hook, read:ssh_signing_key, + read:user, repo + X-RateLimit-Limit: '5000' + X-RateLimit-Remaining: '4947' + X-RateLimit-Reset: '1663165394' + X-RateLimit-Resource: core + X-RateLimit-Used: '53' + X-XSS-Protection: '0' + github-authentication-token-expiration: 2022-10-14 13:21:17 UTC + raw: !!binary "" + reason: OK + status_code: 200 + - metadata: + latency: 0.40329551696777344 + module_call_list: + - unittest.case + - requre.record_and_replace + - tests.integration.github.test_generic_commands + - ogr.abstract + - ogr.services.github.project + - ogr.abstract + - ogr.services.github.project + - ogr.abstract + - ogr.services.github.project + - github.Repository + - github.Requester + - requests.sessions + - requre.objects + - requre.cassette + - requests.sessions + - send + output: + __store_indicator: 2 + _content: + permission: write + role_name: write + user: + avatar_url: https://avatars.githubusercontent.com/u/14923067?v=4 + events_url: https://api.github.com/users/nforro/events{/privacy} + followers_url: https://api.github.com/users/nforro/followers + following_url: https://api.github.com/users/nforro/following{/other_user} + gists_url: https://api.github.com/users/nforro/gists{/gist_id} + gravatar_id: '' + html_url: https://github.com/nforro + id: 14923067 + login: nforro + node_id: MDQ6VXNlcjE0OTIzMDY3 + organizations_url: https://api.github.com/users/nforro/orgs + permissions: + admin: false + maintain: false + pull: true + push: true + triage: true + received_events_url: https://api.github.com/users/nforro/received_events + repos_url: https://api.github.com/users/nforro/repos + role_name: write + site_admin: false + starred_url: https://api.github.com/users/nforro/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/nforro/subscriptions + type: User + url: https://api.github.com/users/nforro + _next: null + elapsed: 0.402787 + encoding: utf-8 + headers: + Access-Control-Allow-Origin: '*' + Access-Control-Expose-Headers: ETag, Link, Location, Retry-After, X-GitHub-OTP, + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, + X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, + X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, + Sunset + Cache-Control: private, max-age=60, s-maxage=60 + Content-Encoding: gzip + Content-Security-Policy: default-src 'none' + Content-Type: application/json; charset=utf-8 + Date: Wed, 14 Sep 2022 13:24:59 GMT + ETag: W/"249c06c4a715da97d96bae458cdf1e72c22b4df30303bcbefe05c5ab0b9df26b" + Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin + Server: GitHub.com + Strict-Transport-Security: max-age=31536000; includeSubdomains; preload + Transfer-Encoding: chunked + Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, + X-Requested-With + X-Accepted-OAuth-Scopes: '' + X-Content-Type-Options: nosniff + X-Frame-Options: deny + X-GitHub-Media-Type: github.v3; format=json + X-GitHub-Request-Id: D2AA:A997:18CC5B:192AE4:6321D62B + X-OAuth-Scopes: read:discussion, read:enterprise, read:gpg_key, read:org, + read:packages, read:project, read:public_key, read:repo_hook, read:ssh_signing_key, + read:user, repo + X-RateLimit-Limit: '5000' + X-RateLimit-Remaining: '4933' + X-RateLimit-Reset: '1663165394' + X-RateLimit-Resource: core + X-RateLimit-Used: '67' + X-XSS-Protection: '0' + github-authentication-token-expiration: 2022-10-14 13:21:17 UTC + raw: !!binary "" + reason: OK + status_code: 200 + https://api.github.com:443/repos/packit/ogr/collaborators/nikromen/permission: + - metadata: + latency: 0.19531011581420898 + module_call_list: + - unittest.case + - requre.record_and_replace + - tests.integration.github.test_generic_commands + - ogr.abstract + - ogr.services.github.project + - ogr.abstract + - ogr.services.github.project + - ogr.abstract + - ogr.services.github.project + - github.Repository + - github.Requester + - requests.sessions + - requre.objects + - requre.cassette + - requests.sessions + - send + output: + __store_indicator: 2 + _content: + permission: admin + role_name: admin + user: + avatar_url: https://avatars.githubusercontent.com/u/70757578?v=4 + events_url: https://api.github.com/users/nikromen/events{/privacy} + followers_url: https://api.github.com/users/nikromen/followers + following_url: https://api.github.com/users/nikromen/following{/other_user} + gists_url: https://api.github.com/users/nikromen/gists{/gist_id} + gravatar_id: '' + html_url: https://github.com/nikromen + id: 70757578 + login: nikromen + node_id: MDQ6VXNlcjcwNzU3NTc4 + organizations_url: https://api.github.com/users/nikromen/orgs + permissions: + admin: true + maintain: true + pull: true + push: true + triage: true + received_events_url: https://api.github.com/users/nikromen/received_events + repos_url: https://api.github.com/users/nikromen/repos + role_name: admin + site_admin: false + starred_url: https://api.github.com/users/nikromen/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/nikromen/subscriptions + type: User + url: https://api.github.com/users/nikromen + _next: null + elapsed: 0.194857 + encoding: utf-8 + headers: + Access-Control-Allow-Origin: '*' + Access-Control-Expose-Headers: ETag, Link, Location, Retry-After, X-GitHub-OTP, + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, + X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, + X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, + Sunset + Cache-Control: private, max-age=60, s-maxage=60 + Content-Encoding: gzip + Content-Security-Policy: default-src 'none' + Content-Type: application/json; charset=utf-8 + Date: Wed, 14 Sep 2022 13:24:53 GMT + ETag: W/"52ab6a6cbd168e1a5f13ae16961f3a12f9433a11ff07f4ea5b66a1cac2b8f13c" + Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin + Server: GitHub.com + Strict-Transport-Security: max-age=31536000; includeSubdomains; preload + Transfer-Encoding: chunked + Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, + X-Requested-With + X-Accepted-OAuth-Scopes: '' + X-Content-Type-Options: nosniff + X-Frame-Options: deny + X-GitHub-Media-Type: github.v3; format=json + X-GitHub-Request-Id: D2AA:A997:18B373:191179:6321D625 + X-OAuth-Scopes: read:discussion, read:enterprise, read:gpg_key, read:org, + read:packages, read:project, read:public_key, read:repo_hook, read:ssh_signing_key, + read:user, repo + X-RateLimit-Limit: '5000' + X-RateLimit-Remaining: '4956' + X-RateLimit-Reset: '1663165394' + X-RateLimit-Resource: core + X-RateLimit-Used: '44' + X-XSS-Protection: '0' + github-authentication-token-expiration: 2022-10-14 13:21:17 UTC + raw: !!binary "" + reason: OK + status_code: 200 + - metadata: + latency: 0.1949002742767334 + module_call_list: + - unittest.case + - requre.record_and_replace + - tests.integration.github.test_generic_commands + - ogr.abstract + - ogr.services.github.project + - ogr.abstract + - ogr.services.github.project + - ogr.abstract + - ogr.services.github.project + - github.Repository + - github.Requester + - requests.sessions + - requre.objects + - requre.cassette + - requests.sessions + - send + output: + __store_indicator: 2 + _content: + permission: admin + role_name: admin + user: + avatar_url: https://avatars.githubusercontent.com/u/70757578?v=4 + events_url: https://api.github.com/users/nikromen/events{/privacy} + followers_url: https://api.github.com/users/nikromen/followers + following_url: https://api.github.com/users/nikromen/following{/other_user} + gists_url: https://api.github.com/users/nikromen/gists{/gist_id} + gravatar_id: '' + html_url: https://github.com/nikromen + id: 70757578 + login: nikromen + node_id: MDQ6VXNlcjcwNzU3NTc4 + organizations_url: https://api.github.com/users/nikromen/orgs + permissions: + admin: true + maintain: true + pull: true + push: true + triage: true + received_events_url: https://api.github.com/users/nikromen/received_events + repos_url: https://api.github.com/users/nikromen/repos + role_name: admin + site_admin: false + starred_url: https://api.github.com/users/nikromen/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/nikromen/subscriptions + type: User + url: https://api.github.com/users/nikromen + _next: null + elapsed: 0.194444 + encoding: utf-8 + headers: + Access-Control-Allow-Origin: '*' + Access-Control-Expose-Headers: ETag, Link, Location, Retry-After, X-GitHub-OTP, + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, + X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, + X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, + Sunset + Cache-Control: private, max-age=60, s-maxage=60 + Content-Encoding: gzip + Content-Security-Policy: default-src 'none' + Content-Type: application/json; charset=utf-8 + Date: Wed, 14 Sep 2022 13:24:56 GMT + ETag: W/"52ab6a6cbd168e1a5f13ae16961f3a12f9433a11ff07f4ea5b66a1cac2b8f13c" + Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin + Server: GitHub.com + Strict-Transport-Security: max-age=31536000; includeSubdomains; preload + Transfer-Encoding: chunked + Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, + X-Requested-With + X-Accepted-OAuth-Scopes: '' + X-Content-Type-Options: nosniff + X-Frame-Options: deny + X-GitHub-Media-Type: github.v3; format=json + X-GitHub-Request-Id: D2AA:A997:18C06D:191E90:6321D628 + X-OAuth-Scopes: read:discussion, read:enterprise, read:gpg_key, read:org, + read:packages, read:project, read:public_key, read:repo_hook, read:ssh_signing_key, + read:user, repo + X-RateLimit-Limit: '5000' + X-RateLimit-Remaining: '4942' + X-RateLimit-Reset: '1663165394' + X-RateLimit-Resource: core + X-RateLimit-Used: '58' + X-XSS-Protection: '0' + github-authentication-token-expiration: 2022-10-14 13:21:17 UTC + raw: !!binary "" + reason: OK + status_code: 200 + - metadata: + latency: 0.2626688480377197 + module_call_list: + - unittest.case + - requre.record_and_replace + - tests.integration.github.test_generic_commands + - ogr.abstract + - ogr.services.github.project + - ogr.abstract + - ogr.services.github.project + - ogr.abstract + - ogr.services.github.project + - github.Repository + - github.Requester + - requests.sessions + - requre.objects + - requre.cassette + - requests.sessions + - send + output: + __store_indicator: 2 + _content: + permission: admin + role_name: admin + user: + avatar_url: https://avatars.githubusercontent.com/u/70757578?v=4 + events_url: https://api.github.com/users/nikromen/events{/privacy} + followers_url: https://api.github.com/users/nikromen/followers + following_url: https://api.github.com/users/nikromen/following{/other_user} + gists_url: https://api.github.com/users/nikromen/gists{/gist_id} + gravatar_id: '' + html_url: https://github.com/nikromen + id: 70757578 + login: nikromen + node_id: MDQ6VXNlcjcwNzU3NTc4 + organizations_url: https://api.github.com/users/nikromen/orgs + permissions: + admin: true + maintain: true + pull: true + push: true + triage: true + received_events_url: https://api.github.com/users/nikromen/received_events + repos_url: https://api.github.com/users/nikromen/repos + role_name: admin + site_admin: false + starred_url: https://api.github.com/users/nikromen/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/nikromen/subscriptions + type: User + url: https://api.github.com/users/nikromen + _next: null + elapsed: 0.262212 + encoding: utf-8 + headers: + Access-Control-Allow-Origin: '*' + Access-Control-Expose-Headers: ETag, Link, Location, Retry-After, X-GitHub-OTP, + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, + X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, + X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, + Sunset + Cache-Control: private, max-age=60, s-maxage=60 + Content-Encoding: gzip + Content-Security-Policy: default-src 'none' + Content-Type: application/json; charset=utf-8 + Date: Wed, 14 Sep 2022 13:25:01 GMT + ETag: W/"52ab6a6cbd168e1a5f13ae16961f3a12f9433a11ff07f4ea5b66a1cac2b8f13c" + Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin + Server: GitHub.com + Strict-Transport-Security: max-age=31536000; includeSubdomains; preload + Transfer-Encoding: chunked + Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, + X-Requested-With + X-Accepted-OAuth-Scopes: '' + X-Content-Type-Options: nosniff + X-Frame-Options: deny + X-GitHub-Media-Type: github.v3; format=json + X-GitHub-Request-Id: D2AA:A997:18D46F:193380:6321D62D + X-OAuth-Scopes: read:discussion, read:enterprise, read:gpg_key, read:org, + read:packages, read:project, read:public_key, read:repo_hook, read:ssh_signing_key, + read:user, repo + X-RateLimit-Limit: '5000' + X-RateLimit-Remaining: '4928' + X-RateLimit-Reset: '1663165394' + X-RateLimit-Resource: core + X-RateLimit-Used: '72' + X-XSS-Protection: '0' + github-authentication-token-expiration: 2022-10-14 13:21:17 UTC + raw: !!binary "" + reason: OK + status_code: 200 + https://api.github.com:443/repos/packit/ogr/collaborators/usercont-release-bot/permission: + - metadata: + latency: 0.4044790267944336 + module_call_list: + - unittest.case + - requre.record_and_replace + - tests.integration.github.test_generic_commands + - ogr.abstract + - ogr.services.github.project + - ogr.abstract + - ogr.services.github.project + - ogr.abstract + - ogr.services.github.project + - github.Repository + - github.Requester + - requests.sessions + - requre.objects + - requre.cassette + - requests.sessions + - send + output: + __store_indicator: 2 + _content: + permission: write + role_name: write + user: + avatar_url: https://avatars.githubusercontent.com/u/36231209?v=4 + events_url: https://api.github.com/users/usercont-release-bot/events{/privacy} + followers_url: https://api.github.com/users/usercont-release-bot/followers + following_url: https://api.github.com/users/usercont-release-bot/following{/other_user} + gists_url: https://api.github.com/users/usercont-release-bot/gists{/gist_id} + gravatar_id: '' + html_url: https://github.com/usercont-release-bot + id: 36231209 + login: usercont-release-bot + node_id: MDQ6VXNlcjM2MjMxMjA5 + organizations_url: https://api.github.com/users/usercont-release-bot/orgs + permissions: + admin: false + maintain: false + pull: true + push: true + triage: true + received_events_url: https://api.github.com/users/usercont-release-bot/received_events + repos_url: https://api.github.com/users/usercont-release-bot/repos + role_name: write + site_admin: false + starred_url: https://api.github.com/users/usercont-release-bot/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/usercont-release-bot/subscriptions + type: User + url: https://api.github.com/users/usercont-release-bot + _next: null + elapsed: 0.404005 + encoding: utf-8 + headers: + Access-Control-Allow-Origin: '*' + Access-Control-Expose-Headers: ETag, Link, Location, Retry-After, X-GitHub-OTP, + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, + X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, + X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, + Sunset + Cache-Control: private, max-age=60, s-maxage=60 + Content-Encoding: gzip + Content-Security-Policy: default-src 'none' + Content-Type: application/json; charset=utf-8 + Date: Wed, 14 Sep 2022 13:24:52 GMT + ETag: W/"200a68f95e1aae6e6e438f858e2346e2df7e9f997e6b515917397043b425a52d" + Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin + Server: GitHub.com + Strict-Transport-Security: max-age=31536000; includeSubdomains; preload + Transfer-Encoding: chunked + Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, + X-Requested-With + X-Accepted-OAuth-Scopes: '' + X-Content-Type-Options: nosniff + X-Frame-Options: deny + X-GitHub-Media-Type: github.v3; format=json + X-GitHub-Request-Id: D2AA:A997:18B086:190E93:6321D624 + X-OAuth-Scopes: read:discussion, read:enterprise, read:gpg_key, read:org, + read:packages, read:project, read:public_key, read:repo_hook, read:ssh_signing_key, + read:user, repo + X-RateLimit-Limit: '5000' + X-RateLimit-Remaining: '4958' + X-RateLimit-Reset: '1663165394' + X-RateLimit-Resource: core + X-RateLimit-Used: '42' + X-XSS-Protection: '0' + github-authentication-token-expiration: 2022-10-14 13:21:17 UTC + raw: !!binary "" + reason: OK + status_code: 200 + - metadata: + latency: 0.19176793098449707 + module_call_list: + - unittest.case + - requre.record_and_replace + - tests.integration.github.test_generic_commands + - ogr.abstract + - ogr.services.github.project + - ogr.abstract + - ogr.services.github.project + - ogr.abstract + - ogr.services.github.project + - github.Repository + - github.Requester + - requests.sessions + - requre.objects + - requre.cassette + - requests.sessions + - send + output: + __store_indicator: 2 + _content: + permission: write + role_name: write + user: + avatar_url: https://avatars.githubusercontent.com/u/36231209?v=4 + events_url: https://api.github.com/users/usercont-release-bot/events{/privacy} + followers_url: https://api.github.com/users/usercont-release-bot/followers + following_url: https://api.github.com/users/usercont-release-bot/following{/other_user} + gists_url: https://api.github.com/users/usercont-release-bot/gists{/gist_id} + gravatar_id: '' + html_url: https://github.com/usercont-release-bot + id: 36231209 + login: usercont-release-bot + node_id: MDQ6VXNlcjM2MjMxMjA5 + organizations_url: https://api.github.com/users/usercont-release-bot/orgs + permissions: + admin: false + maintain: false + pull: true + push: true + triage: true + received_events_url: https://api.github.com/users/usercont-release-bot/received_events + repos_url: https://api.github.com/users/usercont-release-bot/repos + role_name: write + site_admin: false + starred_url: https://api.github.com/users/usercont-release-bot/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/usercont-release-bot/subscriptions + type: User + url: https://api.github.com/users/usercont-release-bot + _next: null + elapsed: 0.191283 + encoding: utf-8 + headers: + Access-Control-Allow-Origin: '*' + Access-Control-Expose-Headers: ETag, Link, Location, Retry-After, X-GitHub-OTP, + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, + X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, + X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, + Sunset + Cache-Control: private, max-age=60, s-maxage=60 + Content-Encoding: gzip + Content-Security-Policy: default-src 'none' + Content-Type: application/json; charset=utf-8 + Date: Wed, 14 Sep 2022 13:24:56 GMT + ETag: W/"200a68f95e1aae6e6e438f858e2346e2df7e9f997e6b515917397043b425a52d" + Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin + Server: GitHub.com + Strict-Transport-Security: max-age=31536000; includeSubdomains; preload + Transfer-Encoding: chunked + Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, + X-Requested-With + X-Accepted-OAuth-Scopes: '' + X-Content-Type-Options: nosniff + X-Frame-Options: deny + X-GitHub-Media-Type: github.v3; format=json + X-GitHub-Request-Id: D2AA:A997:18BEDA:191D0E:6321D628 + X-OAuth-Scopes: read:discussion, read:enterprise, read:gpg_key, read:org, + read:packages, read:project, read:public_key, read:repo_hook, read:ssh_signing_key, + read:user, repo + X-RateLimit-Limit: '5000' + X-RateLimit-Remaining: '4944' + X-RateLimit-Reset: '1663165394' + X-RateLimit-Resource: core + X-RateLimit-Used: '56' + X-XSS-Protection: '0' + github-authentication-token-expiration: 2022-10-14 13:21:17 UTC + raw: !!binary "" + reason: OK + status_code: 200 + - metadata: + latency: 0.3992190361022949 + module_call_list: + - unittest.case + - requre.record_and_replace + - tests.integration.github.test_generic_commands + - ogr.abstract + - ogr.services.github.project + - ogr.abstract + - ogr.services.github.project + - ogr.abstract + - ogr.services.github.project + - github.Repository + - github.Requester + - requests.sessions + - requre.objects + - requre.cassette + - requests.sessions + - send + output: + __store_indicator: 2 + _content: + permission: write + role_name: write + user: + avatar_url: https://avatars.githubusercontent.com/u/36231209?v=4 + events_url: https://api.github.com/users/usercont-release-bot/events{/privacy} + followers_url: https://api.github.com/users/usercont-release-bot/followers + following_url: https://api.github.com/users/usercont-release-bot/following{/other_user} + gists_url: https://api.github.com/users/usercont-release-bot/gists{/gist_id} + gravatar_id: '' + html_url: https://github.com/usercont-release-bot + id: 36231209 + login: usercont-release-bot + node_id: MDQ6VXNlcjM2MjMxMjA5 + organizations_url: https://api.github.com/users/usercont-release-bot/orgs + permissions: + admin: false + maintain: false + pull: true + push: true + triage: true + received_events_url: https://api.github.com/users/usercont-release-bot/received_events + repos_url: https://api.github.com/users/usercont-release-bot/repos + role_name: write + site_admin: false + starred_url: https://api.github.com/users/usercont-release-bot/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/usercont-release-bot/subscriptions + type: User + url: https://api.github.com/users/usercont-release-bot + _next: null + elapsed: 0.398705 + encoding: utf-8 + headers: + Access-Control-Allow-Origin: '*' + Access-Control-Expose-Headers: ETag, Link, Location, Retry-After, X-GitHub-OTP, + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, + X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, + X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, + Sunset + Cache-Control: private, max-age=60, s-maxage=60 + Content-Encoding: gzip + Content-Security-Policy: default-src 'none' + Content-Type: application/json; charset=utf-8 + Date: Wed, 14 Sep 2022 13:25:00 GMT + ETag: W/"200a68f95e1aae6e6e438f858e2346e2df7e9f997e6b515917397043b425a52d" + Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin + Server: GitHub.com + Strict-Transport-Security: max-age=31536000; includeSubdomains; preload + Transfer-Encoding: chunked + Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, + X-Requested-With + X-Accepted-OAuth-Scopes: '' + X-Content-Type-Options: nosniff + X-Frame-Options: deny + X-GitHub-Media-Type: github.v3; format=json + X-GitHub-Request-Id: D2AA:A997:18D097:192F63:6321D62C + X-OAuth-Scopes: read:discussion, read:enterprise, read:gpg_key, read:org, + read:packages, read:project, read:public_key, read:repo_hook, read:ssh_signing_key, + read:user, repo + X-RateLimit-Limit: '5000' + X-RateLimit-Remaining: '4930' + X-RateLimit-Reset: '1663165394' + X-RateLimit-Resource: core + X-RateLimit-Used: '70' + X-XSS-Protection: '0' + github-authentication-token-expiration: 2022-10-14 13:21:17 UTC + raw: !!binary "" + reason: OK + status_code: 200 + https://api.github.com:443/repos/packit/ogr/collaborators/xsuchy/permission: + - metadata: + latency: 0.39542698860168457 + module_call_list: + - unittest.case + - requre.record_and_replace + - tests.integration.github.test_generic_commands + - ogr.abstract + - ogr.services.github.project + - ogr.abstract + - ogr.services.github.project + - ogr.abstract + - ogr.services.github.project + - github.Repository + - github.Requester + - requests.sessions + - requre.objects + - requre.cassette + - requests.sessions + - send + output: + __store_indicator: 2 + _content: + permission: write + role_name: write + user: + avatar_url: https://avatars.githubusercontent.com/u/85769?v=4 + events_url: https://api.github.com/users/xsuchy/events{/privacy} + followers_url: https://api.github.com/users/xsuchy/followers + following_url: https://api.github.com/users/xsuchy/following{/other_user} + gists_url: https://api.github.com/users/xsuchy/gists{/gist_id} + gravatar_id: '' + html_url: https://github.com/xsuchy + id: 85769 + login: xsuchy + node_id: MDQ6VXNlcjg1NzY5 + organizations_url: https://api.github.com/users/xsuchy/orgs + permissions: + admin: false + maintain: false + pull: true + push: true + triage: true + received_events_url: https://api.github.com/users/xsuchy/received_events + repos_url: https://api.github.com/users/xsuchy/repos + role_name: write + site_admin: false + starred_url: https://api.github.com/users/xsuchy/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/xsuchy/subscriptions + type: User + url: https://api.github.com/users/xsuchy + _next: null + elapsed: 0.394962 + encoding: utf-8 + headers: + Access-Control-Allow-Origin: '*' + Access-Control-Expose-Headers: ETag, Link, Location, Retry-After, X-GitHub-OTP, + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, + X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, + X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, + Sunset + Cache-Control: private, max-age=60, s-maxage=60 + Content-Encoding: gzip + Content-Security-Policy: default-src 'none' + Content-Type: application/json; charset=utf-8 + Date: Wed, 14 Sep 2022 13:24:49 GMT + ETag: W/"fa56165b370c3b9487cd206d034f09daa91045f0b04f1a520f993de82f9a0ce0" + Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin + Server: GitHub.com + Strict-Transport-Security: max-age=31536000; includeSubdomains; preload + Transfer-Encoding: chunked + Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, + X-Requested-With + X-Accepted-OAuth-Scopes: '' + X-Content-Type-Options: nosniff + X-Frame-Options: deny + X-GitHub-Media-Type: github.v3; format=json + X-GitHub-Request-Id: D2AA:A997:18A4EF:1902D1:6321D621 + X-OAuth-Scopes: read:discussion, read:enterprise, read:gpg_key, read:org, + read:packages, read:project, read:public_key, read:repo_hook, read:ssh_signing_key, + read:user, repo + X-RateLimit-Limit: '5000' + X-RateLimit-Remaining: '4968' + X-RateLimit-Reset: '1663165394' + X-RateLimit-Resource: core + X-RateLimit-Used: '32' + X-XSS-Protection: '0' + github-authentication-token-expiration: 2022-10-14 13:21:17 UTC + raw: !!binary "" + reason: OK + status_code: 200 + - metadata: + latency: 0.2564525604248047 + module_call_list: + - unittest.case + - requre.record_and_replace + - tests.integration.github.test_generic_commands + - ogr.abstract + - ogr.services.github.project + - ogr.abstract + - ogr.services.github.project + - ogr.abstract + - ogr.services.github.project + - github.Repository + - github.Requester + - requests.sessions + - requre.objects + - requre.cassette + - requests.sessions + - send + output: + __store_indicator: 2 + _content: + permission: write + role_name: write + user: + avatar_url: https://avatars.githubusercontent.com/u/85769?v=4 + events_url: https://api.github.com/users/xsuchy/events{/privacy} + followers_url: https://api.github.com/users/xsuchy/followers + following_url: https://api.github.com/users/xsuchy/following{/other_user} + gists_url: https://api.github.com/users/xsuchy/gists{/gist_id} + gravatar_id: '' + html_url: https://github.com/xsuchy + id: 85769 + login: xsuchy + node_id: MDQ6VXNlcjg1NzY5 + organizations_url: https://api.github.com/users/xsuchy/orgs + permissions: + admin: false + maintain: false + pull: true + push: true + triage: true + received_events_url: https://api.github.com/users/xsuchy/received_events + repos_url: https://api.github.com/users/xsuchy/repos + role_name: write + site_admin: false + starred_url: https://api.github.com/users/xsuchy/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/xsuchy/subscriptions + type: User + url: https://api.github.com/users/xsuchy + _next: null + elapsed: 0.255996 + encoding: utf-8 + headers: + Access-Control-Allow-Origin: '*' + Access-Control-Expose-Headers: ETag, Link, Location, Retry-After, X-GitHub-OTP, + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, + X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, + X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, + Sunset + Cache-Control: private, max-age=60, s-maxage=60 + Content-Encoding: gzip + Content-Security-Policy: default-src 'none' + Content-Type: application/json; charset=utf-8 + Date: Wed, 14 Sep 2022 13:24:53 GMT + ETag: W/"fa56165b370c3b9487cd206d034f09daa91045f0b04f1a520f993de82f9a0ce0" + Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin + Server: GitHub.com + Strict-Transport-Security: max-age=31536000; includeSubdomains; preload + Transfer-Encoding: chunked + Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, + X-Requested-With + X-Accepted-OAuth-Scopes: '' + X-Content-Type-Options: nosniff + X-Frame-Options: deny + X-GitHub-Media-Type: github.v3; format=json + X-GitHub-Request-Id: D2AA:A997:18B51F:19133D:6321D625 + X-OAuth-Scopes: read:discussion, read:enterprise, read:gpg_key, read:org, + read:packages, read:project, read:public_key, read:repo_hook, read:ssh_signing_key, + read:user, repo + X-RateLimit-Limit: '5000' + X-RateLimit-Remaining: '4954' + X-RateLimit-Reset: '1663165394' + X-RateLimit-Resource: core + X-RateLimit-Used: '46' + X-XSS-Protection: '0' + github-authentication-token-expiration: 2022-10-14 13:21:17 UTC + raw: !!binary "" + reason: OK + status_code: 200 + - metadata: + latency: 0.3914041519165039 + module_call_list: + - unittest.case + - requre.record_and_replace + - tests.integration.github.test_generic_commands + - ogr.abstract + - ogr.services.github.project + - ogr.abstract + - ogr.services.github.project + - ogr.abstract + - ogr.services.github.project + - github.Repository + - github.Requester + - requests.sessions + - requre.objects + - requre.cassette + - requests.sessions + - send + output: + __store_indicator: 2 + _content: + permission: write + role_name: write + user: + avatar_url: https://avatars.githubusercontent.com/u/85769?v=4 + events_url: https://api.github.com/users/xsuchy/events{/privacy} + followers_url: https://api.github.com/users/xsuchy/followers + following_url: https://api.github.com/users/xsuchy/following{/other_user} + gists_url: https://api.github.com/users/xsuchy/gists{/gist_id} + gravatar_id: '' + html_url: https://github.com/xsuchy + id: 85769 + login: xsuchy + node_id: MDQ6VXNlcjg1NzY5 + organizations_url: https://api.github.com/users/xsuchy/orgs + permissions: + admin: false + maintain: false + pull: true + push: true + triage: true + received_events_url: https://api.github.com/users/xsuchy/received_events + repos_url: https://api.github.com/users/xsuchy/repos + role_name: write + site_admin: false + starred_url: https://api.github.com/users/xsuchy/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/xsuchy/subscriptions + type: User + url: https://api.github.com/users/xsuchy + _next: null + elapsed: 0.390949 + encoding: utf-8 + headers: + Access-Control-Allow-Origin: '*' + Access-Control-Expose-Headers: ETag, Link, Location, Retry-After, X-GitHub-OTP, + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, + X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, + X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, + Sunset + Cache-Control: private, max-age=60, s-maxage=60 + Content-Encoding: gzip + Content-Security-Policy: default-src 'none' + Content-Type: application/json; charset=utf-8 + Date: Wed, 14 Sep 2022 13:24:57 GMT + ETag: W/"fa56165b370c3b9487cd206d034f09daa91045f0b04f1a520f993de82f9a0ce0" + Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin + Server: GitHub.com + Strict-Transport-Security: max-age=31536000; includeSubdomains; preload + Transfer-Encoding: chunked + Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, + X-Requested-With + X-Accepted-OAuth-Scopes: '' + X-Content-Type-Options: nosniff + X-Frame-Options: deny + X-GitHub-Media-Type: github.v3; format=json + X-GitHub-Request-Id: D2AA:A997:18C2A9:1920FA:6321D629 + X-OAuth-Scopes: read:discussion, read:enterprise, read:gpg_key, read:org, + read:packages, read:project, read:public_key, read:repo_hook, read:ssh_signing_key, + read:user, repo + X-RateLimit-Limit: '5000' + X-RateLimit-Remaining: '4940' + X-RateLimit-Reset: '1663165394' + X-RateLimit-Resource: core + X-RateLimit-Used: '60' + X-XSS-Protection: '0' + github-authentication-token-expiration: 2022-10-14 13:21:17 UTC + raw: !!binary "" + reason: OK + status_code: 200 diff --git a/tests/integration/gitlab/test_data/test_generic_commands/GenericCommands.test_write_access_to_repo.yaml b/tests/integration/gitlab/test_data/test_generic_commands/GenericCommands.test_write_access_to_repo.yaml new file mode 100644 index 00000000..ec2da424 --- /dev/null +++ b/tests/integration/gitlab/test_data/test_generic_commands/GenericCommands.test_write_access_to_repo.yaml @@ -0,0 +1,955 @@ +_requre: + DataTypes: 1 + key_strategy: StorageKeysInspectSimple + version_storage_file: 3 +requests.sessions: + send: + GET: + https://gitlab.com/api/v4/projects/14233409/members/all: + - metadata: + latency: 0.39697980880737305 + module_call_list: + - unittest.case + - requre.record_and_replace + - tests.integration.gitlab.test_generic_commands + - ogr.abstract + - ogr.services.gitlab.project + - ogr.abstract + - ogr.services.gitlab.project + - gitlab.exceptions + - gitlab.mixins + - gitlab.client + - requre.objects + - requre.cassette + - requests.sessions + - send + output: + __store_indicator: 2 + _content: + - access_level: 50 + avatar_url: https://secure.gravatar.com/avatar/5a2e7f6710bff47b94d24b44b55fd7f7?s=80&d=identicon + created_at: '2019-09-10T10:26:59.194Z' + expires_at: null + id: 433670 + membership_state: active + name: "Franti\u0161ek Lachman" + state: active + username: lachmanfrantisek + web_url: https://gitlab.com/lachmanfrantisek + - access_level: 50 + avatar_url: https://secure.gravatar.com/avatar/9c8d9a288151a8e563547e082c591f2a?s=80&d=identicon + created_at: '2019-09-10T14:02:27.195Z' + created_by: + avatar_url: https://secure.gravatar.com/avatar/5a2e7f6710bff47b94d24b44b55fd7f7?s=80&d=identicon + id: 433670 + name: "Franti\u0161ek Lachman" + state: active + username: lachmanfrantisek + web_url: https://gitlab.com/lachmanfrantisek + expires_at: null + id: 4594931 + membership_state: active + name: "Laura Barcziov\xE1" + state: active + username: lbarcziova + web_url: https://gitlab.com/lbarcziova + - access_level: 50 + avatar_url: https://secure.gravatar.com/avatar/e1ae3427f994784121371108f12eceb5?s=80&d=identicon + created_at: '2019-09-26T09:16:23.261Z' + created_by: + avatar_url: https://secure.gravatar.com/avatar/5a2e7f6710bff47b94d24b44b55fd7f7?s=80&d=identicon + id: 433670 + name: "Franti\u0161ek Lachman" + state: active + username: lachmanfrantisek + web_url: https://gitlab.com/lachmanfrantisek + expires_at: null + id: 4626962 + membership_state: active + name: jscotka + state: active + username: jscotka + web_url: https://gitlab.com/jscotka + - access_level: 50 + avatar_url: https://gitlab.com/uploads/-/system/user/avatar/375555/avatar.png + created_at: '2019-10-09T11:09:10.582Z' + created_by: + avatar_url: https://secure.gravatar.com/avatar/5a2e7f6710bff47b94d24b44b55fd7f7?s=80&d=identicon + id: 433670 + name: "Franti\u0161ek Lachman" + state: active + username: lachmanfrantisek + web_url: https://gitlab.com/lachmanfrantisek + expires_at: null + id: 375555 + membership_state: active + name: Matej Focko + state: active + username: mfocko + web_url: https://gitlab.com/mfocko + - access_level: 50 + avatar_url: https://secure.gravatar.com/avatar/86a332a848dc6260af0575f55ce1f499?s=80&d=identicon + created_at: '2020-08-24T10:57:11.763Z' + created_by: + avatar_url: https://secure.gravatar.com/avatar/e1ae3427f994784121371108f12eceb5?s=80&d=identicon + id: 4626962 + name: jscotka + state: active + username: jscotka + web_url: https://gitlab.com/jscotka + expires_at: null + id: 737640 + membership_state: active + name: Tomas Tomecek + state: active + username: TomasTomecek + web_url: https://gitlab.com/TomasTomecek + - access_level: 20 + avatar_url: https://gitlab.com/uploads/-/system/user/avatar/5647360/avatar.png + created_at: '2020-10-19T12:17:08.426Z' + created_by: + avatar_url: https://secure.gravatar.com/avatar/5a2e7f6710bff47b94d24b44b55fd7f7?s=80&d=identicon + id: 433670 + name: "Franti\u0161ek Lachman" + state: active + username: lachmanfrantisek + web_url: https://gitlab.com/lachmanfrantisek + expires_at: null + id: 5647360 + membership_state: active + name: Shreyas Papinwar + state: active + username: shreyaspapi + web_url: https://gitlab.com/shreyaspapi + - access_level: 50 + avatar_url: https://secure.gravatar.com/avatar/96d32a99efb796de3669943fcf6e5bbb?s=80&d=identicon + created_at: '2021-01-06T08:40:53.415Z' + created_by: + avatar_url: https://secure.gravatar.com/avatar/5a2e7f6710bff47b94d24b44b55fd7f7?s=80&d=identicon + id: 433670 + name: "Franti\u0161ek Lachman" + state: active + username: lachmanfrantisek + web_url: https://gitlab.com/lachmanfrantisek + expires_at: null + id: 551273 + membership_state: active + name: csomh + state: active + username: csomh + web_url: https://gitlab.com/csomh + - access_level: 50 + avatar_url: https://gitlab.com/uploads/-/system/user/avatar/2952463/avatar.png + created_at: '2021-01-06T08:42:12.154Z' + created_by: + avatar_url: https://secure.gravatar.com/avatar/5a2e7f6710bff47b94d24b44b55fd7f7?s=80&d=identicon + id: 433670 + name: "Franti\u0161ek Lachman" + state: active + username: lachmanfrantisek + web_url: https://gitlab.com/lachmanfrantisek + expires_at: null + id: 2952463 + membership_state: active + name: Jiri Popelka + state: active + username: jpopelka + web_url: https://gitlab.com/jpopelka + - access_level: 40 + avatar_url: https://secure.gravatar.com/avatar/67fd352e47663f6b1a8f96b9187ddb09?s=80&d=identicon + created_at: '2021-04-12T08:24:03.884Z' + created_by: + avatar_url: https://secure.gravatar.com/avatar/86a332a848dc6260af0575f55ce1f499?s=80&d=identicon + id: 737640 + name: Tomas Tomecek + state: active + username: TomasTomecek + web_url: https://gitlab.com/TomasTomecek + expires_at: null + id: 8624219 + membership_state: active + name: Packit Bot + state: active + username: centos-stream-packit + web_url: https://gitlab.com/centos-stream-packit + - access_level: 50 + avatar_url: https://gitlab.com/uploads/-/system/user/avatar/10966922/avatar.png + created_at: '2022-05-19T13:20:53.538Z' + created_by: + avatar_url: https://gitlab.com/uploads/-/system/user/avatar/2952463/avatar.png + id: 2952463 + name: Jiri Popelka + state: active + username: jpopelka + web_url: https://gitlab.com/jpopelka + expires_at: null + id: 10966922 + membership_state: active + name: Maja Massarini + state: active + username: mmassari1 + web_url: https://gitlab.com/mmassari1 + _next: null + elapsed: 0.396415 + encoding: utf-8 + headers: + CF-Cache-Status: DYNAMIC + CF-RAY: 74a978b16991b389-PRG + Cache-Control: max-age=0, private, must-revalidate + Connection: keep-alive + Content-Encoding: gzip + Content-Security-Policy: default-src 'none' + Content-Type: application/json + Date: Wed, 14 Sep 2022 13:29:26 GMT + Etag: W/"607eeb29bf1e7f86ca8230881fc245dc" + GitLab-LB: fe-21-lb-gprd + GitLab-SV: localhost + Link: ; + rel="first", ; + rel="last" + NEL: '{"success_fraction":0.01,"report_to":"cf-nel","max_age":604800}' + RateLimit-Limit: '2000' + RateLimit-Observed: '2' + RateLimit-Remaining: '1998' + RateLimit-Reset: '1663162226' + RateLimit-ResetTime: Wed, 14 Sep 2022 13:30:26 GMT + Referrer-Policy: strict-origin-when-cross-origin + Report-To: '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=qq6qJ8gW8qXMC1hHDAwvGx%2Brt8GfQJ3WpPTahfk6ho4YoPyW53LxtWoVzdqQ0iQ63r0ewI%2B4rYhVUTy3P2pwioKpEYMrpVkE6SAoJ2OxBzDHVFj9RsYne5WBH50%3D"}],"group":"cf-nel","max_age":604800}' + Server: cloudflare + Strict-Transport-Security: max-age=31536000 + Transfer-Encoding: chunked + Vary: Origin + X-Content-Type-Options: nosniff + X-Frame-Options: SAMEORIGIN + X-Next-Page: '' + X-Page: '1' + X-Per-Page: '20' + X-Prev-Page: '' + X-Request-Id: 5f6443321a8e0a712a83f3d215e0472a + X-Runtime: '0.210245' + X-Total: '10' + X-Total-Pages: '1' + raw: !!binary "" + reason: OK + status_code: 200 + - metadata: + latency: 0.5912585258483887 + module_call_list: + - unittest.case + - requre.record_and_replace + - tests.integration.gitlab.test_generic_commands + - ogr.abstract + - ogr.services.gitlab.project + - ogr.abstract + - ogr.services.gitlab.project + - gitlab.exceptions + - gitlab.mixins + - gitlab.client + - requre.objects + - requre.cassette + - requests.sessions + - send + output: + __store_indicator: 2 + _content: + - access_level: 50 + avatar_url: https://secure.gravatar.com/avatar/5a2e7f6710bff47b94d24b44b55fd7f7?s=80&d=identicon + created_at: '2019-09-10T10:26:59.194Z' + expires_at: null + id: 433670 + membership_state: active + name: "Franti\u0161ek Lachman" + state: active + username: lachmanfrantisek + web_url: https://gitlab.com/lachmanfrantisek + - access_level: 50 + avatar_url: https://secure.gravatar.com/avatar/9c8d9a288151a8e563547e082c591f2a?s=80&d=identicon + created_at: '2019-09-10T14:02:27.195Z' + created_by: + avatar_url: https://secure.gravatar.com/avatar/5a2e7f6710bff47b94d24b44b55fd7f7?s=80&d=identicon + id: 433670 + name: "Franti\u0161ek Lachman" + state: active + username: lachmanfrantisek + web_url: https://gitlab.com/lachmanfrantisek + expires_at: null + id: 4594931 + membership_state: active + name: "Laura Barcziov\xE1" + state: active + username: lbarcziova + web_url: https://gitlab.com/lbarcziova + - access_level: 50 + avatar_url: https://secure.gravatar.com/avatar/e1ae3427f994784121371108f12eceb5?s=80&d=identicon + created_at: '2019-09-26T09:16:23.261Z' + created_by: + avatar_url: https://secure.gravatar.com/avatar/5a2e7f6710bff47b94d24b44b55fd7f7?s=80&d=identicon + id: 433670 + name: "Franti\u0161ek Lachman" + state: active + username: lachmanfrantisek + web_url: https://gitlab.com/lachmanfrantisek + expires_at: null + id: 4626962 + membership_state: active + name: jscotka + state: active + username: jscotka + web_url: https://gitlab.com/jscotka + - access_level: 50 + avatar_url: https://gitlab.com/uploads/-/system/user/avatar/375555/avatar.png + created_at: '2019-10-09T11:09:10.582Z' + created_by: + avatar_url: https://secure.gravatar.com/avatar/5a2e7f6710bff47b94d24b44b55fd7f7?s=80&d=identicon + id: 433670 + name: "Franti\u0161ek Lachman" + state: active + username: lachmanfrantisek + web_url: https://gitlab.com/lachmanfrantisek + expires_at: null + id: 375555 + membership_state: active + name: Matej Focko + state: active + username: mfocko + web_url: https://gitlab.com/mfocko + - access_level: 50 + avatar_url: https://secure.gravatar.com/avatar/86a332a848dc6260af0575f55ce1f499?s=80&d=identicon + created_at: '2020-08-24T10:57:11.763Z' + created_by: + avatar_url: https://secure.gravatar.com/avatar/e1ae3427f994784121371108f12eceb5?s=80&d=identicon + id: 4626962 + name: jscotka + state: active + username: jscotka + web_url: https://gitlab.com/jscotka + expires_at: null + id: 737640 + membership_state: active + name: Tomas Tomecek + state: active + username: TomasTomecek + web_url: https://gitlab.com/TomasTomecek + - access_level: 20 + avatar_url: https://gitlab.com/uploads/-/system/user/avatar/5647360/avatar.png + created_at: '2020-10-19T12:17:08.426Z' + created_by: + avatar_url: https://secure.gravatar.com/avatar/5a2e7f6710bff47b94d24b44b55fd7f7?s=80&d=identicon + id: 433670 + name: "Franti\u0161ek Lachman" + state: active + username: lachmanfrantisek + web_url: https://gitlab.com/lachmanfrantisek + expires_at: null + id: 5647360 + membership_state: active + name: Shreyas Papinwar + state: active + username: shreyaspapi + web_url: https://gitlab.com/shreyaspapi + - access_level: 50 + avatar_url: https://secure.gravatar.com/avatar/96d32a99efb796de3669943fcf6e5bbb?s=80&d=identicon + created_at: '2021-01-06T08:40:53.415Z' + created_by: + avatar_url: https://secure.gravatar.com/avatar/5a2e7f6710bff47b94d24b44b55fd7f7?s=80&d=identicon + id: 433670 + name: "Franti\u0161ek Lachman" + state: active + username: lachmanfrantisek + web_url: https://gitlab.com/lachmanfrantisek + expires_at: null + id: 551273 + membership_state: active + name: csomh + state: active + username: csomh + web_url: https://gitlab.com/csomh + - access_level: 50 + avatar_url: https://gitlab.com/uploads/-/system/user/avatar/2952463/avatar.png + created_at: '2021-01-06T08:42:12.154Z' + created_by: + avatar_url: https://secure.gravatar.com/avatar/5a2e7f6710bff47b94d24b44b55fd7f7?s=80&d=identicon + id: 433670 + name: "Franti\u0161ek Lachman" + state: active + username: lachmanfrantisek + web_url: https://gitlab.com/lachmanfrantisek + expires_at: null + id: 2952463 + membership_state: active + name: Jiri Popelka + state: active + username: jpopelka + web_url: https://gitlab.com/jpopelka + - access_level: 40 + avatar_url: https://secure.gravatar.com/avatar/67fd352e47663f6b1a8f96b9187ddb09?s=80&d=identicon + created_at: '2021-04-12T08:24:03.884Z' + created_by: + avatar_url: https://secure.gravatar.com/avatar/86a332a848dc6260af0575f55ce1f499?s=80&d=identicon + id: 737640 + name: Tomas Tomecek + state: active + username: TomasTomecek + web_url: https://gitlab.com/TomasTomecek + expires_at: null + id: 8624219 + membership_state: active + name: Packit Bot + state: active + username: centos-stream-packit + web_url: https://gitlab.com/centos-stream-packit + - access_level: 50 + avatar_url: https://gitlab.com/uploads/-/system/user/avatar/10966922/avatar.png + created_at: '2022-05-19T13:20:53.538Z' + created_by: + avatar_url: https://gitlab.com/uploads/-/system/user/avatar/2952463/avatar.png + id: 2952463 + name: Jiri Popelka + state: active + username: jpopelka + web_url: https://gitlab.com/jpopelka + expires_at: null + id: 10966922 + membership_state: active + name: Maja Massarini + state: active + username: mmassari1 + web_url: https://gitlab.com/mmassari1 + _next: null + elapsed: 0.590687 + encoding: utf-8 + headers: + CF-Cache-Status: DYNAMIC + CF-RAY: 74a978b40fecb389-PRG + Cache-Control: max-age=0, private, must-revalidate + Connection: keep-alive + Content-Encoding: gzip + Content-Security-Policy: default-src 'none' + Content-Type: application/json + Date: Wed, 14 Sep 2022 13:29:26 GMT + Etag: W/"607eeb29bf1e7f86ca8230881fc245dc" + GitLab-LB: fe-08-lb-gprd + GitLab-SV: localhost + Link: ; + rel="first", ; + rel="last" + NEL: '{"success_fraction":0.01,"report_to":"cf-nel","max_age":604800}' + RateLimit-Limit: '2000' + RateLimit-Observed: '3' + RateLimit-Remaining: '1997' + RateLimit-Reset: '1663162226' + RateLimit-ResetTime: Wed, 14 Sep 2022 13:30:26 GMT + Referrer-Policy: strict-origin-when-cross-origin + Report-To: '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=cHmmxAL7P0vw31gE4UCm7ZImlhsVL%2BCVybXrtpe8UXlSRXTvD395ZYyGjkUrY6CMJseg54vGjBAwQws4R9fFo5PUf9ZIsACaTJHk8gW2SBWhgKawCMk3ZGtzqMQ%3D"}],"group":"cf-nel","max_age":604800}' + Server: cloudflare + Strict-Transport-Security: max-age=31536000 + Transfer-Encoding: chunked + Vary: Origin + X-Content-Type-Options: nosniff + X-Frame-Options: SAMEORIGIN + X-Next-Page: '' + X-Page: '1' + X-Per-Page: '20' + X-Prev-Page: '' + X-Request-Id: f1067fec24719630f085cc9e5cdc8c60 + X-Runtime: '0.188916' + X-Total: '10' + X-Total-Pages: '1' + raw: !!binary "" + reason: OK + status_code: 200 + - metadata: + latency: 0.400005578994751 + module_call_list: + - unittest.case + - requre.record_and_replace + - tests.integration.gitlab.test_generic_commands + - ogr.abstract + - ogr.services.gitlab.project + - ogr.abstract + - ogr.services.gitlab.project + - gitlab.exceptions + - gitlab.mixins + - gitlab.client + - requre.objects + - requre.cassette + - requests.sessions + - send + output: + __store_indicator: 2 + _content: + - access_level: 50 + avatar_url: https://secure.gravatar.com/avatar/5a2e7f6710bff47b94d24b44b55fd7f7?s=80&d=identicon + created_at: '2019-09-10T10:26:59.194Z' + expires_at: null + id: 433670 + membership_state: active + name: "Franti\u0161ek Lachman" + state: active + username: lachmanfrantisek + web_url: https://gitlab.com/lachmanfrantisek + - access_level: 50 + avatar_url: https://secure.gravatar.com/avatar/9c8d9a288151a8e563547e082c591f2a?s=80&d=identicon + created_at: '2019-09-10T14:02:27.195Z' + created_by: + avatar_url: https://secure.gravatar.com/avatar/5a2e7f6710bff47b94d24b44b55fd7f7?s=80&d=identicon + id: 433670 + name: "Franti\u0161ek Lachman" + state: active + username: lachmanfrantisek + web_url: https://gitlab.com/lachmanfrantisek + expires_at: null + id: 4594931 + membership_state: active + name: "Laura Barcziov\xE1" + state: active + username: lbarcziova + web_url: https://gitlab.com/lbarcziova + - access_level: 50 + avatar_url: https://secure.gravatar.com/avatar/e1ae3427f994784121371108f12eceb5?s=80&d=identicon + created_at: '2019-09-26T09:16:23.261Z' + created_by: + avatar_url: https://secure.gravatar.com/avatar/5a2e7f6710bff47b94d24b44b55fd7f7?s=80&d=identicon + id: 433670 + name: "Franti\u0161ek Lachman" + state: active + username: lachmanfrantisek + web_url: https://gitlab.com/lachmanfrantisek + expires_at: null + id: 4626962 + membership_state: active + name: jscotka + state: active + username: jscotka + web_url: https://gitlab.com/jscotka + - access_level: 50 + avatar_url: https://gitlab.com/uploads/-/system/user/avatar/375555/avatar.png + created_at: '2019-10-09T11:09:10.582Z' + created_by: + avatar_url: https://secure.gravatar.com/avatar/5a2e7f6710bff47b94d24b44b55fd7f7?s=80&d=identicon + id: 433670 + name: "Franti\u0161ek Lachman" + state: active + username: lachmanfrantisek + web_url: https://gitlab.com/lachmanfrantisek + expires_at: null + id: 375555 + membership_state: active + name: Matej Focko + state: active + username: mfocko + web_url: https://gitlab.com/mfocko + - access_level: 50 + avatar_url: https://secure.gravatar.com/avatar/86a332a848dc6260af0575f55ce1f499?s=80&d=identicon + created_at: '2020-08-24T10:57:11.763Z' + created_by: + avatar_url: https://secure.gravatar.com/avatar/e1ae3427f994784121371108f12eceb5?s=80&d=identicon + id: 4626962 + name: jscotka + state: active + username: jscotka + web_url: https://gitlab.com/jscotka + expires_at: null + id: 737640 + membership_state: active + name: Tomas Tomecek + state: active + username: TomasTomecek + web_url: https://gitlab.com/TomasTomecek + - access_level: 20 + avatar_url: https://gitlab.com/uploads/-/system/user/avatar/5647360/avatar.png + created_at: '2020-10-19T12:17:08.426Z' + created_by: + avatar_url: https://secure.gravatar.com/avatar/5a2e7f6710bff47b94d24b44b55fd7f7?s=80&d=identicon + id: 433670 + name: "Franti\u0161ek Lachman" + state: active + username: lachmanfrantisek + web_url: https://gitlab.com/lachmanfrantisek + expires_at: null + id: 5647360 + membership_state: active + name: Shreyas Papinwar + state: active + username: shreyaspapi + web_url: https://gitlab.com/shreyaspapi + - access_level: 50 + avatar_url: https://secure.gravatar.com/avatar/96d32a99efb796de3669943fcf6e5bbb?s=80&d=identicon + created_at: '2021-01-06T08:40:53.415Z' + created_by: + avatar_url: https://secure.gravatar.com/avatar/5a2e7f6710bff47b94d24b44b55fd7f7?s=80&d=identicon + id: 433670 + name: "Franti\u0161ek Lachman" + state: active + username: lachmanfrantisek + web_url: https://gitlab.com/lachmanfrantisek + expires_at: null + id: 551273 + membership_state: active + name: csomh + state: active + username: csomh + web_url: https://gitlab.com/csomh + - access_level: 50 + avatar_url: https://gitlab.com/uploads/-/system/user/avatar/2952463/avatar.png + created_at: '2021-01-06T08:42:12.154Z' + created_by: + avatar_url: https://secure.gravatar.com/avatar/5a2e7f6710bff47b94d24b44b55fd7f7?s=80&d=identicon + id: 433670 + name: "Franti\u0161ek Lachman" + state: active + username: lachmanfrantisek + web_url: https://gitlab.com/lachmanfrantisek + expires_at: null + id: 2952463 + membership_state: active + name: Jiri Popelka + state: active + username: jpopelka + web_url: https://gitlab.com/jpopelka + - access_level: 40 + avatar_url: https://secure.gravatar.com/avatar/67fd352e47663f6b1a8f96b9187ddb09?s=80&d=identicon + created_at: '2021-04-12T08:24:03.884Z' + created_by: + avatar_url: https://secure.gravatar.com/avatar/86a332a848dc6260af0575f55ce1f499?s=80&d=identicon + id: 737640 + name: Tomas Tomecek + state: active + username: TomasTomecek + web_url: https://gitlab.com/TomasTomecek + expires_at: null + id: 8624219 + membership_state: active + name: Packit Bot + state: active + username: centos-stream-packit + web_url: https://gitlab.com/centos-stream-packit + - access_level: 50 + avatar_url: https://gitlab.com/uploads/-/system/user/avatar/10966922/avatar.png + created_at: '2022-05-19T13:20:53.538Z' + created_by: + avatar_url: https://gitlab.com/uploads/-/system/user/avatar/2952463/avatar.png + id: 2952463 + name: Jiri Popelka + state: active + username: jpopelka + web_url: https://gitlab.com/jpopelka + expires_at: null + id: 10966922 + membership_state: active + name: Maja Massarini + state: active + username: mmassari1 + web_url: https://gitlab.com/mmassari1 + _next: null + elapsed: 0.399399 + encoding: utf-8 + headers: + CF-Cache-Status: DYNAMIC + CF-RAY: 74a978b7b8f0b389-PRG + Cache-Control: max-age=0, private, must-revalidate + Connection: keep-alive + Content-Encoding: gzip + Content-Security-Policy: default-src 'none' + Content-Type: application/json + Date: Wed, 14 Sep 2022 13:29:27 GMT + Etag: W/"607eeb29bf1e7f86ca8230881fc245dc" + GitLab-LB: fe-01-lb-gprd + GitLab-SV: localhost + Link: ; + rel="first", ; + rel="last" + NEL: '{"success_fraction":0.01,"report_to":"cf-nel","max_age":604800}' + RateLimit-Limit: '2000' + RateLimit-Observed: '4' + RateLimit-Remaining: '1996' + RateLimit-Reset: '1663162227' + RateLimit-ResetTime: Wed, 14 Sep 2022 13:30:27 GMT + Referrer-Policy: strict-origin-when-cross-origin + Report-To: '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=54fHRrYIj9K1fC5UlxqnFOtx9kp5l%2Fu9RsrbPRedOTpVBy5t0bVV0X1yVTm2osjNGUEya6SWy%2BC14zFJ34W5qAILzEHipiINehs3T9H5tOWKChACK3Yhz5bjGW8%3D"}],"group":"cf-nel","max_age":604800}' + Server: cloudflare + Strict-Transport-Security: max-age=31536000 + Transfer-Encoding: chunked + Vary: Origin + X-Content-Type-Options: nosniff + X-Frame-Options: SAMEORIGIN + X-Next-Page: '' + X-Page: '1' + X-Per-Page: '20' + X-Prev-Page: '' + X-Request-Id: 950b168b42df6bdb6ac2e2badb394125 + X-Runtime: '0.215228' + X-Total: '10' + X-Total-Pages: '1' + raw: !!binary "" + reason: OK + status_code: 200 + https://gitlab.com/api/v4/projects/packit-service%2Fogr-tests: + - metadata: + latency: 0.5889825820922852 + module_call_list: + - unittest.case + - requre.record_and_replace + - tests.integration.gitlab.test_generic_commands + - ogr.abstract + - ogr.services.gitlab.project + - ogr.abstract + - ogr.services.gitlab.project + - gitlab.v4.objects.projects + - gitlab.exceptions + - gitlab.mixins + - gitlab.client + - requre.objects + - requre.cassette + - requests.sessions + - send + output: + __store_indicator: 2 + _content: + _links: + cluster_agents: https://gitlab.com/api/v4/projects/14233409/cluster_agents + events: https://gitlab.com/api/v4/projects/14233409/events + issues: https://gitlab.com/api/v4/projects/14233409/issues + labels: https://gitlab.com/api/v4/projects/14233409/labels + members: https://gitlab.com/api/v4/projects/14233409/members + merge_requests: https://gitlab.com/api/v4/projects/14233409/merge_requests + repo_branches: https://gitlab.com/api/v4/projects/14233409/repository/branches + self: https://gitlab.com/api/v4/projects/14233409 + allow_merge_on_skipped_pipeline: null + analytics_access_level: enabled + approvals_before_merge: 0 + archived: false + auto_cancel_pending_pipelines: enabled + auto_devops_deploy_strategy: continuous + auto_devops_enabled: false + autoclose_referenced_issues: true + avatar_url: null + build_timeout: 3600 + builds_access_level: enabled + can_create_merge_request_in: true + ci_allow_fork_pipelines_to_run_in_parent_project: true + ci_config_path: null + ci_default_git_depth: 50 + ci_forward_deployment_enabled: null + ci_job_token_scope_enabled: false + ci_opt_in_jwt: false + ci_separated_caches: true + compliance_frameworks: [] + container_registry_access_level: enabled + container_registry_enabled: true + container_registry_image_prefix: registry.gitlab.com/packit-service/ogr-tests + created_at: '2019-09-10T10:28:09.946Z' + creator_id: 433670 + default_branch: master + description: Testing repository for python-ogr package. | https://github.com/packit-service/ogr + emails_disabled: null + empty_repo: false + enforce_auth_checks_on_uploads: true + external_authorization_classification_label: '' + forking_access_level: enabled + forks_count: 7 + http_url_to_repo: https://gitlab.com/packit-service/ogr-tests.git + id: 14233409 + import_status: none + issues_access_level: enabled + issues_enabled: true + issues_template: null + jobs_enabled: true + keep_latest_artifact: true + last_activity_at: '2022-08-21T21:46:59.990Z' + lfs_enabled: true + marked_for_deletion_at: null + marked_for_deletion_on: null + merge_commit_template: null + merge_method: merge + merge_pipelines_enabled: false + merge_requests_access_level: enabled + merge_requests_enabled: true + merge_requests_template: null + merge_trains_enabled: false + mirror: false + name: ogr-tests + name_with_namespace: packit-service / ogr-tests + namespace: + avatar_url: /uploads/-/system/group/avatar/6032704/logo-square-small-borders.png + full_path: packit-service + id: 6032704 + kind: group + name: packit-service + parent_id: null + path: packit-service + web_url: https://gitlab.com/groups/packit-service + only_allow_merge_if_all_discussions_are_resolved: false + only_allow_merge_if_pipeline_succeeds: false + open_issues_count: 77 + operations_access_level: enabled + packages_enabled: true + pages_access_level: enabled + path: ogr-tests + path_with_namespace: packit-service/ogr-tests + permissions: + group_access: null + project_access: null + printing_merge_request_link_enabled: true + public_jobs: true + readme_url: https://gitlab.com/packit-service/ogr-tests/-/blob/master/README.md + remove_source_branch_after_merge: null + repository_access_level: enabled + request_access_enabled: false + requirements_access_level: enabled + requirements_enabled: true + resolve_outdated_diff_discussions: false + restrict_user_defined_variables: false + runner_token_expiration_interval: null + security_and_compliance_access_level: private + security_and_compliance_enabled: false + service_desk_enabled: true + shared_runners_enabled: true + shared_with_groups: [] + snippets_access_level: enabled + snippets_enabled: true + squash_commit_template: null + squash_option: default_off + ssh_url_to_repo: git@gitlab.com:packit-service/ogr-tests.git + star_count: 0 + suggestion_commit_message: null + tag_list: [] + topics: [] + visibility: public + web_url: https://gitlab.com/packit-service/ogr-tests + wiki_access_level: enabled + wiki_enabled: true + _next: null + elapsed: 0.588258 + encoding: utf-8 + headers: + CF-Cache-Status: DYNAMIC + CF-RAY: 74a978ad985ab389-PRG + Cache-Control: max-age=0, private, must-revalidate + Connection: keep-alive + Content-Encoding: gzip + Content-Security-Policy: default-src 'none' + Content-Type: application/json + Date: Wed, 14 Sep 2022 13:29:25 GMT + Etag: W/"306ffe790000015c0582f19496b31dfd" + GitLab-LB: fe-21-lb-gprd + GitLab-SV: localhost + NEL: '{"success_fraction":0.01,"report_to":"cf-nel","max_age":604800}' + RateLimit-Limit: '2000' + RateLimit-Observed: '1' + RateLimit-Remaining: '1999' + RateLimit-Reset: '1663162225' + RateLimit-ResetTime: Wed, 14 Sep 2022 13:30:25 GMT + Referrer-Policy: strict-origin-when-cross-origin + Report-To: '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=1O%2FUtO6D9Kzy9E9qgYT%2FUsx5OWbGnhSJJK0VbcA9RA3sFrPxn37j%2FuFRv%2Fp6JQl4A1lwHZkUsXcvq3aScNOGr6ZPdnYoJ8yb5uRIt3bW0BSBs5nHhDm1jv5gcMw%3D"}],"group":"cf-nel","max_age":604800}' + Server: cloudflare + Strict-Transport-Security: max-age=31536000 + Transfer-Encoding: chunked + Vary: Origin + X-Content-Type-Options: nosniff + X-Frame-Options: SAMEORIGIN + X-Request-Id: f3ebb0df393f8ae1c493435ca29a0c91 + X-Runtime: '0.214980' + raw: !!binary "" + reason: OK + status_code: 200 + https://gitlab.com/api/v4/user: + - metadata: + latency: 0.4277637004852295 + module_call_list: + - unittest.case + - requre.record_and_replace + - tests.integration.gitlab.test_generic_commands + - ogr.abstract + - ogr.services.gitlab.project + - ogr.abstract + - ogr.services.gitlab.project + - ogr.services.gitlab.service + - gitlab.client + - gitlab.exceptions + - gitlab.mixins + - gitlab.client + - requre.objects + - requre.cassette + - requests.sessions + - send + output: + __store_indicator: 2 + _content: + avatar_url: https://secure.gravatar.com/avatar/6b309d0b529f4fc4946923d7d049c598?s=80&d=identicon + bio: '' + bot: false + can_create_group: true + can_create_project: true + color_scheme_id: 1 + commit_email: j1.kyjovsky@gmail.com + confirmed_at: '2021-07-09T12:48:35.134Z' + created_at: '2021-07-09T12:48:35.203Z' + current_sign_in_at: '2022-09-14T13:27:12.228Z' + email: j1.kyjovsky@gmail.com + external: false + extra_shared_runners_minutes_limit: null + followers: 0 + following: 0 + id: 9288169 + identities: + - extern_uid: '70757578' + provider: github + saml_provider_id: null + is_followed: false + job_title: '' + last_activity_on: '2022-09-14' + last_sign_in_at: '2022-08-18T07:51:17.620Z' + linkedin: '' + local_time: 1:29 PM + location: null + name: nikromen + organization: null + private_profile: false + projects_limit: 100000 + pronouns: null + public_email: '' + shared_runners_minutes_limit: null + skype: '' + state: active + theme_id: 1 + twitter: '' + two_factor_enabled: true + username: nikromen + web_url: https://gitlab.com/nikromen + website_url: '' + work_information: null + _next: null + elapsed: 0.427114 + encoding: utf-8 + headers: + CF-Cache-Status: DYNAMIC + CF-RAY: 74a978ab0a92b389-PRG + Cache-Control: max-age=0, private, must-revalidate + Connection: keep-alive + Content-Encoding: gzip + Content-Security-Policy: default-src 'none' + Content-Type: application/json + Date: Wed, 14 Sep 2022 13:29:25 GMT + Etag: W/"63ea5884f6277bf2ee1db38f363865b8" + GitLab-LB: fe-12-lb-gprd + GitLab-SV: localhost + NEL: '{"success_fraction":0.01,"report_to":"cf-nel","max_age":604800}' + RateLimit-Limit: '2000' + RateLimit-Observed: '1' + RateLimit-Remaining: '1999' + RateLimit-Reset: '1663162225' + RateLimit-ResetTime: Wed, 14 Sep 2022 13:30:25 GMT + Referrer-Policy: strict-origin-when-cross-origin + Report-To: '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=75xHPmQW92aIY%2BEpMwYDYZSBUDMFalK7KCJTDbsWBtLyy9Lk1hVoPlcemm4V6X1GGeIRtj%2FUPmjBCfGSiYMZkoCG7HW7D%2BCh%2BYull2Y3kGBauVjzk6vvmTRzpv4%3D"}],"group":"cf-nel","max_age":604800}' + Server: cloudflare + Strict-Transport-Security: max-age=31536000 + Transfer-Encoding: chunked + Vary: Origin + X-Content-Type-Options: nosniff + X-Frame-Options: SAMEORIGIN + X-Request-Id: 486cd8e1c0feddf750c638e5a2be107c + X-Runtime: '0.098301' + raw: !!binary "" + reason: OK + status_code: 200 diff --git a/tests/integration/pagure/test_data/test_generic_commands/GenericCommands.test_write_access_to_repo.yaml b/tests/integration/pagure/test_data/test_generic_commands/GenericCommands.test_write_access_to_repo.yaml new file mode 100644 index 00000000..9eedd7df --- /dev/null +++ b/tests/integration/pagure/test_data/test_generic_commands/GenericCommands.test_write_access_to_repo.yaml @@ -0,0 +1,326 @@ +_requre: + DataTypes: 1 + key_strategy: StorageKeysInspectSimple + version_storage_file: 3 +requests.sessions: + send: + GET: + https://pagure.io/api/0/ogr-tests: + - metadata: + latency: 0.20897722244262695 + module_call_list: + - unittest.case + - requre.record_and_replace + - tests.integration.pagure.test_generic_commands + - ogr.abstract + - ogr.services.pagure.project + - ogr.abstract + - ogr.services.pagure.project + - ogr.abstract + - ogr.services.pagure.project + - ogr.abstract + - ogr.services.pagure.service + - ogr.abstract + - ogr.services.pagure.service + - ogr.abstract + - ogr.services.pagure.service + - requests.sessions + - requre.objects + - requre.cassette + - requests.sessions + - send + output: + __store_indicator: 2 + _content: + access_groups: + admin: [] + collaborator: [] + commit: [] + ticket: [] + access_users: + admin: + - jpopelka + - jscotka + - lbarczio + - mfocko + - nikromen + collaborator: [] + commit: [] + owner: + - lachmanfrantisek + ticket: [] + close_status: [] + custom_keys: [] + date_created: '1570568389' + date_modified: '1651242136' + description: Testing repository for python-ogr package. + full_url: https://pagure.io/ogr-tests + fullname: ogr-tests + id: 6826 + milestones: {} + name: ogr-tests + namespace: null + parent: null + priorities: {} + tags: [] + url_path: ogr-tests + user: + full_url: https://pagure.io/user/lachmanfrantisek + fullname: "Franti\u0161ek Lachman" + name: lachmanfrantisek + url_path: user/lachmanfrantisek + _next: null + elapsed: 0.208345 + encoding: utf-8 + headers: + Connection: Keep-Alive + Content-Length: '965' + Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-5bV9Xcxq53Ema0POCUY8mBf7e'; + style-src 'self' 'nonce-5bV9Xcxq53Ema0POCUY8mBf7e'; object-src 'none';base-uri + 'self';img-src 'self' https:;connect-src 'self' https://pagure.io:8088;frame-src + https://docs.pagure.org;frame-ancestors https://pagure.io; + Content-Type: application/json + Date: Wed, 14 Sep 2022 13:38:18 GMT + Keep-Alive: timeout=5, max=99 + Referrer-Policy: same-origin + Server: Apache/2.4.37 (Red Hat Enterprise Linux) OpenSSL/1.1.1k mod_wsgi/4.6.4 + Python/3.6 + Set-Cookie: pagure=eyJfcGVybWFuZW50Ijp0cnVlLCJjc3JmX3Rva2VuIjoiMzcxOTkwNDczMWJjNjNkZDgzZGRjMmRhZWI3YmQwZjlhZDU2NzQxMyJ9.FgNqyg.tRnRwzBRDH4ly9uv4AcO5Gd3RJM; + Expires=Sat, 15-Oct-2022 13:38:18 GMT; Secure; HttpOnly; Path=/ + Strict-Transport-Security: max-age=31536000; includeSubDomains; preload + X-Content-Type-Options: nosniff + X-Frame-Options: ALLOW-FROM https://pagure.io/ + X-Xss-Protection: 1; mode=block + raw: !!binary "" + reason: OK + status_code: 200 + - metadata: + latency: 0.3363535404205322 + module_call_list: + - unittest.case + - requre.record_and_replace + - tests.integration.pagure.test_generic_commands + - ogr.abstract + - ogr.services.pagure.project + - ogr.abstract + - ogr.services.pagure.project + - ogr.abstract + - ogr.services.pagure.project + - ogr.abstract + - ogr.services.pagure.service + - ogr.abstract + - ogr.services.pagure.service + - ogr.abstract + - ogr.services.pagure.service + - requests.sessions + - requre.objects + - requre.cassette + - requests.sessions + - send + output: + __store_indicator: 2 + _content: + access_groups: + admin: [] + collaborator: [] + commit: [] + ticket: [] + access_users: + admin: + - jpopelka + - jscotka + - lbarczio + - mfocko + - nikromen + collaborator: [] + commit: [] + owner: + - lachmanfrantisek + ticket: [] + close_status: [] + custom_keys: [] + date_created: '1570568389' + date_modified: '1651242136' + description: Testing repository for python-ogr package. + full_url: https://pagure.io/ogr-tests + fullname: ogr-tests + id: 6826 + milestones: {} + name: ogr-tests + namespace: null + parent: null + priorities: {} + tags: [] + url_path: ogr-tests + user: + full_url: https://pagure.io/user/lachmanfrantisek + fullname: "Franti\u0161ek Lachman" + name: lachmanfrantisek + url_path: user/lachmanfrantisek + _next: null + elapsed: 0.335742 + encoding: utf-8 + headers: + Connection: Keep-Alive + Content-Length: '965' + Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-m92xxapHybGIiWlLLbMcM991q'; + style-src 'self' 'nonce-m92xxapHybGIiWlLLbMcM991q'; object-src 'none';base-uri + 'self';img-src 'self' https:;connect-src 'self' https://pagure.io:8088;frame-src + https://docs.pagure.org;frame-ancestors https://pagure.io; + Content-Type: application/json + Date: Wed, 14 Sep 2022 13:38:18 GMT + Keep-Alive: timeout=5, max=98 + Referrer-Policy: same-origin + Server: Apache/2.4.37 (Red Hat Enterprise Linux) OpenSSL/1.1.1k mod_wsgi/4.6.4 + Python/3.6 + Set-Cookie: pagure=eyJfcGVybWFuZW50Ijp0cnVlLCJjc3JmX3Rva2VuIjoiMzcxOTkwNDczMWJjNjNkZDgzZGRjMmRhZWI3YmQwZjlhZDU2NzQxMyJ9.FgNqyg.tRnRwzBRDH4ly9uv4AcO5Gd3RJM; + Expires=Sat, 15-Oct-2022 13:38:18 GMT; Secure; HttpOnly; Path=/ + Strict-Transport-Security: max-age=31536000; includeSubDomains; preload + X-Content-Type-Options: nosniff + X-Frame-Options: ALLOW-FROM https://pagure.io/ + X-Xss-Protection: 1; mode=block + raw: !!binary "" + reason: OK + status_code: 200 + - metadata: + latency: 0.20552778244018555 + module_call_list: + - unittest.case + - requre.record_and_replace + - tests.integration.pagure.test_generic_commands + - ogr.abstract + - ogr.services.pagure.project + - ogr.abstract + - ogr.services.pagure.project + - ogr.abstract + - ogr.services.pagure.project + - ogr.abstract + - ogr.services.pagure.service + - ogr.abstract + - ogr.services.pagure.service + - ogr.abstract + - ogr.services.pagure.service + - requests.sessions + - requre.objects + - requre.cassette + - requests.sessions + - send + output: + __store_indicator: 2 + _content: + access_groups: + admin: [] + collaborator: [] + commit: [] + ticket: [] + access_users: + admin: + - jpopelka + - jscotka + - lbarczio + - mfocko + - nikromen + collaborator: [] + commit: [] + owner: + - lachmanfrantisek + ticket: [] + close_status: [] + custom_keys: [] + date_created: '1570568389' + date_modified: '1651242136' + description: Testing repository for python-ogr package. + full_url: https://pagure.io/ogr-tests + fullname: ogr-tests + id: 6826 + milestones: {} + name: ogr-tests + namespace: null + parent: null + priorities: {} + tags: [] + url_path: ogr-tests + user: + full_url: https://pagure.io/user/lachmanfrantisek + fullname: "Franti\u0161ek Lachman" + name: lachmanfrantisek + url_path: user/lachmanfrantisek + _next: null + elapsed: 0.204918 + encoding: utf-8 + headers: + Connection: Keep-Alive + Content-Length: '965' + Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-dLCavgVgZ0hmZ8ssQXCUp0SKr'; + style-src 'self' 'nonce-dLCavgVgZ0hmZ8ssQXCUp0SKr'; object-src 'none';base-uri + 'self';img-src 'self' https:;connect-src 'self' https://pagure.io:8088;frame-src + https://docs.pagure.org;frame-ancestors https://pagure.io; + Content-Type: application/json + Date: Wed, 14 Sep 2022 13:38:19 GMT + Keep-Alive: timeout=5, max=97 + Referrer-Policy: same-origin + Server: Apache/2.4.37 (Red Hat Enterprise Linux) OpenSSL/1.1.1k mod_wsgi/4.6.4 + Python/3.6 + Set-Cookie: pagure=eyJfcGVybWFuZW50Ijp0cnVlLCJjc3JmX3Rva2VuIjoiMzcxOTkwNDczMWJjNjNkZDgzZGRjMmRhZWI3YmQwZjlhZDU2NzQxMyJ9.FgNqyw.HA85AcfXffFuUfYgYH2-mCJin9E; + Expires=Sat, 15-Oct-2022 13:38:19 GMT; Secure; HttpOnly; Path=/ + Strict-Transport-Security: max-age=31536000; includeSubDomains; preload + X-Content-Type-Options: nosniff + X-Frame-Options: ALLOW-FROM https://pagure.io/ + X-Xss-Protection: 1; mode=block + raw: !!binary "" + reason: OK + status_code: 200 + POST: + https://pagure.io/api/0/-/whoami: + - metadata: + latency: 0.5923054218292236 + module_call_list: + - unittest.case + - requre.record_and_replace + - tests.integration.pagure.test_generic_commands + - tests.integration.pagure.base + - ogr.abstract + - ogr.services.pagure.service + - ogr.abstract + - ogr.services.pagure.user + - ogr.abstract + - ogr.services.pagure.service + - ogr.abstract + - ogr.services.pagure.service + - ogr.abstract + - ogr.services.pagure.service + - requests.sessions + - requre.objects + - requre.cassette + - requests.sessions + - send + output: + __store_indicator: 2 + _content: + username: nikromen + _next: null + elapsed: 0.591343 + encoding: utf-8 + headers: + Connection: Upgrade, Keep-Alive + Content-Length: '29' + Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-DCGp0w9wU5uOLfaj2aMoem4CZ'; + style-src 'self' 'nonce-DCGp0w9wU5uOLfaj2aMoem4CZ'; object-src 'none';base-uri + 'self';img-src 'self' https:;connect-src 'self' https://pagure.io:8088;frame-src + https://docs.pagure.org;frame-ancestors https://pagure.io; + Content-Type: application/json + Date: Wed, 14 Sep 2022 13:38:18 GMT + Keep-Alive: timeout=5, max=100 + Referrer-Policy: same-origin + Server: Apache/2.4.37 (Red Hat Enterprise Linux) OpenSSL/1.1.1k mod_wsgi/4.6.4 + Python/3.6 + Set-Cookie: pagure=eyJfcGVybWFuZW50Ijp0cnVlLCJjc3JmX3Rva2VuIjoiMzcxOTkwNDczMWJjNjNkZDgzZGRjMmRhZWI3YmQwZjlhZDU2NzQxMyJ9.FgNqyg.tRnRwzBRDH4ly9uv4AcO5Gd3RJM; + Expires=Sat, 15-Oct-2022 13:38:18 GMT; Secure; HttpOnly; Path=/ + Strict-Transport-Security: max-age=31536000; includeSubDomains; preload + Upgrade: h2,h2c + X-Content-Type-Options: nosniff + X-Frame-Options: ALLOW-FROM https://pagure.io/ + X-Xss-Protection: 1; mode=block + raw: !!binary "" + reason: OK + status_code: 200